@larksuiteoapi/node-sdk 1.54.0 → 1.55.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 +650 -5
- package/lib/index.js +650 -5
- package/package.json +1 -1
- package/types/index.d.ts +1421 -25
package/types/index.d.ts
CHANGED
|
@@ -1080,7 +1080,7 @@ declare abstract class Client$15 extends Client$16 {
|
|
|
1080
1080
|
httpInstance: HttpInstance;
|
|
1081
1081
|
abstract formatPayload(payload?: IPayload, options?: IRequestOptions$1): Promise<Required<IPayload>>;
|
|
1082
1082
|
/**
|
|
1083
|
-
*
|
|
1083
|
+
* 管理后台-企业勋章
|
|
1084
1084
|
*/
|
|
1085
1085
|
admin: {
|
|
1086
1086
|
/**
|
|
@@ -27662,7 +27662,7 @@ declare abstract class Client$T extends Client$U {
|
|
|
27662
27662
|
timezone?: string;
|
|
27663
27663
|
};
|
|
27664
27664
|
vchat?: {
|
|
27665
|
-
vc_type?: "vc" | "third_party" | "no_meeting" | "lark_live" | "unknown";
|
|
27665
|
+
vc_type?: "vc" | "third_party" | "no_meeting" | "lark_live" | "unknown" | "third_party_meeting";
|
|
27666
27666
|
icon_type?: "vc" | "live" | "default";
|
|
27667
27667
|
description?: string;
|
|
27668
27668
|
meeting_url?: string;
|
|
@@ -27680,6 +27680,16 @@ declare abstract class Client$T extends Client$U {
|
|
|
27680
27680
|
open_lobby?: boolean;
|
|
27681
27681
|
allow_attendees_start?: boolean;
|
|
27682
27682
|
};
|
|
27683
|
+
third_party_meeting_settings?: {
|
|
27684
|
+
meeting_type?: string;
|
|
27685
|
+
meeting_id?: string;
|
|
27686
|
+
meeting_no?: string;
|
|
27687
|
+
password?: string;
|
|
27688
|
+
meeting_descriptions?: Array<{
|
|
27689
|
+
lang?: string;
|
|
27690
|
+
description?: string;
|
|
27691
|
+
}>;
|
|
27692
|
+
};
|
|
27683
27693
|
};
|
|
27684
27694
|
visibility?: "default" | "public" | "private";
|
|
27685
27695
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event";
|
|
@@ -27743,7 +27753,7 @@ declare abstract class Client$T extends Client$U {
|
|
|
27743
27753
|
timezone?: string;
|
|
27744
27754
|
};
|
|
27745
27755
|
vchat?: {
|
|
27746
|
-
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | undefined;
|
|
27756
|
+
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | "third_party_meeting" | undefined;
|
|
27747
27757
|
icon_type?: "default" | "vc" | "live" | undefined;
|
|
27748
27758
|
description?: string | undefined;
|
|
27749
27759
|
meeting_url?: string | undefined;
|
|
@@ -27761,6 +27771,16 @@ declare abstract class Client$T extends Client$U {
|
|
|
27761
27771
|
open_lobby?: boolean | undefined;
|
|
27762
27772
|
allow_attendees_start?: boolean | undefined;
|
|
27763
27773
|
} | undefined;
|
|
27774
|
+
third_party_meeting_settings?: {
|
|
27775
|
+
meeting_type?: string | undefined;
|
|
27776
|
+
meeting_id?: string | undefined;
|
|
27777
|
+
meeting_no?: string | undefined;
|
|
27778
|
+
password?: string | undefined;
|
|
27779
|
+
meeting_descriptions?: {
|
|
27780
|
+
lang?: string | undefined;
|
|
27781
|
+
description?: string | undefined;
|
|
27782
|
+
}[] | undefined;
|
|
27783
|
+
} | undefined;
|
|
27764
27784
|
} | undefined;
|
|
27765
27785
|
visibility?: "default" | "private" | "public" | undefined;
|
|
27766
27786
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
|
|
@@ -27877,7 +27897,7 @@ declare abstract class Client$T extends Client$U {
|
|
|
27877
27897
|
timezone?: string;
|
|
27878
27898
|
};
|
|
27879
27899
|
vchat?: {
|
|
27880
|
-
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | undefined;
|
|
27900
|
+
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | "third_party_meeting" | undefined;
|
|
27881
27901
|
icon_type?: "default" | "vc" | "live" | undefined;
|
|
27882
27902
|
description?: string | undefined;
|
|
27883
27903
|
meeting_url?: string | undefined;
|
|
@@ -27895,6 +27915,16 @@ declare abstract class Client$T extends Client$U {
|
|
|
27895
27915
|
open_lobby?: boolean | undefined;
|
|
27896
27916
|
allow_attendees_start?: boolean | undefined;
|
|
27897
27917
|
} | undefined;
|
|
27918
|
+
third_party_meeting_settings?: {
|
|
27919
|
+
meeting_type?: string | undefined;
|
|
27920
|
+
meeting_id?: string | undefined;
|
|
27921
|
+
meeting_no?: string | undefined;
|
|
27922
|
+
password?: string | undefined;
|
|
27923
|
+
meeting_descriptions?: {
|
|
27924
|
+
lang?: string | undefined;
|
|
27925
|
+
description?: string | undefined;
|
|
27926
|
+
}[] | undefined;
|
|
27927
|
+
} | undefined;
|
|
27898
27928
|
} | undefined;
|
|
27899
27929
|
visibility?: "default" | "private" | "public" | undefined;
|
|
27900
27930
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
|
|
@@ -28003,7 +28033,7 @@ declare abstract class Client$T extends Client$U {
|
|
|
28003
28033
|
app_link?: string | undefined;
|
|
28004
28034
|
organizer_calendar_id?: string | undefined;
|
|
28005
28035
|
vchat?: {
|
|
28006
|
-
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | undefined;
|
|
28036
|
+
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | "third_party_meeting" | undefined;
|
|
28007
28037
|
icon_type?: "default" | "vc" | "live" | undefined;
|
|
28008
28038
|
description?: string | undefined;
|
|
28009
28039
|
meeting_url?: string | undefined;
|
|
@@ -28156,7 +28186,7 @@ declare abstract class Client$T extends Client$U {
|
|
|
28156
28186
|
timezone?: string;
|
|
28157
28187
|
};
|
|
28158
28188
|
vchat?: {
|
|
28159
|
-
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | undefined;
|
|
28189
|
+
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | "third_party_meeting" | undefined;
|
|
28160
28190
|
icon_type?: "default" | "vc" | "live" | undefined;
|
|
28161
28191
|
description?: string | undefined;
|
|
28162
28192
|
meeting_url?: string | undefined;
|
|
@@ -28229,7 +28259,7 @@ declare abstract class Client$T extends Client$U {
|
|
|
28229
28259
|
timezone?: string;
|
|
28230
28260
|
};
|
|
28231
28261
|
vchat?: {
|
|
28232
|
-
vc_type?: "vc" | "third_party" | "no_meeting" | "lark_live" | "unknown";
|
|
28262
|
+
vc_type?: "vc" | "third_party" | "no_meeting" | "lark_live" | "unknown" | "third_party_meeting";
|
|
28233
28263
|
icon_type?: "vc" | "live" | "default";
|
|
28234
28264
|
description?: string;
|
|
28235
28265
|
meeting_url?: string;
|
|
@@ -28247,6 +28277,16 @@ declare abstract class Client$T extends Client$U {
|
|
|
28247
28277
|
open_lobby?: boolean;
|
|
28248
28278
|
allow_attendees_start?: boolean;
|
|
28249
28279
|
};
|
|
28280
|
+
third_party_meeting_settings?: {
|
|
28281
|
+
meeting_type?: string;
|
|
28282
|
+
meeting_id?: string;
|
|
28283
|
+
meeting_no?: string;
|
|
28284
|
+
password?: string;
|
|
28285
|
+
meeting_descriptions?: Array<{
|
|
28286
|
+
lang?: string;
|
|
28287
|
+
description?: string;
|
|
28288
|
+
}>;
|
|
28289
|
+
};
|
|
28250
28290
|
};
|
|
28251
28291
|
visibility?: "default" | "public" | "private";
|
|
28252
28292
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event";
|
|
@@ -28311,7 +28351,7 @@ declare abstract class Client$T extends Client$U {
|
|
|
28311
28351
|
timezone?: string;
|
|
28312
28352
|
};
|
|
28313
28353
|
vchat?: {
|
|
28314
|
-
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | undefined;
|
|
28354
|
+
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | "third_party_meeting" | undefined;
|
|
28315
28355
|
icon_type?: "default" | "vc" | "live" | undefined;
|
|
28316
28356
|
description?: string | undefined;
|
|
28317
28357
|
meeting_url?: string | undefined;
|
|
@@ -28329,6 +28369,16 @@ declare abstract class Client$T extends Client$U {
|
|
|
28329
28369
|
open_lobby?: boolean | undefined;
|
|
28330
28370
|
allow_attendees_start?: boolean | undefined;
|
|
28331
28371
|
} | undefined;
|
|
28372
|
+
third_party_meeting_settings?: {
|
|
28373
|
+
meeting_type?: string | undefined;
|
|
28374
|
+
meeting_id?: string | undefined;
|
|
28375
|
+
meeting_no?: string | undefined;
|
|
28376
|
+
password?: string | undefined;
|
|
28377
|
+
meeting_descriptions?: {
|
|
28378
|
+
lang?: string | undefined;
|
|
28379
|
+
description?: string | undefined;
|
|
28380
|
+
}[] | undefined;
|
|
28381
|
+
} | undefined;
|
|
28332
28382
|
} | undefined;
|
|
28333
28383
|
visibility?: "default" | "private" | "public" | undefined;
|
|
28334
28384
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
|
|
@@ -29697,7 +29747,7 @@ declare abstract class Client$T extends Client$U {
|
|
|
29697
29747
|
timezone?: string;
|
|
29698
29748
|
};
|
|
29699
29749
|
vchat?: {
|
|
29700
|
-
vc_type?: "vc" | "third_party" | "no_meeting" | "lark_live" | "unknown";
|
|
29750
|
+
vc_type?: "vc" | "third_party" | "no_meeting" | "lark_live" | "unknown" | "third_party_meeting";
|
|
29701
29751
|
icon_type?: "vc" | "live" | "default";
|
|
29702
29752
|
description?: string;
|
|
29703
29753
|
meeting_url?: string;
|
|
@@ -29715,6 +29765,16 @@ declare abstract class Client$T extends Client$U {
|
|
|
29715
29765
|
open_lobby?: boolean;
|
|
29716
29766
|
allow_attendees_start?: boolean;
|
|
29717
29767
|
};
|
|
29768
|
+
third_party_meeting_settings?: {
|
|
29769
|
+
meeting_type?: string;
|
|
29770
|
+
meeting_id?: string;
|
|
29771
|
+
meeting_no?: string;
|
|
29772
|
+
password?: string;
|
|
29773
|
+
meeting_descriptions?: Array<{
|
|
29774
|
+
lang?: string;
|
|
29775
|
+
description?: string;
|
|
29776
|
+
}>;
|
|
29777
|
+
};
|
|
29718
29778
|
};
|
|
29719
29779
|
visibility?: "default" | "public" | "private";
|
|
29720
29780
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event";
|
|
@@ -29778,7 +29838,7 @@ declare abstract class Client$T extends Client$U {
|
|
|
29778
29838
|
timezone?: string;
|
|
29779
29839
|
};
|
|
29780
29840
|
vchat?: {
|
|
29781
|
-
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | undefined;
|
|
29841
|
+
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | "third_party_meeting" | undefined;
|
|
29782
29842
|
icon_type?: "default" | "vc" | "live" | undefined;
|
|
29783
29843
|
description?: string | undefined;
|
|
29784
29844
|
meeting_url?: string | undefined;
|
|
@@ -29796,6 +29856,16 @@ declare abstract class Client$T extends Client$U {
|
|
|
29796
29856
|
open_lobby?: boolean | undefined;
|
|
29797
29857
|
allow_attendees_start?: boolean | undefined;
|
|
29798
29858
|
} | undefined;
|
|
29859
|
+
third_party_meeting_settings?: {
|
|
29860
|
+
meeting_type?: string | undefined;
|
|
29861
|
+
meeting_id?: string | undefined;
|
|
29862
|
+
meeting_no?: string | undefined;
|
|
29863
|
+
password?: string | undefined;
|
|
29864
|
+
meeting_descriptions?: {
|
|
29865
|
+
lang?: string | undefined;
|
|
29866
|
+
description?: string | undefined;
|
|
29867
|
+
}[] | undefined;
|
|
29868
|
+
} | undefined;
|
|
29799
29869
|
} | undefined;
|
|
29800
29870
|
visibility?: "default" | "private" | "public" | undefined;
|
|
29801
29871
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
|
|
@@ -29912,7 +29982,7 @@ declare abstract class Client$T extends Client$U {
|
|
|
29912
29982
|
timezone?: string;
|
|
29913
29983
|
};
|
|
29914
29984
|
vchat?: {
|
|
29915
|
-
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | undefined;
|
|
29985
|
+
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | "third_party_meeting" | undefined;
|
|
29916
29986
|
icon_type?: "default" | "vc" | "live" | undefined;
|
|
29917
29987
|
description?: string | undefined;
|
|
29918
29988
|
meeting_url?: string | undefined;
|
|
@@ -29930,6 +30000,16 @@ declare abstract class Client$T extends Client$U {
|
|
|
29930
30000
|
open_lobby?: boolean | undefined;
|
|
29931
30001
|
allow_attendees_start?: boolean | undefined;
|
|
29932
30002
|
} | undefined;
|
|
30003
|
+
third_party_meeting_settings?: {
|
|
30004
|
+
meeting_type?: string | undefined;
|
|
30005
|
+
meeting_id?: string | undefined;
|
|
30006
|
+
meeting_no?: string | undefined;
|
|
30007
|
+
password?: string | undefined;
|
|
30008
|
+
meeting_descriptions?: {
|
|
30009
|
+
lang?: string | undefined;
|
|
30010
|
+
description?: string | undefined;
|
|
30011
|
+
}[] | undefined;
|
|
30012
|
+
} | undefined;
|
|
29933
30013
|
} | undefined;
|
|
29934
30014
|
visibility?: "default" | "private" | "public" | undefined;
|
|
29935
30015
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
|
|
@@ -30038,7 +30118,7 @@ declare abstract class Client$T extends Client$U {
|
|
|
30038
30118
|
app_link?: string | undefined;
|
|
30039
30119
|
organizer_calendar_id?: string | undefined;
|
|
30040
30120
|
vchat?: {
|
|
30041
|
-
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | undefined;
|
|
30121
|
+
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | "third_party_meeting" | undefined;
|
|
30042
30122
|
icon_type?: "default" | "vc" | "live" | undefined;
|
|
30043
30123
|
description?: string | undefined;
|
|
30044
30124
|
meeting_url?: string | undefined;
|
|
@@ -30191,7 +30271,7 @@ declare abstract class Client$T extends Client$U {
|
|
|
30191
30271
|
timezone?: string;
|
|
30192
30272
|
};
|
|
30193
30273
|
vchat?: {
|
|
30194
|
-
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | undefined;
|
|
30274
|
+
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | "third_party_meeting" | undefined;
|
|
30195
30275
|
icon_type?: "default" | "vc" | "live" | undefined;
|
|
30196
30276
|
description?: string | undefined;
|
|
30197
30277
|
meeting_url?: string | undefined;
|
|
@@ -30264,7 +30344,7 @@ declare abstract class Client$T extends Client$U {
|
|
|
30264
30344
|
timezone?: string;
|
|
30265
30345
|
};
|
|
30266
30346
|
vchat?: {
|
|
30267
|
-
vc_type?: "vc" | "third_party" | "no_meeting" | "lark_live" | "unknown";
|
|
30347
|
+
vc_type?: "vc" | "third_party" | "no_meeting" | "lark_live" | "unknown" | "third_party_meeting";
|
|
30268
30348
|
icon_type?: "vc" | "live" | "default";
|
|
30269
30349
|
description?: string;
|
|
30270
30350
|
meeting_url?: string;
|
|
@@ -30282,6 +30362,16 @@ declare abstract class Client$T extends Client$U {
|
|
|
30282
30362
|
open_lobby?: boolean;
|
|
30283
30363
|
allow_attendees_start?: boolean;
|
|
30284
30364
|
};
|
|
30365
|
+
third_party_meeting_settings?: {
|
|
30366
|
+
meeting_type?: string;
|
|
30367
|
+
meeting_id?: string;
|
|
30368
|
+
meeting_no?: string;
|
|
30369
|
+
password?: string;
|
|
30370
|
+
meeting_descriptions?: Array<{
|
|
30371
|
+
lang?: string;
|
|
30372
|
+
description?: string;
|
|
30373
|
+
}>;
|
|
30374
|
+
};
|
|
30285
30375
|
};
|
|
30286
30376
|
visibility?: "default" | "public" | "private";
|
|
30287
30377
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event";
|
|
@@ -30346,7 +30436,7 @@ declare abstract class Client$T extends Client$U {
|
|
|
30346
30436
|
timezone?: string;
|
|
30347
30437
|
};
|
|
30348
30438
|
vchat?: {
|
|
30349
|
-
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | undefined;
|
|
30439
|
+
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | "third_party_meeting" | undefined;
|
|
30350
30440
|
icon_type?: "default" | "vc" | "live" | undefined;
|
|
30351
30441
|
description?: string | undefined;
|
|
30352
30442
|
meeting_url?: string | undefined;
|
|
@@ -30364,6 +30454,16 @@ declare abstract class Client$T extends Client$U {
|
|
|
30364
30454
|
open_lobby?: boolean | undefined;
|
|
30365
30455
|
allow_attendees_start?: boolean | undefined;
|
|
30366
30456
|
} | undefined;
|
|
30457
|
+
third_party_meeting_settings?: {
|
|
30458
|
+
meeting_type?: string | undefined;
|
|
30459
|
+
meeting_id?: string | undefined;
|
|
30460
|
+
meeting_no?: string | undefined;
|
|
30461
|
+
password?: string | undefined;
|
|
30462
|
+
meeting_descriptions?: {
|
|
30463
|
+
lang?: string | undefined;
|
|
30464
|
+
description?: string | undefined;
|
|
30465
|
+
}[] | undefined;
|
|
30466
|
+
} | undefined;
|
|
30367
30467
|
} | undefined;
|
|
30368
30468
|
visibility?: "default" | "private" | "public" | undefined;
|
|
30369
30469
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
|
|
@@ -31412,6 +31512,375 @@ declare abstract class Client$Q extends Client$R {
|
|
|
31412
31512
|
} | undefined;
|
|
31413
31513
|
}>;
|
|
31414
31514
|
};
|
|
31515
|
+
/**
|
|
31516
|
+
* lump_sum_payment
|
|
31517
|
+
*/
|
|
31518
|
+
lumpSumPayment: {
|
|
31519
|
+
/**
|
|
31520
|
+
* {@link https://open.feishu.cn/api-explorer?project=compensation&resource=lump_sum_payment&apiName=batch_create&version=v1 click to debug }
|
|
31521
|
+
*
|
|
31522
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=batch_create&project=compensation&resource=lump_sum_payment&version=v1 document }
|
|
31523
|
+
*/
|
|
31524
|
+
batchCreate: (payload?: {
|
|
31525
|
+
data?: {
|
|
31526
|
+
records?: Array<{
|
|
31527
|
+
unique_id: string;
|
|
31528
|
+
user_id: string;
|
|
31529
|
+
total_amount: string;
|
|
31530
|
+
binding_period: number;
|
|
31531
|
+
currency_id: string;
|
|
31532
|
+
issuance_frequency: number;
|
|
31533
|
+
item_id: string;
|
|
31534
|
+
reference_period_start_date?: string;
|
|
31535
|
+
reference_period_end_date?: string;
|
|
31536
|
+
details: Array<{
|
|
31537
|
+
issuance_amount: string;
|
|
31538
|
+
issuance_status: "to_be_issued" | "not_issued";
|
|
31539
|
+
issuance_way: "with_salary" | "with_cash" | "with_year_end_bonus";
|
|
31540
|
+
issuance_time: string;
|
|
31541
|
+
belong_time: string;
|
|
31542
|
+
issuance_country_region_id?: string;
|
|
31543
|
+
issuance_pay_group_id?: string;
|
|
31544
|
+
}>;
|
|
31545
|
+
remark?: string;
|
|
31546
|
+
}>;
|
|
31547
|
+
};
|
|
31548
|
+
params: {
|
|
31549
|
+
user_id_type: "user_id" | "union_id" | "open_id" | "people_corehr_id";
|
|
31550
|
+
};
|
|
31551
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
31552
|
+
code?: number | undefined;
|
|
31553
|
+
msg?: string | undefined;
|
|
31554
|
+
data?: {
|
|
31555
|
+
operate_results?: {
|
|
31556
|
+
id?: string | undefined;
|
|
31557
|
+
unique_id?: string | undefined;
|
|
31558
|
+
code?: number | undefined;
|
|
31559
|
+
message?: string | undefined;
|
|
31560
|
+
}[] | undefined;
|
|
31561
|
+
} | undefined;
|
|
31562
|
+
}>;
|
|
31563
|
+
/**
|
|
31564
|
+
* {@link https://open.feishu.cn/api-explorer?project=compensation&resource=lump_sum_payment&apiName=batch_remove&version=v1 click to debug }
|
|
31565
|
+
*
|
|
31566
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=batch_remove&project=compensation&resource=lump_sum_payment&version=v1 document }
|
|
31567
|
+
*/
|
|
31568
|
+
batchRemove: (payload?: {
|
|
31569
|
+
data?: {
|
|
31570
|
+
record_ids?: Array<string>;
|
|
31571
|
+
reason?: string;
|
|
31572
|
+
};
|
|
31573
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
31574
|
+
code?: number | undefined;
|
|
31575
|
+
msg?: string | undefined;
|
|
31576
|
+
data?: {
|
|
31577
|
+
operate_results?: {
|
|
31578
|
+
id?: string | undefined;
|
|
31579
|
+
unique_id?: string | undefined;
|
|
31580
|
+
code?: number | undefined;
|
|
31581
|
+
message?: string | undefined;
|
|
31582
|
+
}[] | undefined;
|
|
31583
|
+
} | undefined;
|
|
31584
|
+
}>;
|
|
31585
|
+
/**
|
|
31586
|
+
* {@link https://open.feishu.cn/api-explorer?project=compensation&resource=lump_sum_payment&apiName=batch_update&version=v1 click to debug }
|
|
31587
|
+
*
|
|
31588
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=batch_update&project=compensation&resource=lump_sum_payment&version=v1 document }
|
|
31589
|
+
*/
|
|
31590
|
+
batchUpdate: (payload?: {
|
|
31591
|
+
data?: {
|
|
31592
|
+
records?: Array<{
|
|
31593
|
+
id?: string;
|
|
31594
|
+
total_amount: string;
|
|
31595
|
+
binding_period?: number;
|
|
31596
|
+
currency_id: string;
|
|
31597
|
+
issuance_frequency: number;
|
|
31598
|
+
remark?: string;
|
|
31599
|
+
reference_period_start_date?: string;
|
|
31600
|
+
reference_period_end_date?: string;
|
|
31601
|
+
details: Array<{
|
|
31602
|
+
id?: string;
|
|
31603
|
+
issuance_amount?: string;
|
|
31604
|
+
issuance_status?: "to_be_issued" | "not_issued";
|
|
31605
|
+
issuance_way?: "with_salary" | "with_cash" | "with_year_end_bonus";
|
|
31606
|
+
issuance_time?: string;
|
|
31607
|
+
belong_time?: string;
|
|
31608
|
+
issuance_country_region_id?: string;
|
|
31609
|
+
issuance_pay_group_id?: string;
|
|
31610
|
+
}>;
|
|
31611
|
+
}>;
|
|
31612
|
+
};
|
|
31613
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
31614
|
+
code?: number | undefined;
|
|
31615
|
+
msg?: string | undefined;
|
|
31616
|
+
data?: {
|
|
31617
|
+
operate_results?: {
|
|
31618
|
+
id?: string | undefined;
|
|
31619
|
+
unique_id?: string | undefined;
|
|
31620
|
+
code?: number | undefined;
|
|
31621
|
+
message?: string | undefined;
|
|
31622
|
+
}[] | undefined;
|
|
31623
|
+
} | undefined;
|
|
31624
|
+
}>;
|
|
31625
|
+
queryWithIterator: (payload?: {
|
|
31626
|
+
data?: {
|
|
31627
|
+
ids?: Array<string>;
|
|
31628
|
+
unique_ids?: Array<string>;
|
|
31629
|
+
user_ids?: Array<string>;
|
|
31630
|
+
item_ids?: Array<string>;
|
|
31631
|
+
create_time_gte?: string;
|
|
31632
|
+
create_time_lte?: string;
|
|
31633
|
+
modify_time_gte?: string;
|
|
31634
|
+
modify_time_lte?: string;
|
|
31635
|
+
company_ids?: Array<string>;
|
|
31636
|
+
service_company_ids?: Array<string>;
|
|
31637
|
+
department_ids?: Array<string>;
|
|
31638
|
+
job_family_ids?: Array<string>;
|
|
31639
|
+
job_level_ids?: Array<string>;
|
|
31640
|
+
work_location_ids?: Array<string>;
|
|
31641
|
+
employee_type_ids?: Array<string>;
|
|
31642
|
+
onboard_date_gte?: string;
|
|
31643
|
+
onboard_date_lte?: string;
|
|
31644
|
+
offboard_date_gte?: string;
|
|
31645
|
+
offboard_date_lte?: string;
|
|
31646
|
+
};
|
|
31647
|
+
params: {
|
|
31648
|
+
page_size: number;
|
|
31649
|
+
page_token?: string;
|
|
31650
|
+
user_id_type: "user_id" | "union_id" | "open_id" | "people_corehr_id";
|
|
31651
|
+
};
|
|
31652
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
31653
|
+
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
31654
|
+
records?: {
|
|
31655
|
+
id?: string | undefined;
|
|
31656
|
+
unique_id?: string | undefined;
|
|
31657
|
+
user_id?: string | undefined;
|
|
31658
|
+
total_amount?: string | undefined;
|
|
31659
|
+
binding_period?: number | undefined;
|
|
31660
|
+
currency_id?: string | undefined;
|
|
31661
|
+
issuance_frequency?: number | undefined;
|
|
31662
|
+
item_id?: string | undefined;
|
|
31663
|
+
remark?: string | undefined;
|
|
31664
|
+
issuance_detail_text?: {
|
|
31665
|
+
zh_cn?: string | undefined;
|
|
31666
|
+
en_us?: string | undefined;
|
|
31667
|
+
} | undefined;
|
|
31668
|
+
apply_source?: number | undefined;
|
|
31669
|
+
return_amount_before_tax?: string | undefined;
|
|
31670
|
+
return_amount_after_tax?: string | undefined;
|
|
31671
|
+
binding_period_offboarding_type?: "default" | "yes" | "no" | undefined;
|
|
31672
|
+
create_time?: string | undefined;
|
|
31673
|
+
modify_time?: string | undefined;
|
|
31674
|
+
reference_period_start_date?: string | undefined;
|
|
31675
|
+
reference_period_end_date?: string | undefined;
|
|
31676
|
+
details?: {
|
|
31677
|
+
id?: string | undefined;
|
|
31678
|
+
record_id?: string | undefined;
|
|
31679
|
+
user_id?: string | undefined;
|
|
31680
|
+
issuance_amount?: string | undefined;
|
|
31681
|
+
issuance_status?: "to_be_issued" | "not_issued" | undefined;
|
|
31682
|
+
issuance_way?: "with_salary" | "with_cash" | "with_year_end_bonus" | undefined;
|
|
31683
|
+
issuance_time?: string | undefined;
|
|
31684
|
+
currency_id?: string | undefined;
|
|
31685
|
+
belong_time?: string | undefined;
|
|
31686
|
+
create_time?: string | undefined;
|
|
31687
|
+
modify_time?: string | undefined;
|
|
31688
|
+
issuance_country_region_id?: string | undefined;
|
|
31689
|
+
issuance_pay_group_id?: string | undefined;
|
|
31690
|
+
}[] | undefined;
|
|
31691
|
+
}[] | undefined;
|
|
31692
|
+
} | null, void, unknown>;
|
|
31693
|
+
}>;
|
|
31694
|
+
/**
|
|
31695
|
+
* {@link https://open.feishu.cn/api-explorer?project=compensation&resource=lump_sum_payment&apiName=query&version=v1 click to debug }
|
|
31696
|
+
*
|
|
31697
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=query&project=compensation&resource=lump_sum_payment&version=v1 document }
|
|
31698
|
+
*/
|
|
31699
|
+
query: (payload?: {
|
|
31700
|
+
data?: {
|
|
31701
|
+
ids?: Array<string>;
|
|
31702
|
+
unique_ids?: Array<string>;
|
|
31703
|
+
user_ids?: Array<string>;
|
|
31704
|
+
item_ids?: Array<string>;
|
|
31705
|
+
create_time_gte?: string;
|
|
31706
|
+
create_time_lte?: string;
|
|
31707
|
+
modify_time_gte?: string;
|
|
31708
|
+
modify_time_lte?: string;
|
|
31709
|
+
company_ids?: Array<string>;
|
|
31710
|
+
service_company_ids?: Array<string>;
|
|
31711
|
+
department_ids?: Array<string>;
|
|
31712
|
+
job_family_ids?: Array<string>;
|
|
31713
|
+
job_level_ids?: Array<string>;
|
|
31714
|
+
work_location_ids?: Array<string>;
|
|
31715
|
+
employee_type_ids?: Array<string>;
|
|
31716
|
+
onboard_date_gte?: string;
|
|
31717
|
+
onboard_date_lte?: string;
|
|
31718
|
+
offboard_date_gte?: string;
|
|
31719
|
+
offboard_date_lte?: string;
|
|
31720
|
+
};
|
|
31721
|
+
params: {
|
|
31722
|
+
page_size: number;
|
|
31723
|
+
page_token?: string;
|
|
31724
|
+
user_id_type: "user_id" | "union_id" | "open_id" | "people_corehr_id";
|
|
31725
|
+
};
|
|
31726
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
31727
|
+
code?: number | undefined;
|
|
31728
|
+
msg?: string | undefined;
|
|
31729
|
+
data?: {
|
|
31730
|
+
page_token?: string | undefined;
|
|
31731
|
+
has_more?: boolean | undefined;
|
|
31732
|
+
records?: {
|
|
31733
|
+
id?: string | undefined;
|
|
31734
|
+
unique_id?: string | undefined;
|
|
31735
|
+
user_id?: string | undefined;
|
|
31736
|
+
total_amount?: string | undefined;
|
|
31737
|
+
binding_period?: number | undefined;
|
|
31738
|
+
currency_id?: string | undefined;
|
|
31739
|
+
issuance_frequency?: number | undefined;
|
|
31740
|
+
item_id?: string | undefined;
|
|
31741
|
+
remark?: string | undefined;
|
|
31742
|
+
issuance_detail_text?: {
|
|
31743
|
+
zh_cn?: string | undefined;
|
|
31744
|
+
en_us?: string | undefined;
|
|
31745
|
+
} | undefined;
|
|
31746
|
+
apply_source?: number | undefined;
|
|
31747
|
+
return_amount_before_tax?: string | undefined;
|
|
31748
|
+
return_amount_after_tax?: string | undefined;
|
|
31749
|
+
binding_period_offboarding_type?: "default" | "yes" | "no" | undefined;
|
|
31750
|
+
create_time?: string | undefined;
|
|
31751
|
+
modify_time?: string | undefined;
|
|
31752
|
+
reference_period_start_date?: string | undefined;
|
|
31753
|
+
reference_period_end_date?: string | undefined;
|
|
31754
|
+
details?: {
|
|
31755
|
+
id?: string | undefined;
|
|
31756
|
+
record_id?: string | undefined;
|
|
31757
|
+
user_id?: string | undefined;
|
|
31758
|
+
issuance_amount?: string | undefined;
|
|
31759
|
+
issuance_status?: "to_be_issued" | "not_issued" | undefined;
|
|
31760
|
+
issuance_way?: "with_salary" | "with_cash" | "with_year_end_bonus" | undefined;
|
|
31761
|
+
issuance_time?: string | undefined;
|
|
31762
|
+
currency_id?: string | undefined;
|
|
31763
|
+
belong_time?: string | undefined;
|
|
31764
|
+
create_time?: string | undefined;
|
|
31765
|
+
modify_time?: string | undefined;
|
|
31766
|
+
issuance_country_region_id?: string | undefined;
|
|
31767
|
+
issuance_pay_group_id?: string | undefined;
|
|
31768
|
+
}[] | undefined;
|
|
31769
|
+
}[] | undefined;
|
|
31770
|
+
} | undefined;
|
|
31771
|
+
}>;
|
|
31772
|
+
queryDetailWithIterator: (payload?: {
|
|
31773
|
+
data?: {
|
|
31774
|
+
ids?: Array<string>;
|
|
31775
|
+
record_ids?: Array<string>;
|
|
31776
|
+
record_unique_ids?: Array<string>;
|
|
31777
|
+
issuance_ways?: Array<"with_salary" | "with_cash" | "with_physical_distribution" | "with_year_end_bonus">;
|
|
31778
|
+
issuance_statuses?: Array<"to_be_issued" | "not_issued">;
|
|
31779
|
+
user_ids?: Array<string>;
|
|
31780
|
+
item_ids?: Array<string>;
|
|
31781
|
+
issuance_date_gte?: string;
|
|
31782
|
+
issuance_date_lte?: string;
|
|
31783
|
+
create_time_gte?: string;
|
|
31784
|
+
create_time_lte?: string;
|
|
31785
|
+
modify_time_gte?: string;
|
|
31786
|
+
modify_time_lte?: string;
|
|
31787
|
+
company_ids?: Array<string>;
|
|
31788
|
+
service_company_ids?: Array<string>;
|
|
31789
|
+
department_ids?: Array<string>;
|
|
31790
|
+
job_family_ids?: Array<string>;
|
|
31791
|
+
job_level_ids?: Array<string>;
|
|
31792
|
+
work_location_ids?: Array<string>;
|
|
31793
|
+
employee_type_ids?: Array<string>;
|
|
31794
|
+
onboard_date_gte?: string;
|
|
31795
|
+
onboard_date_lte?: string;
|
|
31796
|
+
offboard_date_gte?: string;
|
|
31797
|
+
offboard_date_lte?: string;
|
|
31798
|
+
};
|
|
31799
|
+
params: {
|
|
31800
|
+
page_size: number;
|
|
31801
|
+
page_token?: string;
|
|
31802
|
+
user_id_type: "user_id" | "union_id" | "open_id" | "people_corehr_id";
|
|
31803
|
+
};
|
|
31804
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
31805
|
+
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
31806
|
+
records?: {
|
|
31807
|
+
id?: string | undefined;
|
|
31808
|
+
record_id?: string | undefined;
|
|
31809
|
+
user_id?: string | undefined;
|
|
31810
|
+
issuance_amount?: string | undefined;
|
|
31811
|
+
issuance_status?: "to_be_issued" | "not_issued" | undefined;
|
|
31812
|
+
issuance_way?: "with_salary" | "with_cash" | "with_year_end_bonus" | undefined;
|
|
31813
|
+
issuance_time?: string | undefined;
|
|
31814
|
+
currency_id?: string | undefined;
|
|
31815
|
+
belong_time?: string | undefined;
|
|
31816
|
+
create_time?: string | undefined;
|
|
31817
|
+
modify_time?: string | undefined;
|
|
31818
|
+
issuance_country_region_id?: string | undefined;
|
|
31819
|
+
issuance_pay_group_id?: string | undefined;
|
|
31820
|
+
}[] | undefined;
|
|
31821
|
+
} | null, void, unknown>;
|
|
31822
|
+
}>;
|
|
31823
|
+
/**
|
|
31824
|
+
* {@link https://open.feishu.cn/api-explorer?project=compensation&resource=lump_sum_payment&apiName=query_detail&version=v1 click to debug }
|
|
31825
|
+
*
|
|
31826
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=query_detail&project=compensation&resource=lump_sum_payment&version=v1 document }
|
|
31827
|
+
*/
|
|
31828
|
+
queryDetail: (payload?: {
|
|
31829
|
+
data?: {
|
|
31830
|
+
ids?: Array<string>;
|
|
31831
|
+
record_ids?: Array<string>;
|
|
31832
|
+
record_unique_ids?: Array<string>;
|
|
31833
|
+
issuance_ways?: Array<"with_salary" | "with_cash" | "with_physical_distribution" | "with_year_end_bonus">;
|
|
31834
|
+
issuance_statuses?: Array<"to_be_issued" | "not_issued">;
|
|
31835
|
+
user_ids?: Array<string>;
|
|
31836
|
+
item_ids?: Array<string>;
|
|
31837
|
+
issuance_date_gte?: string;
|
|
31838
|
+
issuance_date_lte?: string;
|
|
31839
|
+
create_time_gte?: string;
|
|
31840
|
+
create_time_lte?: string;
|
|
31841
|
+
modify_time_gte?: string;
|
|
31842
|
+
modify_time_lte?: string;
|
|
31843
|
+
company_ids?: Array<string>;
|
|
31844
|
+
service_company_ids?: Array<string>;
|
|
31845
|
+
department_ids?: Array<string>;
|
|
31846
|
+
job_family_ids?: Array<string>;
|
|
31847
|
+
job_level_ids?: Array<string>;
|
|
31848
|
+
work_location_ids?: Array<string>;
|
|
31849
|
+
employee_type_ids?: Array<string>;
|
|
31850
|
+
onboard_date_gte?: string;
|
|
31851
|
+
onboard_date_lte?: string;
|
|
31852
|
+
offboard_date_gte?: string;
|
|
31853
|
+
offboard_date_lte?: string;
|
|
31854
|
+
};
|
|
31855
|
+
params: {
|
|
31856
|
+
page_size: number;
|
|
31857
|
+
page_token?: string;
|
|
31858
|
+
user_id_type: "user_id" | "union_id" | "open_id" | "people_corehr_id";
|
|
31859
|
+
};
|
|
31860
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
31861
|
+
code?: number | undefined;
|
|
31862
|
+
msg?: string | undefined;
|
|
31863
|
+
data?: {
|
|
31864
|
+
page_token?: string | undefined;
|
|
31865
|
+
has_more?: boolean | undefined;
|
|
31866
|
+
records?: {
|
|
31867
|
+
id?: string | undefined;
|
|
31868
|
+
record_id?: string | undefined;
|
|
31869
|
+
user_id?: string | undefined;
|
|
31870
|
+
issuance_amount?: string | undefined;
|
|
31871
|
+
issuance_status?: "to_be_issued" | "not_issued" | undefined;
|
|
31872
|
+
issuance_way?: "with_salary" | "with_cash" | "with_year_end_bonus" | undefined;
|
|
31873
|
+
issuance_time?: string | undefined;
|
|
31874
|
+
currency_id?: string | undefined;
|
|
31875
|
+
belong_time?: string | undefined;
|
|
31876
|
+
create_time?: string | undefined;
|
|
31877
|
+
modify_time?: string | undefined;
|
|
31878
|
+
issuance_country_region_id?: string | undefined;
|
|
31879
|
+
issuance_pay_group_id?: string | undefined;
|
|
31880
|
+
}[] | undefined;
|
|
31881
|
+
} | undefined;
|
|
31882
|
+
}>;
|
|
31883
|
+
};
|
|
31415
31884
|
/**
|
|
31416
31885
|
* plan
|
|
31417
31886
|
*/
|
|
@@ -60539,6 +61008,10 @@ declare abstract class Client$M extends Client$N {
|
|
|
60539
61008
|
field?: string | undefined;
|
|
60540
61009
|
before?: string | undefined;
|
|
60541
61010
|
after?: string | undefined;
|
|
61011
|
+
ext?: {
|
|
61012
|
+
id?: string | undefined;
|
|
61013
|
+
usage?: string | undefined;
|
|
61014
|
+
} | undefined;
|
|
60542
61015
|
}[] | undefined;
|
|
60543
61016
|
operator?: string | undefined;
|
|
60544
61017
|
operation_type?: number | undefined;
|
|
@@ -60577,6 +61050,10 @@ declare abstract class Client$M extends Client$N {
|
|
|
60577
61050
|
field?: string | undefined;
|
|
60578
61051
|
before?: string | undefined;
|
|
60579
61052
|
after?: string | undefined;
|
|
61053
|
+
ext?: {
|
|
61054
|
+
id?: string | undefined;
|
|
61055
|
+
usage?: string | undefined;
|
|
61056
|
+
} | undefined;
|
|
60580
61057
|
}[] | undefined;
|
|
60581
61058
|
operator?: string | undefined;
|
|
60582
61059
|
operation_type?: number | undefined;
|
|
@@ -62127,6 +62604,13 @@ declare abstract class Client$M extends Client$N {
|
|
|
62127
62604
|
}[] | undefined;
|
|
62128
62605
|
} | undefined;
|
|
62129
62606
|
archive_cpst_plan_id?: string | undefined;
|
|
62607
|
+
individuals_with_headcount_or_not?: {
|
|
62608
|
+
enum_name: string;
|
|
62609
|
+
display?: {
|
|
62610
|
+
lang: string;
|
|
62611
|
+
value: string;
|
|
62612
|
+
}[] | undefined;
|
|
62613
|
+
} | undefined;
|
|
62130
62614
|
}[] | undefined;
|
|
62131
62615
|
} | undefined;
|
|
62132
62616
|
}>;
|
|
@@ -63864,6 +64348,13 @@ declare abstract class Client$M extends Client$N {
|
|
|
63864
64348
|
}[] | undefined;
|
|
63865
64349
|
} | undefined;
|
|
63866
64350
|
archive_cpst_plan_id?: string | undefined;
|
|
64351
|
+
individuals_with_headcount_or_not?: {
|
|
64352
|
+
enum_name: string;
|
|
64353
|
+
display?: {
|
|
64354
|
+
lang: string;
|
|
64355
|
+
value: string;
|
|
64356
|
+
}[] | undefined;
|
|
64357
|
+
} | undefined;
|
|
63867
64358
|
}[] | undefined;
|
|
63868
64359
|
} | null, void, unknown>;
|
|
63869
64360
|
}>;
|
|
@@ -65154,6 +65645,13 @@ declare abstract class Client$M extends Client$N {
|
|
|
65154
65645
|
}[] | undefined;
|
|
65155
65646
|
} | undefined;
|
|
65156
65647
|
archive_cpst_plan_id?: string | undefined;
|
|
65648
|
+
individuals_with_headcount_or_not?: {
|
|
65649
|
+
enum_name: string;
|
|
65650
|
+
display?: {
|
|
65651
|
+
lang: string;
|
|
65652
|
+
value: string;
|
|
65653
|
+
}[] | undefined;
|
|
65654
|
+
} | undefined;
|
|
65157
65655
|
}[] | undefined;
|
|
65158
65656
|
page_token?: string | undefined;
|
|
65159
65657
|
has_more?: boolean | undefined;
|
|
@@ -66196,6 +66694,59 @@ declare abstract class Client$M extends Client$N {
|
|
|
66196
66694
|
* job
|
|
66197
66695
|
*/
|
|
66198
66696
|
job: {
|
|
66697
|
+
/**
|
|
66698
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=job&apiName=batch_get&version=v2 click to debug }
|
|
66699
|
+
*
|
|
66700
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=batch_get&project=corehr&resource=job&version=v2 document }
|
|
66701
|
+
*
|
|
66702
|
+
* 批量获取职务信息
|
|
66703
|
+
*/
|
|
66704
|
+
batchGet: (payload?: {
|
|
66705
|
+
data?: {
|
|
66706
|
+
job_ids?: Array<string>;
|
|
66707
|
+
job_codes?: Array<string>;
|
|
66708
|
+
fields?: Array<string>;
|
|
66709
|
+
};
|
|
66710
|
+
params?: {
|
|
66711
|
+
user_id_type?: "user_id" | "union_id" | "open_id" | "people_corehr_id";
|
|
66712
|
+
};
|
|
66713
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
66714
|
+
code?: number | undefined;
|
|
66715
|
+
msg?: string | undefined;
|
|
66716
|
+
data?: {
|
|
66717
|
+
items?: {
|
|
66718
|
+
id?: string | undefined;
|
|
66719
|
+
code?: string | undefined;
|
|
66720
|
+
name: Array<{
|
|
66721
|
+
lang: string;
|
|
66722
|
+
value: string;
|
|
66723
|
+
}>;
|
|
66724
|
+
description?: {
|
|
66725
|
+
lang: string;
|
|
66726
|
+
value: string;
|
|
66727
|
+
}[] | undefined;
|
|
66728
|
+
active: boolean;
|
|
66729
|
+
job_title?: {
|
|
66730
|
+
lang: string;
|
|
66731
|
+
value: string;
|
|
66732
|
+
}[] | undefined;
|
|
66733
|
+
pathway_id?: string | undefined;
|
|
66734
|
+
job_family_id_list?: string[] | undefined;
|
|
66735
|
+
job_level_id_list?: string[] | undefined;
|
|
66736
|
+
working_hours_type_id?: string | undefined;
|
|
66737
|
+
effective_time: string;
|
|
66738
|
+
expiration_time?: string | undefined;
|
|
66739
|
+
custom_fields?: {
|
|
66740
|
+
field_name: string;
|
|
66741
|
+
value: string;
|
|
66742
|
+
}[] | undefined;
|
|
66743
|
+
created_by?: string | undefined;
|
|
66744
|
+
created_time?: string | undefined;
|
|
66745
|
+
updated_by?: string | undefined;
|
|
66746
|
+
updated_time?: string | undefined;
|
|
66747
|
+
}[] | undefined;
|
|
66748
|
+
} | undefined;
|
|
66749
|
+
}>;
|
|
66199
66750
|
/**
|
|
66200
66751
|
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=job&apiName=get&version=v2 click to debug }
|
|
66201
66752
|
*
|
|
@@ -66289,6 +66840,52 @@ declare abstract class Client$M extends Client$N {
|
|
|
66289
66840
|
page_token?: string | undefined;
|
|
66290
66841
|
} | undefined;
|
|
66291
66842
|
}>;
|
|
66843
|
+
/**
|
|
66844
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=job&apiName=query_multi_timeline&version=v2 click to debug }
|
|
66845
|
+
*
|
|
66846
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=query_multi_timeline&project=corehr&resource=job&version=v2 document }
|
|
66847
|
+
*
|
|
66848
|
+
* 查询生效时间在指定时间范围的职务
|
|
66849
|
+
*/
|
|
66850
|
+
queryMultiTimeline: (payload?: {
|
|
66851
|
+
data: {
|
|
66852
|
+
job_ids: Array<string>;
|
|
66853
|
+
start_date?: string;
|
|
66854
|
+
end_date?: string;
|
|
66855
|
+
fields?: Array<string>;
|
|
66856
|
+
};
|
|
66857
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
66858
|
+
code?: number | undefined;
|
|
66859
|
+
msg?: string | undefined;
|
|
66860
|
+
data?: {
|
|
66861
|
+
items?: {
|
|
66862
|
+
job_version_data?: {
|
|
66863
|
+
job_id?: string | undefined;
|
|
66864
|
+
job_version_id?: string | undefined;
|
|
66865
|
+
job_names?: {
|
|
66866
|
+
lang: string;
|
|
66867
|
+
value: string;
|
|
66868
|
+
}[] | undefined;
|
|
66869
|
+
effective_date?: string | undefined;
|
|
66870
|
+
expiration_date?: string | undefined;
|
|
66871
|
+
active?: boolean | undefined;
|
|
66872
|
+
descriptions?: {
|
|
66873
|
+
lang: string;
|
|
66874
|
+
value: string;
|
|
66875
|
+
}[] | undefined;
|
|
66876
|
+
code?: string | undefined;
|
|
66877
|
+
job_titles?: {
|
|
66878
|
+
lang: string;
|
|
66879
|
+
value: string;
|
|
66880
|
+
}[] | undefined;
|
|
66881
|
+
job_family_ids?: string[] | undefined;
|
|
66882
|
+
job_level_ids?: string[] | undefined;
|
|
66883
|
+
pathway_id?: string | undefined;
|
|
66884
|
+
working_hours_type_id?: string | undefined;
|
|
66885
|
+
}[] | undefined;
|
|
66886
|
+
}[] | undefined;
|
|
66887
|
+
} | undefined;
|
|
66888
|
+
}>;
|
|
66292
66889
|
queryRecentChangeWithIterator: (payload?: {
|
|
66293
66890
|
params: {
|
|
66294
66891
|
page_size: number;
|
|
@@ -66950,6 +67547,47 @@ declare abstract class Client$M extends Client$N {
|
|
|
66950
67547
|
}[] | undefined;
|
|
66951
67548
|
} | undefined;
|
|
66952
67549
|
}>;
|
|
67550
|
+
/**
|
|
67551
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=job_family&apiName=query_multi_timeline&version=v2 click to debug }
|
|
67552
|
+
*
|
|
67553
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=query_multi_timeline&project=corehr&resource=job_family&version=v2 document }
|
|
67554
|
+
*
|
|
67555
|
+
* 查询生效时间在指定时间范围的序列
|
|
67556
|
+
*/
|
|
67557
|
+
queryMultiTimeline: (payload?: {
|
|
67558
|
+
data: {
|
|
67559
|
+
job_family_ids: Array<string>;
|
|
67560
|
+
start_date?: string;
|
|
67561
|
+
end_date?: string;
|
|
67562
|
+
fields?: Array<string>;
|
|
67563
|
+
};
|
|
67564
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
67565
|
+
code?: number | undefined;
|
|
67566
|
+
msg?: string | undefined;
|
|
67567
|
+
data?: {
|
|
67568
|
+
items?: {
|
|
67569
|
+
job_family_version_data?: {
|
|
67570
|
+
job_family_id?: string | undefined;
|
|
67571
|
+
job_family_version_id?: string | undefined;
|
|
67572
|
+
job_family_names?: {
|
|
67573
|
+
lang: string;
|
|
67574
|
+
value: string;
|
|
67575
|
+
}[] | undefined;
|
|
67576
|
+
effective_date?: string | undefined;
|
|
67577
|
+
expiration_date?: string | undefined;
|
|
67578
|
+
active?: boolean | undefined;
|
|
67579
|
+
descriptions?: {
|
|
67580
|
+
lang: string;
|
|
67581
|
+
value: string;
|
|
67582
|
+
}[] | undefined;
|
|
67583
|
+
selectable?: boolean | undefined;
|
|
67584
|
+
parent_job_family_id?: string | undefined;
|
|
67585
|
+
pathway_ids?: string[] | undefined;
|
|
67586
|
+
code?: string | undefined;
|
|
67587
|
+
}[] | undefined;
|
|
67588
|
+
}[] | undefined;
|
|
67589
|
+
} | undefined;
|
|
67590
|
+
}>;
|
|
66953
67591
|
queryRecentChangeWithIterator: (payload?: {
|
|
66954
67592
|
params: {
|
|
66955
67593
|
page_size: number;
|
|
@@ -67651,6 +68289,133 @@ declare abstract class Client$M extends Client$N {
|
|
|
67651
68289
|
} | undefined;
|
|
67652
68290
|
}>;
|
|
67653
68291
|
};
|
|
68292
|
+
/**
|
|
68293
|
+
* pathway
|
|
68294
|
+
*/
|
|
68295
|
+
pathway: {
|
|
68296
|
+
/**
|
|
68297
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=pathway&apiName=active&version=v2 click to debug }
|
|
68298
|
+
*
|
|
68299
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=active&project=corehr&resource=pathway&version=v2 document }
|
|
68300
|
+
*
|
|
68301
|
+
* 启/停用通道
|
|
68302
|
+
*/
|
|
68303
|
+
active: (payload?: {
|
|
68304
|
+
data: {
|
|
68305
|
+
pathway_id: string;
|
|
68306
|
+
active: boolean;
|
|
68307
|
+
};
|
|
68308
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
68309
|
+
code?: number | undefined;
|
|
68310
|
+
msg?: string | undefined;
|
|
68311
|
+
data?: {} | undefined;
|
|
68312
|
+
}>;
|
|
68313
|
+
/**
|
|
68314
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=pathway&apiName=batch_get&version=v2 click to debug }
|
|
68315
|
+
*
|
|
68316
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=batch_get&project=corehr&resource=pathway&version=v2 document }
|
|
68317
|
+
*
|
|
68318
|
+
* 通过通道 ID 批量获取通道信息
|
|
68319
|
+
*/
|
|
68320
|
+
batchGet: (payload?: {
|
|
68321
|
+
data: {
|
|
68322
|
+
pathway_ids: Array<string>;
|
|
68323
|
+
};
|
|
68324
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
68325
|
+
code?: number | undefined;
|
|
68326
|
+
msg?: string | undefined;
|
|
68327
|
+
data?: {
|
|
68328
|
+
items?: {
|
|
68329
|
+
pathway_id?: string | undefined;
|
|
68330
|
+
code?: string | undefined;
|
|
68331
|
+
names?: {
|
|
68332
|
+
lang: string;
|
|
68333
|
+
value: string;
|
|
68334
|
+
}[] | undefined;
|
|
68335
|
+
descriptions?: {
|
|
68336
|
+
lang: string;
|
|
68337
|
+
value: string;
|
|
68338
|
+
}[] | undefined;
|
|
68339
|
+
active?: boolean | undefined;
|
|
68340
|
+
}[] | undefined;
|
|
68341
|
+
} | undefined;
|
|
68342
|
+
}>;
|
|
68343
|
+
/**
|
|
68344
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=pathway&apiName=create&version=v2 click to debug }
|
|
68345
|
+
*
|
|
68346
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=create&project=corehr&resource=pathway&version=v2 document }
|
|
68347
|
+
*
|
|
68348
|
+
* 创建通道
|
|
68349
|
+
*/
|
|
68350
|
+
create: (payload?: {
|
|
68351
|
+
data: {
|
|
68352
|
+
code?: string;
|
|
68353
|
+
names: Array<{
|
|
68354
|
+
lang: string;
|
|
68355
|
+
value: string;
|
|
68356
|
+
}>;
|
|
68357
|
+
descriptions?: Array<{
|
|
68358
|
+
lang: string;
|
|
68359
|
+
value: string;
|
|
68360
|
+
}>;
|
|
68361
|
+
};
|
|
68362
|
+
params?: {
|
|
68363
|
+
client_token?: string;
|
|
68364
|
+
};
|
|
68365
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
68366
|
+
code?: number | undefined;
|
|
68367
|
+
msg?: string | undefined;
|
|
68368
|
+
data?: {
|
|
68369
|
+
pathway_id?: string | undefined;
|
|
68370
|
+
} | undefined;
|
|
68371
|
+
}>;
|
|
68372
|
+
/**
|
|
68373
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=pathway&apiName=delete&version=v2 click to debug }
|
|
68374
|
+
*
|
|
68375
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=delete&project=corehr&resource=pathway&version=v2 document }
|
|
68376
|
+
*
|
|
68377
|
+
* 删除通道
|
|
68378
|
+
*/
|
|
68379
|
+
delete: (payload?: {
|
|
68380
|
+
path: {
|
|
68381
|
+
pathway_id: string;
|
|
68382
|
+
};
|
|
68383
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
68384
|
+
code?: number | undefined;
|
|
68385
|
+
msg?: string | undefined;
|
|
68386
|
+
data?: {} | undefined;
|
|
68387
|
+
}>;
|
|
68388
|
+
/**
|
|
68389
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=pathway&apiName=patch&version=v2 click to debug }
|
|
68390
|
+
*
|
|
68391
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=patch&project=corehr&resource=pathway&version=v2 document }
|
|
68392
|
+
*
|
|
68393
|
+
* 更新通道信息
|
|
68394
|
+
*/
|
|
68395
|
+
patch: (payload?: {
|
|
68396
|
+
data?: {
|
|
68397
|
+
code?: string;
|
|
68398
|
+
names?: Array<{
|
|
68399
|
+
lang: string;
|
|
68400
|
+
value: string;
|
|
68401
|
+
}>;
|
|
68402
|
+
descriptions?: Array<{
|
|
68403
|
+
lang: string;
|
|
68404
|
+
value: string;
|
|
68405
|
+
}>;
|
|
68406
|
+
};
|
|
68407
|
+
params?: {
|
|
68408
|
+
client_token?: string;
|
|
68409
|
+
};
|
|
68410
|
+
path: {
|
|
68411
|
+
pathway_id: string;
|
|
68412
|
+
};
|
|
68413
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
68414
|
+
code?: number | undefined;
|
|
68415
|
+
msg?: string | undefined;
|
|
68416
|
+
data?: {} | undefined;
|
|
68417
|
+
}>;
|
|
68418
|
+
};
|
|
67654
68419
|
/**
|
|
67655
68420
|
* person
|
|
67656
68421
|
*/
|
|
@@ -69999,6 +70764,78 @@ declare abstract class Client$M extends Client$N {
|
|
|
69999
70764
|
} | undefined;
|
|
70000
70765
|
}>;
|
|
70001
70766
|
};
|
|
70767
|
+
/**
|
|
70768
|
+
* position
|
|
70769
|
+
*/
|
|
70770
|
+
position: {
|
|
70771
|
+
/**
|
|
70772
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=position&apiName=query&version=v2 click to debug }
|
|
70773
|
+
*
|
|
70774
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=query&project=corehr&resource=position&version=v2 document }
|
|
70775
|
+
*
|
|
70776
|
+
* 查询岗位信息
|
|
70777
|
+
*/
|
|
70778
|
+
query: (payload?: {
|
|
70779
|
+
data?: {
|
|
70780
|
+
department_ids?: Array<string>;
|
|
70781
|
+
effective_time?: string;
|
|
70782
|
+
active?: boolean;
|
|
70783
|
+
fields?: Array<string>;
|
|
70784
|
+
position_ids?: Array<string>;
|
|
70785
|
+
position_codes?: Array<string>;
|
|
70786
|
+
};
|
|
70787
|
+
params: {
|
|
70788
|
+
department_id_type?: "open_department_id" | "department_id" | "people_corehr_department_id";
|
|
70789
|
+
user_id_type?: "user_id" | "union_id" | "open_id" | "people_corehr_id";
|
|
70790
|
+
page_size: number;
|
|
70791
|
+
page_token?: string;
|
|
70792
|
+
};
|
|
70793
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
70794
|
+
code?: number | undefined;
|
|
70795
|
+
msg?: string | undefined;
|
|
70796
|
+
data?: {
|
|
70797
|
+
items?: {
|
|
70798
|
+
position_id?: string | undefined;
|
|
70799
|
+
code?: string | undefined;
|
|
70800
|
+
names?: {
|
|
70801
|
+
lang: string;
|
|
70802
|
+
value: string;
|
|
70803
|
+
}[] | undefined;
|
|
70804
|
+
descriptions?: {
|
|
70805
|
+
lang: string;
|
|
70806
|
+
value: string;
|
|
70807
|
+
}[] | undefined;
|
|
70808
|
+
active: boolean;
|
|
70809
|
+
job_family_id_list?: string[] | undefined;
|
|
70810
|
+
cost_center_id?: string | undefined;
|
|
70811
|
+
job_id?: string | undefined;
|
|
70812
|
+
job_level_id_list?: string[] | undefined;
|
|
70813
|
+
employee_type_id_list?: string[] | undefined;
|
|
70814
|
+
job_grade_id_list?: string[] | undefined;
|
|
70815
|
+
work_location_id_list?: string[] | undefined;
|
|
70816
|
+
working_hours_type_id?: string | undefined;
|
|
70817
|
+
department_id: string;
|
|
70818
|
+
direct_leader_id?: string | undefined;
|
|
70819
|
+
dotted_line_leader_id?: string | undefined;
|
|
70820
|
+
is_key_position?: boolean | undefined;
|
|
70821
|
+
effective_time: string;
|
|
70822
|
+
expiration_time: string;
|
|
70823
|
+
custom_fields?: {
|
|
70824
|
+
custom_api_name: string;
|
|
70825
|
+
name?: {
|
|
70826
|
+
zh_cn?: string | undefined;
|
|
70827
|
+
en_us?: string | undefined;
|
|
70828
|
+
} | undefined;
|
|
70829
|
+
type?: number | undefined;
|
|
70830
|
+
value: string;
|
|
70831
|
+
}[] | undefined;
|
|
70832
|
+
created_by?: string | undefined;
|
|
70833
|
+
}[] | undefined;
|
|
70834
|
+
page_token?: string | undefined;
|
|
70835
|
+
has_more?: boolean | undefined;
|
|
70836
|
+
} | undefined;
|
|
70837
|
+
}>;
|
|
70838
|
+
};
|
|
70002
70839
|
/**
|
|
70003
70840
|
* 待入职
|
|
70004
70841
|
*/
|
|
@@ -71703,7 +72540,7 @@ declare abstract class Client$M extends Client$N {
|
|
|
71703
72540
|
social_security_city_id?: string | undefined;
|
|
71704
72541
|
non_compete_covenant?: boolean | undefined;
|
|
71705
72542
|
weekly_working_hours?: number | undefined;
|
|
71706
|
-
rehire?: "
|
|
72543
|
+
rehire?: "yes" | "no" | "to_be_confirmed" | undefined;
|
|
71707
72544
|
rehire_employment_id?: string | undefined;
|
|
71708
72545
|
working_hours_type?: string | undefined;
|
|
71709
72546
|
weekly_working_hours_v2?: number | undefined;
|
|
@@ -72889,7 +73726,7 @@ declare abstract class Client$M extends Client$N {
|
|
|
72889
73726
|
social_security_city_id?: string | undefined;
|
|
72890
73727
|
non_compete_covenant?: boolean | undefined;
|
|
72891
73728
|
weekly_working_hours?: number | undefined;
|
|
72892
|
-
rehire?: "
|
|
73729
|
+
rehire?: "yes" | "no" | "to_be_confirmed" | undefined;
|
|
72893
73730
|
rehire_employment_id?: string | undefined;
|
|
72894
73731
|
working_hours_type?: string | undefined;
|
|
72895
73732
|
weekly_working_hours_v2?: number | undefined;
|
|
@@ -74101,7 +74938,7 @@ declare abstract class Client$M extends Client$N {
|
|
|
74101
74938
|
social_security_city_id?: string | undefined;
|
|
74102
74939
|
non_compete_covenant?: boolean | undefined;
|
|
74103
74940
|
weekly_working_hours?: number | undefined;
|
|
74104
|
-
rehire?: "
|
|
74941
|
+
rehire?: "yes" | "no" | "to_be_confirmed" | undefined;
|
|
74105
74942
|
rehire_employment_id?: string | undefined;
|
|
74106
74943
|
working_hours_type?: string | undefined;
|
|
74107
74944
|
weekly_working_hours_v2?: number | undefined;
|
|
@@ -75303,7 +76140,7 @@ declare abstract class Client$M extends Client$N {
|
|
|
75303
76140
|
social_security_city_id?: string | undefined;
|
|
75304
76141
|
non_compete_covenant?: boolean | undefined;
|
|
75305
76142
|
weekly_working_hours?: number | undefined;
|
|
75306
|
-
rehire?: "
|
|
76143
|
+
rehire?: "yes" | "no" | "to_be_confirmed" | undefined;
|
|
75307
76144
|
rehire_employment_id?: string | undefined;
|
|
75308
76145
|
working_hours_type?: string | undefined;
|
|
75309
76146
|
weekly_working_hours_v2?: number | undefined;
|
|
@@ -76290,7 +77127,7 @@ declare abstract class Client$M extends Client$N {
|
|
|
76290
77127
|
file_value?: {
|
|
76291
77128
|
open_file_id?: string | undefined;
|
|
76292
77129
|
file_name?: string | undefined;
|
|
76293
|
-
length?:
|
|
77130
|
+
length?: number | undefined;
|
|
76294
77131
|
mime_type?: string | undefined;
|
|
76295
77132
|
} | undefined;
|
|
76296
77133
|
} | undefined;
|
|
@@ -76323,7 +77160,7 @@ declare abstract class Client$M extends Client$N {
|
|
|
76323
77160
|
file_value?: {
|
|
76324
77161
|
open_file_id?: string | undefined;
|
|
76325
77162
|
file_name?: string | undefined;
|
|
76326
|
-
length?:
|
|
77163
|
+
length?: number | undefined;
|
|
76327
77164
|
mime_type?: string | undefined;
|
|
76328
77165
|
} | undefined;
|
|
76329
77166
|
} | undefined;
|
|
@@ -193540,7 +194377,7 @@ declare abstract class Client$G extends Client$H {
|
|
|
193540
194377
|
}>;
|
|
193541
194378
|
};
|
|
193542
194379
|
/**
|
|
193543
|
-
*
|
|
194380
|
+
* 文件
|
|
193544
194381
|
*/
|
|
193545
194382
|
file: {
|
|
193546
194383
|
/**
|
|
@@ -195504,7 +196341,7 @@ declare abstract class Client$G extends Client$H {
|
|
|
195504
196341
|
}>;
|
|
195505
196342
|
};
|
|
195506
196343
|
/**
|
|
195507
|
-
*
|
|
196344
|
+
* 文件
|
|
195508
196345
|
*/
|
|
195509
196346
|
file: {
|
|
195510
196347
|
/**
|
|
@@ -202329,7 +203166,7 @@ declare abstract class Client$x extends Client$y {
|
|
|
202329
203166
|
}>;
|
|
202330
203167
|
};
|
|
202331
203168
|
/**
|
|
202332
|
-
*
|
|
203169
|
+
* 入职
|
|
202333
203170
|
*/
|
|
202334
203171
|
application: {
|
|
202335
203172
|
/**
|
|
@@ -203200,6 +204037,7 @@ declare abstract class Client$x extends Client$y {
|
|
|
203200
204037
|
job_offered?: string | undefined;
|
|
203201
204038
|
job_grade_id?: string | undefined;
|
|
203202
204039
|
common_attachment_id_list?: string[] | undefined;
|
|
204040
|
+
pathway_id?: string | undefined;
|
|
203203
204041
|
} | undefined;
|
|
203204
204042
|
salary_plan?: {
|
|
203205
204043
|
currency?: string | undefined;
|
|
@@ -206158,6 +206996,14 @@ declare abstract class Client$x extends Client$y {
|
|
|
206158
206996
|
en_us?: string | undefined;
|
|
206159
206997
|
} | undefined;
|
|
206160
206998
|
}[] | undefined;
|
|
206999
|
+
related_dimension_config?: {
|
|
207000
|
+
type?: number | undefined;
|
|
207001
|
+
related_dimension_settings?: {
|
|
207002
|
+
dimension_id?: string | undefined;
|
|
207003
|
+
related_operator_type?: number | undefined;
|
|
207004
|
+
dimension_option_ids?: string[] | undefined;
|
|
207005
|
+
}[] | undefined;
|
|
207006
|
+
} | undefined;
|
|
206161
207007
|
}[] | undefined;
|
|
206162
207008
|
}[] | undefined;
|
|
206163
207009
|
}[] | undefined;
|
|
@@ -206247,6 +207093,14 @@ declare abstract class Client$x extends Client$y {
|
|
|
206247
207093
|
en_us?: string | undefined;
|
|
206248
207094
|
} | undefined;
|
|
206249
207095
|
}[] | undefined;
|
|
207096
|
+
related_dimension_config?: {
|
|
207097
|
+
type?: number | undefined;
|
|
207098
|
+
related_dimension_settings?: {
|
|
207099
|
+
dimension_id?: string | undefined;
|
|
207100
|
+
related_operator_type?: number | undefined;
|
|
207101
|
+
dimension_option_ids?: string[] | undefined;
|
|
207102
|
+
}[] | undefined;
|
|
207103
|
+
} | undefined;
|
|
206250
207104
|
}[] | undefined;
|
|
206251
207105
|
}[] | undefined;
|
|
206252
207106
|
}[] | undefined;
|
|
@@ -209147,6 +210001,11 @@ declare abstract class Client$x extends Client$y {
|
|
|
209147
210001
|
position_id?: string | undefined;
|
|
209148
210002
|
completion_time?: string | undefined;
|
|
209149
210003
|
approval_status?: number | undefined;
|
|
210004
|
+
count_data?: {
|
|
210005
|
+
offer_count?: number | undefined;
|
|
210006
|
+
pre_hire_count?: number | undefined;
|
|
210007
|
+
complete_count?: number | undefined;
|
|
210008
|
+
} | undefined;
|
|
209150
210009
|
} | undefined;
|
|
209151
210010
|
} | undefined;
|
|
209152
210011
|
}>;
|
|
@@ -209330,6 +210189,11 @@ declare abstract class Client$x extends Client$y {
|
|
|
209330
210189
|
position_id?: string | undefined;
|
|
209331
210190
|
completion_time?: string | undefined;
|
|
209332
210191
|
approval_status?: number | undefined;
|
|
210192
|
+
count_data?: {
|
|
210193
|
+
offer_count?: number | undefined;
|
|
210194
|
+
pre_hire_count?: number | undefined;
|
|
210195
|
+
complete_count?: number | undefined;
|
|
210196
|
+
} | undefined;
|
|
209333
210197
|
}[] | undefined;
|
|
209334
210198
|
} | undefined;
|
|
209335
210199
|
}>;
|
|
@@ -209488,6 +210352,11 @@ declare abstract class Client$x extends Client$y {
|
|
|
209488
210352
|
position_id?: string | undefined;
|
|
209489
210353
|
completion_time?: string | undefined;
|
|
209490
210354
|
approval_status?: number | undefined;
|
|
210355
|
+
count_data?: {
|
|
210356
|
+
offer_count?: number | undefined;
|
|
210357
|
+
pre_hire_count?: number | undefined;
|
|
210358
|
+
complete_count?: number | undefined;
|
|
210359
|
+
} | undefined;
|
|
209491
210360
|
}[] | undefined;
|
|
209492
210361
|
} | undefined;
|
|
209493
210362
|
}>;
|
|
@@ -210235,6 +211104,7 @@ declare abstract class Client$x extends Client$y {
|
|
|
210235
211104
|
position_id?: string;
|
|
210236
211105
|
job_offered?: string;
|
|
210237
211106
|
job_grade_id?: string;
|
|
211107
|
+
pathway_id?: string;
|
|
210238
211108
|
};
|
|
210239
211109
|
salary_info?: {
|
|
210240
211110
|
currency: string;
|
|
@@ -210292,6 +211162,7 @@ declare abstract class Client$x extends Client$y {
|
|
|
210292
211162
|
position_id?: string | undefined;
|
|
210293
211163
|
job_offered?: string | undefined;
|
|
210294
211164
|
job_grade_id?: string | undefined;
|
|
211165
|
+
pathway_id?: string | undefined;
|
|
210295
211166
|
} | undefined;
|
|
210296
211167
|
salary_info?: {
|
|
210297
211168
|
currency: string;
|
|
@@ -210449,6 +211320,7 @@ declare abstract class Client$x extends Client$y {
|
|
|
210449
211320
|
job_offered?: string | undefined;
|
|
210450
211321
|
job_grade_id?: string | undefined;
|
|
210451
211322
|
common_attachment_id_list?: string[] | undefined;
|
|
211323
|
+
pathway_id?: string | undefined;
|
|
210452
211324
|
} | undefined;
|
|
210453
211325
|
salary_plan?: {
|
|
210454
211326
|
currency?: string | undefined;
|
|
@@ -210657,6 +211529,7 @@ declare abstract class Client$x extends Client$y {
|
|
|
210657
211529
|
position_id?: string;
|
|
210658
211530
|
job_offered?: string;
|
|
210659
211531
|
job_grade_id?: string;
|
|
211532
|
+
pathway_id?: string;
|
|
210660
211533
|
};
|
|
210661
211534
|
salary_info?: {
|
|
210662
211535
|
currency: string;
|
|
@@ -210715,6 +211588,7 @@ declare abstract class Client$x extends Client$y {
|
|
|
210715
211588
|
position_id?: string | undefined;
|
|
210716
211589
|
job_offered?: string | undefined;
|
|
210717
211590
|
job_grade_id?: string | undefined;
|
|
211591
|
+
pathway_id?: string | undefined;
|
|
210718
211592
|
} | undefined;
|
|
210719
211593
|
salary_info?: {
|
|
210720
211594
|
currency: string;
|
|
@@ -210860,6 +211734,48 @@ declare abstract class Client$x extends Client$y {
|
|
|
210860
211734
|
} | undefined;
|
|
210861
211735
|
}>;
|
|
210862
211736
|
};
|
|
211737
|
+
/**
|
|
211738
|
+
* Offer 审批流配置(灰度租户可见)
|
|
211739
|
+
*/
|
|
211740
|
+
offerApprovalTemplate: {
|
|
211741
|
+
/**
|
|
211742
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=offer_approval_template&apiName=list&version=v1 click to debug }
|
|
211743
|
+
*
|
|
211744
|
+
* {@link https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer_approval_template/list document }
|
|
211745
|
+
*
|
|
211746
|
+
* 获取 Offer 审批流配置列表
|
|
211747
|
+
*
|
|
211748
|
+
* 获取 Offer 审批流配置列表
|
|
211749
|
+
*/
|
|
211750
|
+
list: (payload?: {
|
|
211751
|
+
params?: {
|
|
211752
|
+
page_token?: string;
|
|
211753
|
+
page_size?: number;
|
|
211754
|
+
department_id_type?: "open_department_id" | "department_id" | "people_admin_department_id";
|
|
211755
|
+
};
|
|
211756
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
211757
|
+
code?: number | undefined;
|
|
211758
|
+
msg?: string | undefined;
|
|
211759
|
+
data?: {
|
|
211760
|
+
has_more?: boolean | undefined;
|
|
211761
|
+
page_token?: string | undefined;
|
|
211762
|
+
items?: {
|
|
211763
|
+
id?: string | undefined;
|
|
211764
|
+
name?: {
|
|
211765
|
+
zh_cn?: string | undefined;
|
|
211766
|
+
en_us?: string | undefined;
|
|
211767
|
+
} | undefined;
|
|
211768
|
+
create_time?: string | undefined;
|
|
211769
|
+
remark?: string | undefined;
|
|
211770
|
+
department_list?: {
|
|
211771
|
+
id?: string | undefined;
|
|
211772
|
+
name?: string | undefined;
|
|
211773
|
+
en_name?: string | undefined;
|
|
211774
|
+
}[] | undefined;
|
|
211775
|
+
}[] | undefined;
|
|
211776
|
+
} | undefined;
|
|
211777
|
+
}>;
|
|
211778
|
+
};
|
|
210863
211779
|
/**
|
|
210864
211780
|
* offer_custom_field
|
|
210865
211781
|
*/
|
|
@@ -210937,6 +211853,178 @@ declare abstract class Client$x extends Client$y {
|
|
|
210937
211853
|
} | undefined;
|
|
210938
211854
|
}>;
|
|
210939
211855
|
};
|
|
211856
|
+
/**
|
|
211857
|
+
* portal_apply_schema
|
|
211858
|
+
*/
|
|
211859
|
+
portalApplySchema: {
|
|
211860
|
+
listWithIterator: (payload?: {
|
|
211861
|
+
params?: {
|
|
211862
|
+
page_size?: number;
|
|
211863
|
+
page_token?: string;
|
|
211864
|
+
};
|
|
211865
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
211866
|
+
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
211867
|
+
items?: {
|
|
211868
|
+
id?: string | undefined;
|
|
211869
|
+
name?: string | undefined;
|
|
211870
|
+
scenarios?: number[] | undefined;
|
|
211871
|
+
objects?: {
|
|
211872
|
+
id?: string | undefined;
|
|
211873
|
+
name?: {
|
|
211874
|
+
zh_cn?: string | undefined;
|
|
211875
|
+
en_us?: string | undefined;
|
|
211876
|
+
} | undefined;
|
|
211877
|
+
description?: {
|
|
211878
|
+
zh_cn?: string | undefined;
|
|
211879
|
+
en_us?: string | undefined;
|
|
211880
|
+
} | undefined;
|
|
211881
|
+
setting?: {
|
|
211882
|
+
object_type?: number | undefined;
|
|
211883
|
+
config?: {
|
|
211884
|
+
options?: {
|
|
211885
|
+
key?: string | undefined;
|
|
211886
|
+
name?: {
|
|
211887
|
+
zh_cn?: string | undefined;
|
|
211888
|
+
en_us?: string | undefined;
|
|
211889
|
+
} | undefined;
|
|
211890
|
+
description?: {
|
|
211891
|
+
zh_cn?: string | undefined;
|
|
211892
|
+
en_us?: string | undefined;
|
|
211893
|
+
} | undefined;
|
|
211894
|
+
active_status?: number | undefined;
|
|
211895
|
+
}[] | undefined;
|
|
211896
|
+
} | undefined;
|
|
211897
|
+
} | undefined;
|
|
211898
|
+
is_customized?: boolean | undefined;
|
|
211899
|
+
is_required?: boolean | undefined;
|
|
211900
|
+
is_visible?: boolean | undefined;
|
|
211901
|
+
active_status?: number | undefined;
|
|
211902
|
+
children_list?: {
|
|
211903
|
+
id?: string | undefined;
|
|
211904
|
+
name?: {
|
|
211905
|
+
zh_cn?: string | undefined;
|
|
211906
|
+
en_us?: string | undefined;
|
|
211907
|
+
} | undefined;
|
|
211908
|
+
description?: {
|
|
211909
|
+
zh_cn?: string | undefined;
|
|
211910
|
+
en_us?: string | undefined;
|
|
211911
|
+
} | undefined;
|
|
211912
|
+
setting?: {
|
|
211913
|
+
object_type?: number | undefined;
|
|
211914
|
+
config?: {
|
|
211915
|
+
options?: {
|
|
211916
|
+
key?: string | undefined;
|
|
211917
|
+
name?: {
|
|
211918
|
+
zh_cn?: string | undefined;
|
|
211919
|
+
en_us?: string | undefined;
|
|
211920
|
+
} | undefined;
|
|
211921
|
+
description?: {
|
|
211922
|
+
zh_cn?: string | undefined;
|
|
211923
|
+
en_us?: string | undefined;
|
|
211924
|
+
} | undefined;
|
|
211925
|
+
active_status?: number | undefined;
|
|
211926
|
+
}[] | undefined;
|
|
211927
|
+
} | undefined;
|
|
211928
|
+
} | undefined;
|
|
211929
|
+
parent_id?: string | undefined;
|
|
211930
|
+
is_customized?: boolean | undefined;
|
|
211931
|
+
is_required?: boolean | undefined;
|
|
211932
|
+
is_visible?: boolean | undefined;
|
|
211933
|
+
active_status?: number | undefined;
|
|
211934
|
+
}[] | undefined;
|
|
211935
|
+
}[] | undefined;
|
|
211936
|
+
}[] | undefined;
|
|
211937
|
+
} | null, void, unknown>;
|
|
211938
|
+
}>;
|
|
211939
|
+
/**
|
|
211940
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=portal_apply_schema&apiName=list&version=v1 click to debug }
|
|
211941
|
+
*
|
|
211942
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=list&project=hire&resource=portal_apply_schema&version=v1 document }
|
|
211943
|
+
*/
|
|
211944
|
+
list: (payload?: {
|
|
211945
|
+
params?: {
|
|
211946
|
+
page_size?: number;
|
|
211947
|
+
page_token?: string;
|
|
211948
|
+
};
|
|
211949
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
211950
|
+
code?: number | undefined;
|
|
211951
|
+
msg?: string | undefined;
|
|
211952
|
+
data?: {
|
|
211953
|
+
items?: {
|
|
211954
|
+
id?: string | undefined;
|
|
211955
|
+
name?: string | undefined;
|
|
211956
|
+
scenarios?: number[] | undefined;
|
|
211957
|
+
objects?: {
|
|
211958
|
+
id?: string | undefined;
|
|
211959
|
+
name?: {
|
|
211960
|
+
zh_cn?: string | undefined;
|
|
211961
|
+
en_us?: string | undefined;
|
|
211962
|
+
} | undefined;
|
|
211963
|
+
description?: {
|
|
211964
|
+
zh_cn?: string | undefined;
|
|
211965
|
+
en_us?: string | undefined;
|
|
211966
|
+
} | undefined;
|
|
211967
|
+
setting?: {
|
|
211968
|
+
object_type?: number | undefined;
|
|
211969
|
+
config?: {
|
|
211970
|
+
options?: {
|
|
211971
|
+
key?: string | undefined;
|
|
211972
|
+
name?: {
|
|
211973
|
+
zh_cn?: string | undefined;
|
|
211974
|
+
en_us?: string | undefined;
|
|
211975
|
+
} | undefined;
|
|
211976
|
+
description?: {
|
|
211977
|
+
zh_cn?: string | undefined;
|
|
211978
|
+
en_us?: string | undefined;
|
|
211979
|
+
} | undefined;
|
|
211980
|
+
active_status?: number | undefined;
|
|
211981
|
+
}[] | undefined;
|
|
211982
|
+
} | undefined;
|
|
211983
|
+
} | undefined;
|
|
211984
|
+
is_customized?: boolean | undefined;
|
|
211985
|
+
is_required?: boolean | undefined;
|
|
211986
|
+
is_visible?: boolean | undefined;
|
|
211987
|
+
active_status?: number | undefined;
|
|
211988
|
+
children_list?: {
|
|
211989
|
+
id?: string | undefined;
|
|
211990
|
+
name?: {
|
|
211991
|
+
zh_cn?: string | undefined;
|
|
211992
|
+
en_us?: string | undefined;
|
|
211993
|
+
} | undefined;
|
|
211994
|
+
description?: {
|
|
211995
|
+
zh_cn?: string | undefined;
|
|
211996
|
+
en_us?: string | undefined;
|
|
211997
|
+
} | undefined;
|
|
211998
|
+
setting?: {
|
|
211999
|
+
object_type?: number | undefined;
|
|
212000
|
+
config?: {
|
|
212001
|
+
options?: {
|
|
212002
|
+
key?: string | undefined;
|
|
212003
|
+
name?: {
|
|
212004
|
+
zh_cn?: string | undefined;
|
|
212005
|
+
en_us?: string | undefined;
|
|
212006
|
+
} | undefined;
|
|
212007
|
+
description?: {
|
|
212008
|
+
zh_cn?: string | undefined;
|
|
212009
|
+
en_us?: string | undefined;
|
|
212010
|
+
} | undefined;
|
|
212011
|
+
active_status?: number | undefined;
|
|
212012
|
+
}[] | undefined;
|
|
212013
|
+
} | undefined;
|
|
212014
|
+
} | undefined;
|
|
212015
|
+
parent_id?: string | undefined;
|
|
212016
|
+
is_customized?: boolean | undefined;
|
|
212017
|
+
is_required?: boolean | undefined;
|
|
212018
|
+
is_visible?: boolean | undefined;
|
|
212019
|
+
active_status?: number | undefined;
|
|
212020
|
+
}[] | undefined;
|
|
212021
|
+
}[] | undefined;
|
|
212022
|
+
}[] | undefined;
|
|
212023
|
+
page_token?: string | undefined;
|
|
212024
|
+
has_more?: boolean | undefined;
|
|
212025
|
+
} | undefined;
|
|
212026
|
+
}>;
|
|
212027
|
+
};
|
|
210940
212028
|
/**
|
|
210941
212029
|
* 问卷(灰度租户可见)
|
|
210942
212030
|
*/
|
|
@@ -216260,7 +217348,7 @@ declare abstract class Client$x extends Client$y {
|
|
|
216260
217348
|
}>;
|
|
216261
217349
|
};
|
|
216262
217350
|
/**
|
|
216263
|
-
*
|
|
217351
|
+
* 入职
|
|
216264
217352
|
*/
|
|
216265
217353
|
application: {
|
|
216266
217354
|
/**
|
|
@@ -217131,6 +218219,7 @@ declare abstract class Client$x extends Client$y {
|
|
|
217131
218219
|
job_offered?: string | undefined;
|
|
217132
218220
|
job_grade_id?: string | undefined;
|
|
217133
218221
|
common_attachment_id_list?: string[] | undefined;
|
|
218222
|
+
pathway_id?: string | undefined;
|
|
217134
218223
|
} | undefined;
|
|
217135
218224
|
salary_plan?: {
|
|
217136
218225
|
currency?: string | undefined;
|
|
@@ -220089,6 +221178,14 @@ declare abstract class Client$x extends Client$y {
|
|
|
220089
221178
|
en_us?: string | undefined;
|
|
220090
221179
|
} | undefined;
|
|
220091
221180
|
}[] | undefined;
|
|
221181
|
+
related_dimension_config?: {
|
|
221182
|
+
type?: number | undefined;
|
|
221183
|
+
related_dimension_settings?: {
|
|
221184
|
+
dimension_id?: string | undefined;
|
|
221185
|
+
related_operator_type?: number | undefined;
|
|
221186
|
+
dimension_option_ids?: string[] | undefined;
|
|
221187
|
+
}[] | undefined;
|
|
221188
|
+
} | undefined;
|
|
220092
221189
|
}[] | undefined;
|
|
220093
221190
|
}[] | undefined;
|
|
220094
221191
|
}[] | undefined;
|
|
@@ -220178,6 +221275,14 @@ declare abstract class Client$x extends Client$y {
|
|
|
220178
221275
|
en_us?: string | undefined;
|
|
220179
221276
|
} | undefined;
|
|
220180
221277
|
}[] | undefined;
|
|
221278
|
+
related_dimension_config?: {
|
|
221279
|
+
type?: number | undefined;
|
|
221280
|
+
related_dimension_settings?: {
|
|
221281
|
+
dimension_id?: string | undefined;
|
|
221282
|
+
related_operator_type?: number | undefined;
|
|
221283
|
+
dimension_option_ids?: string[] | undefined;
|
|
221284
|
+
}[] | undefined;
|
|
221285
|
+
} | undefined;
|
|
220181
221286
|
}[] | undefined;
|
|
220182
221287
|
}[] | undefined;
|
|
220183
221288
|
}[] | undefined;
|
|
@@ -223078,6 +224183,11 @@ declare abstract class Client$x extends Client$y {
|
|
|
223078
224183
|
position_id?: string | undefined;
|
|
223079
224184
|
completion_time?: string | undefined;
|
|
223080
224185
|
approval_status?: number | undefined;
|
|
224186
|
+
count_data?: {
|
|
224187
|
+
offer_count?: number | undefined;
|
|
224188
|
+
pre_hire_count?: number | undefined;
|
|
224189
|
+
complete_count?: number | undefined;
|
|
224190
|
+
} | undefined;
|
|
223081
224191
|
} | undefined;
|
|
223082
224192
|
} | undefined;
|
|
223083
224193
|
}>;
|
|
@@ -223261,6 +224371,11 @@ declare abstract class Client$x extends Client$y {
|
|
|
223261
224371
|
position_id?: string | undefined;
|
|
223262
224372
|
completion_time?: string | undefined;
|
|
223263
224373
|
approval_status?: number | undefined;
|
|
224374
|
+
count_data?: {
|
|
224375
|
+
offer_count?: number | undefined;
|
|
224376
|
+
pre_hire_count?: number | undefined;
|
|
224377
|
+
complete_count?: number | undefined;
|
|
224378
|
+
} | undefined;
|
|
223264
224379
|
}[] | undefined;
|
|
223265
224380
|
} | undefined;
|
|
223266
224381
|
}>;
|
|
@@ -223419,6 +224534,11 @@ declare abstract class Client$x extends Client$y {
|
|
|
223419
224534
|
position_id?: string | undefined;
|
|
223420
224535
|
completion_time?: string | undefined;
|
|
223421
224536
|
approval_status?: number | undefined;
|
|
224537
|
+
count_data?: {
|
|
224538
|
+
offer_count?: number | undefined;
|
|
224539
|
+
pre_hire_count?: number | undefined;
|
|
224540
|
+
complete_count?: number | undefined;
|
|
224541
|
+
} | undefined;
|
|
223422
224542
|
}[] | undefined;
|
|
223423
224543
|
} | undefined;
|
|
223424
224544
|
}>;
|
|
@@ -224166,6 +225286,7 @@ declare abstract class Client$x extends Client$y {
|
|
|
224166
225286
|
position_id?: string;
|
|
224167
225287
|
job_offered?: string;
|
|
224168
225288
|
job_grade_id?: string;
|
|
225289
|
+
pathway_id?: string;
|
|
224169
225290
|
};
|
|
224170
225291
|
salary_info?: {
|
|
224171
225292
|
currency: string;
|
|
@@ -224223,6 +225344,7 @@ declare abstract class Client$x extends Client$y {
|
|
|
224223
225344
|
position_id?: string | undefined;
|
|
224224
225345
|
job_offered?: string | undefined;
|
|
224225
225346
|
job_grade_id?: string | undefined;
|
|
225347
|
+
pathway_id?: string | undefined;
|
|
224226
225348
|
} | undefined;
|
|
224227
225349
|
salary_info?: {
|
|
224228
225350
|
currency: string;
|
|
@@ -224380,6 +225502,7 @@ declare abstract class Client$x extends Client$y {
|
|
|
224380
225502
|
job_offered?: string | undefined;
|
|
224381
225503
|
job_grade_id?: string | undefined;
|
|
224382
225504
|
common_attachment_id_list?: string[] | undefined;
|
|
225505
|
+
pathway_id?: string | undefined;
|
|
224383
225506
|
} | undefined;
|
|
224384
225507
|
salary_plan?: {
|
|
224385
225508
|
currency?: string | undefined;
|
|
@@ -224588,6 +225711,7 @@ declare abstract class Client$x extends Client$y {
|
|
|
224588
225711
|
position_id?: string;
|
|
224589
225712
|
job_offered?: string;
|
|
224590
225713
|
job_grade_id?: string;
|
|
225714
|
+
pathway_id?: string;
|
|
224591
225715
|
};
|
|
224592
225716
|
salary_info?: {
|
|
224593
225717
|
currency: string;
|
|
@@ -224646,6 +225770,7 @@ declare abstract class Client$x extends Client$y {
|
|
|
224646
225770
|
position_id?: string | undefined;
|
|
224647
225771
|
job_offered?: string | undefined;
|
|
224648
225772
|
job_grade_id?: string | undefined;
|
|
225773
|
+
pathway_id?: string | undefined;
|
|
224649
225774
|
} | undefined;
|
|
224650
225775
|
salary_info?: {
|
|
224651
225776
|
currency: string;
|
|
@@ -224791,6 +225916,48 @@ declare abstract class Client$x extends Client$y {
|
|
|
224791
225916
|
} | undefined;
|
|
224792
225917
|
}>;
|
|
224793
225918
|
};
|
|
225919
|
+
/**
|
|
225920
|
+
* Offer 审批流配置(灰度租户可见)
|
|
225921
|
+
*/
|
|
225922
|
+
offerApprovalTemplate: {
|
|
225923
|
+
/**
|
|
225924
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=offer_approval_template&apiName=list&version=v1 click to debug }
|
|
225925
|
+
*
|
|
225926
|
+
* {@link https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer_approval_template/list document }
|
|
225927
|
+
*
|
|
225928
|
+
* 获取 Offer 审批流配置列表
|
|
225929
|
+
*
|
|
225930
|
+
* 获取 Offer 审批流配置列表
|
|
225931
|
+
*/
|
|
225932
|
+
list: (payload?: {
|
|
225933
|
+
params?: {
|
|
225934
|
+
page_token?: string;
|
|
225935
|
+
page_size?: number;
|
|
225936
|
+
department_id_type?: "open_department_id" | "department_id" | "people_admin_department_id";
|
|
225937
|
+
};
|
|
225938
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
225939
|
+
code?: number | undefined;
|
|
225940
|
+
msg?: string | undefined;
|
|
225941
|
+
data?: {
|
|
225942
|
+
has_more?: boolean | undefined;
|
|
225943
|
+
page_token?: string | undefined;
|
|
225944
|
+
items?: {
|
|
225945
|
+
id?: string | undefined;
|
|
225946
|
+
name?: {
|
|
225947
|
+
zh_cn?: string | undefined;
|
|
225948
|
+
en_us?: string | undefined;
|
|
225949
|
+
} | undefined;
|
|
225950
|
+
create_time?: string | undefined;
|
|
225951
|
+
remark?: string | undefined;
|
|
225952
|
+
department_list?: {
|
|
225953
|
+
id?: string | undefined;
|
|
225954
|
+
name?: string | undefined;
|
|
225955
|
+
en_name?: string | undefined;
|
|
225956
|
+
}[] | undefined;
|
|
225957
|
+
}[] | undefined;
|
|
225958
|
+
} | undefined;
|
|
225959
|
+
}>;
|
|
225960
|
+
};
|
|
224794
225961
|
/**
|
|
224795
225962
|
* offer_custom_field
|
|
224796
225963
|
*/
|
|
@@ -224868,6 +226035,178 @@ declare abstract class Client$x extends Client$y {
|
|
|
224868
226035
|
} | undefined;
|
|
224869
226036
|
}>;
|
|
224870
226037
|
};
|
|
226038
|
+
/**
|
|
226039
|
+
* portal_apply_schema
|
|
226040
|
+
*/
|
|
226041
|
+
portalApplySchema: {
|
|
226042
|
+
listWithIterator: (payload?: {
|
|
226043
|
+
params?: {
|
|
226044
|
+
page_size?: number;
|
|
226045
|
+
page_token?: string;
|
|
226046
|
+
};
|
|
226047
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
226048
|
+
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
226049
|
+
items?: {
|
|
226050
|
+
id?: string | undefined;
|
|
226051
|
+
name?: string | undefined;
|
|
226052
|
+
scenarios?: number[] | undefined;
|
|
226053
|
+
objects?: {
|
|
226054
|
+
id?: string | undefined;
|
|
226055
|
+
name?: {
|
|
226056
|
+
zh_cn?: string | undefined;
|
|
226057
|
+
en_us?: string | undefined;
|
|
226058
|
+
} | undefined;
|
|
226059
|
+
description?: {
|
|
226060
|
+
zh_cn?: string | undefined;
|
|
226061
|
+
en_us?: string | undefined;
|
|
226062
|
+
} | undefined;
|
|
226063
|
+
setting?: {
|
|
226064
|
+
object_type?: number | undefined;
|
|
226065
|
+
config?: {
|
|
226066
|
+
options?: {
|
|
226067
|
+
key?: string | undefined;
|
|
226068
|
+
name?: {
|
|
226069
|
+
zh_cn?: string | undefined;
|
|
226070
|
+
en_us?: string | undefined;
|
|
226071
|
+
} | undefined;
|
|
226072
|
+
description?: {
|
|
226073
|
+
zh_cn?: string | undefined;
|
|
226074
|
+
en_us?: string | undefined;
|
|
226075
|
+
} | undefined;
|
|
226076
|
+
active_status?: number | undefined;
|
|
226077
|
+
}[] | undefined;
|
|
226078
|
+
} | undefined;
|
|
226079
|
+
} | undefined;
|
|
226080
|
+
is_customized?: boolean | undefined;
|
|
226081
|
+
is_required?: boolean | undefined;
|
|
226082
|
+
is_visible?: boolean | undefined;
|
|
226083
|
+
active_status?: number | undefined;
|
|
226084
|
+
children_list?: {
|
|
226085
|
+
id?: string | undefined;
|
|
226086
|
+
name?: {
|
|
226087
|
+
zh_cn?: string | undefined;
|
|
226088
|
+
en_us?: string | undefined;
|
|
226089
|
+
} | undefined;
|
|
226090
|
+
description?: {
|
|
226091
|
+
zh_cn?: string | undefined;
|
|
226092
|
+
en_us?: string | undefined;
|
|
226093
|
+
} | undefined;
|
|
226094
|
+
setting?: {
|
|
226095
|
+
object_type?: number | undefined;
|
|
226096
|
+
config?: {
|
|
226097
|
+
options?: {
|
|
226098
|
+
key?: string | undefined;
|
|
226099
|
+
name?: {
|
|
226100
|
+
zh_cn?: string | undefined;
|
|
226101
|
+
en_us?: string | undefined;
|
|
226102
|
+
} | undefined;
|
|
226103
|
+
description?: {
|
|
226104
|
+
zh_cn?: string | undefined;
|
|
226105
|
+
en_us?: string | undefined;
|
|
226106
|
+
} | undefined;
|
|
226107
|
+
active_status?: number | undefined;
|
|
226108
|
+
}[] | undefined;
|
|
226109
|
+
} | undefined;
|
|
226110
|
+
} | undefined;
|
|
226111
|
+
parent_id?: string | undefined;
|
|
226112
|
+
is_customized?: boolean | undefined;
|
|
226113
|
+
is_required?: boolean | undefined;
|
|
226114
|
+
is_visible?: boolean | undefined;
|
|
226115
|
+
active_status?: number | undefined;
|
|
226116
|
+
}[] | undefined;
|
|
226117
|
+
}[] | undefined;
|
|
226118
|
+
}[] | undefined;
|
|
226119
|
+
} | null, void, unknown>;
|
|
226120
|
+
}>;
|
|
226121
|
+
/**
|
|
226122
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=portal_apply_schema&apiName=list&version=v1 click to debug }
|
|
226123
|
+
*
|
|
226124
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=list&project=hire&resource=portal_apply_schema&version=v1 document }
|
|
226125
|
+
*/
|
|
226126
|
+
list: (payload?: {
|
|
226127
|
+
params?: {
|
|
226128
|
+
page_size?: number;
|
|
226129
|
+
page_token?: string;
|
|
226130
|
+
};
|
|
226131
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
226132
|
+
code?: number | undefined;
|
|
226133
|
+
msg?: string | undefined;
|
|
226134
|
+
data?: {
|
|
226135
|
+
items?: {
|
|
226136
|
+
id?: string | undefined;
|
|
226137
|
+
name?: string | undefined;
|
|
226138
|
+
scenarios?: number[] | undefined;
|
|
226139
|
+
objects?: {
|
|
226140
|
+
id?: string | undefined;
|
|
226141
|
+
name?: {
|
|
226142
|
+
zh_cn?: string | undefined;
|
|
226143
|
+
en_us?: string | undefined;
|
|
226144
|
+
} | undefined;
|
|
226145
|
+
description?: {
|
|
226146
|
+
zh_cn?: string | undefined;
|
|
226147
|
+
en_us?: string | undefined;
|
|
226148
|
+
} | undefined;
|
|
226149
|
+
setting?: {
|
|
226150
|
+
object_type?: number | undefined;
|
|
226151
|
+
config?: {
|
|
226152
|
+
options?: {
|
|
226153
|
+
key?: string | undefined;
|
|
226154
|
+
name?: {
|
|
226155
|
+
zh_cn?: string | undefined;
|
|
226156
|
+
en_us?: string | undefined;
|
|
226157
|
+
} | undefined;
|
|
226158
|
+
description?: {
|
|
226159
|
+
zh_cn?: string | undefined;
|
|
226160
|
+
en_us?: string | undefined;
|
|
226161
|
+
} | undefined;
|
|
226162
|
+
active_status?: number | undefined;
|
|
226163
|
+
}[] | undefined;
|
|
226164
|
+
} | undefined;
|
|
226165
|
+
} | undefined;
|
|
226166
|
+
is_customized?: boolean | undefined;
|
|
226167
|
+
is_required?: boolean | undefined;
|
|
226168
|
+
is_visible?: boolean | undefined;
|
|
226169
|
+
active_status?: number | undefined;
|
|
226170
|
+
children_list?: {
|
|
226171
|
+
id?: string | undefined;
|
|
226172
|
+
name?: {
|
|
226173
|
+
zh_cn?: string | undefined;
|
|
226174
|
+
en_us?: string | undefined;
|
|
226175
|
+
} | undefined;
|
|
226176
|
+
description?: {
|
|
226177
|
+
zh_cn?: string | undefined;
|
|
226178
|
+
en_us?: string | undefined;
|
|
226179
|
+
} | undefined;
|
|
226180
|
+
setting?: {
|
|
226181
|
+
object_type?: number | undefined;
|
|
226182
|
+
config?: {
|
|
226183
|
+
options?: {
|
|
226184
|
+
key?: string | undefined;
|
|
226185
|
+
name?: {
|
|
226186
|
+
zh_cn?: string | undefined;
|
|
226187
|
+
en_us?: string | undefined;
|
|
226188
|
+
} | undefined;
|
|
226189
|
+
description?: {
|
|
226190
|
+
zh_cn?: string | undefined;
|
|
226191
|
+
en_us?: string | undefined;
|
|
226192
|
+
} | undefined;
|
|
226193
|
+
active_status?: number | undefined;
|
|
226194
|
+
}[] | undefined;
|
|
226195
|
+
} | undefined;
|
|
226196
|
+
} | undefined;
|
|
226197
|
+
parent_id?: string | undefined;
|
|
226198
|
+
is_customized?: boolean | undefined;
|
|
226199
|
+
is_required?: boolean | undefined;
|
|
226200
|
+
is_visible?: boolean | undefined;
|
|
226201
|
+
active_status?: number | undefined;
|
|
226202
|
+
}[] | undefined;
|
|
226203
|
+
}[] | undefined;
|
|
226204
|
+
}[] | undefined;
|
|
226205
|
+
page_token?: string | undefined;
|
|
226206
|
+
has_more?: boolean | undefined;
|
|
226207
|
+
} | undefined;
|
|
226208
|
+
}>;
|
|
226209
|
+
};
|
|
224871
226210
|
/**
|
|
224872
226211
|
* 问卷(灰度租户可见)
|
|
224873
226212
|
*/
|
|
@@ -257891,6 +259230,7 @@ declare abstract class Client$4 extends Client$5 {
|
|
|
257891
259230
|
with_participants?: boolean;
|
|
257892
259231
|
with_meeting_ability?: boolean;
|
|
257893
259232
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
259233
|
+
query_mode?: number;
|
|
257894
259234
|
};
|
|
257895
259235
|
path?: {
|
|
257896
259236
|
meeting_id?: string;
|
|
@@ -257936,6 +259276,10 @@ declare abstract class Client$4 extends Client$5 {
|
|
|
257936
259276
|
use_pstn?: boolean | undefined;
|
|
257937
259277
|
} | undefined;
|
|
257938
259278
|
} | undefined;
|
|
259279
|
+
related_artifacts?: {
|
|
259280
|
+
note_doc_token?: string | undefined;
|
|
259281
|
+
verbatim_doc_token?: string | undefined;
|
|
259282
|
+
} | undefined;
|
|
257939
259283
|
} | undefined;
|
|
257940
259284
|
}>;
|
|
257941
259285
|
/**
|
|
@@ -260568,6 +261912,7 @@ declare abstract class Client$4 extends Client$5 {
|
|
|
260568
261912
|
with_participants?: boolean;
|
|
260569
261913
|
with_meeting_ability?: boolean;
|
|
260570
261914
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
261915
|
+
query_mode?: number;
|
|
260571
261916
|
};
|
|
260572
261917
|
path?: {
|
|
260573
261918
|
meeting_id?: string;
|
|
@@ -260613,6 +261958,10 @@ declare abstract class Client$4 extends Client$5 {
|
|
|
260613
261958
|
use_pstn?: boolean | undefined;
|
|
260614
261959
|
} | undefined;
|
|
260615
261960
|
} | undefined;
|
|
261961
|
+
related_artifacts?: {
|
|
261962
|
+
note_doc_token?: string | undefined;
|
|
261963
|
+
verbatim_doc_token?: string | undefined;
|
|
261964
|
+
} | undefined;
|
|
260616
261965
|
} | undefined;
|
|
260617
261966
|
}>;
|
|
260618
261967
|
/**
|
|
@@ -267823,6 +269172,52 @@ interface IHandles extends IOtherEventHandles {
|
|
|
267823
269172
|
open_id?: string;
|
|
267824
269173
|
};
|
|
267825
269174
|
}) => Promise<any> | any;
|
|
269175
|
+
/**
|
|
269176
|
+
|
|
269177
|
+
*/
|
|
269178
|
+
"corehr.pathway.created_v2"?: (data: {
|
|
269179
|
+
event_id?: string;
|
|
269180
|
+
token?: string;
|
|
269181
|
+
create_time?: string;
|
|
269182
|
+
event_type?: string;
|
|
269183
|
+
tenant_key?: string;
|
|
269184
|
+
ts?: string;
|
|
269185
|
+
uuid?: string;
|
|
269186
|
+
type?: string;
|
|
269187
|
+
app_id?: string;
|
|
269188
|
+
pathway_id?: string;
|
|
269189
|
+
}) => Promise<any> | any;
|
|
269190
|
+
/**
|
|
269191
|
+
|
|
269192
|
+
*/
|
|
269193
|
+
"corehr.pathway.deleted_v2"?: (data: {
|
|
269194
|
+
event_id?: string;
|
|
269195
|
+
token?: string;
|
|
269196
|
+
create_time?: string;
|
|
269197
|
+
event_type?: string;
|
|
269198
|
+
tenant_key?: string;
|
|
269199
|
+
ts?: string;
|
|
269200
|
+
uuid?: string;
|
|
269201
|
+
type?: string;
|
|
269202
|
+
app_id?: string;
|
|
269203
|
+
pathway_id?: string;
|
|
269204
|
+
}) => Promise<any> | any;
|
|
269205
|
+
/**
|
|
269206
|
+
|
|
269207
|
+
*/
|
|
269208
|
+
"corehr.pathway.updated_v2"?: (data: {
|
|
269209
|
+
event_id?: string;
|
|
269210
|
+
token?: string;
|
|
269211
|
+
create_time?: string;
|
|
269212
|
+
event_type?: string;
|
|
269213
|
+
tenant_key?: string;
|
|
269214
|
+
ts?: string;
|
|
269215
|
+
uuid?: string;
|
|
269216
|
+
type?: string;
|
|
269217
|
+
app_id?: string;
|
|
269218
|
+
pathway_id?: string;
|
|
269219
|
+
field_changes?: Array<string>;
|
|
269220
|
+
}) => Promise<any> | any;
|
|
267826
269221
|
/**
|
|
267827
269222
|
|
|
267828
269223
|
*/
|
|
@@ -267891,6 +269286,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
267891
269286
|
flow_definition_id?: string;
|
|
267892
269287
|
node_definition_id?: string;
|
|
267893
269288
|
node_id?: string;
|
|
269289
|
+
node_id_str?: string;
|
|
267894
269290
|
}) => Promise<any> | any;
|
|
267895
269291
|
/**
|
|
267896
269292
|
|