@satorijs/adapter-lark 3.8.6 → 3.9.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.
Files changed (127) hide show
  1. package/lib/bot.d.ts +1 -1
  2. package/lib/content.d.ts +433 -0
  3. package/lib/http.d.ts +1 -1
  4. package/lib/index.cjs +2787 -1714
  5. package/lib/index.cjs.map +6 -0
  6. package/lib/index.d.ts +4 -2
  7. package/lib/internal.d.ts +38 -0
  8. package/lib/message.d.ts +2 -0
  9. package/lib/types/acs.d.ts +177 -0
  10. package/lib/types/admin.d.ts +270 -0
  11. package/lib/types/aily.d.ts +221 -0
  12. package/lib/types/apaas.d.ts +499 -0
  13. package/lib/types/api.d.ts +1 -14
  14. package/lib/types/application.d.ts +406 -0
  15. package/lib/types/approval.d.ts +779 -0
  16. package/lib/types/attendance.d.ts +957 -0
  17. package/lib/types/auth.d.ts +86 -0
  18. package/lib/types/authen.d.ts +191 -0
  19. package/lib/types/baike.d.ts +239 -0
  20. package/lib/types/bitable.d.ts +691 -0
  21. package/lib/types/board.d.ts +19 -0
  22. package/lib/types/calendar.d.ts +653 -0
  23. package/lib/types/cardkit.d.ts +139 -0
  24. package/lib/types/compensation.d.ts +54 -0
  25. package/lib/types/contact.d.ts +1137 -0
  26. package/lib/types/corehr.d.ts +4383 -0
  27. package/lib/types/docs.d.ts +23 -0
  28. package/lib/types/document_ai.d.ts +257 -0
  29. package/lib/types/docx.d.ts +380 -0
  30. package/lib/types/drive.d.ts +1045 -0
  31. package/lib/types/ehr.d.ts +32 -0
  32. package/lib/types/event.d.ts +9 -18
  33. package/lib/types/guild.d.ts +59 -0
  34. package/lib/types/helpdesk.d.ts +738 -0
  35. package/lib/types/hire.d.ts +3150 -0
  36. package/lib/types/human_authentication.d.ts +27 -0
  37. package/lib/types/im.d.ts +1300 -0
  38. package/lib/types/index.d.ts +16432 -34
  39. package/lib/types/lingo.d.ts +254 -0
  40. package/lib/types/mail.d.ts +680 -0
  41. package/lib/types/mdm.d.ts +42 -0
  42. package/lib/types/message/asset.d.ts +40 -0
  43. package/lib/types/minutes.d.ts +31 -0
  44. package/lib/types/moments.d.ts +18 -0
  45. package/lib/types/okr.d.ts +205 -0
  46. package/lib/types/optical_char_recognition.d.ts +17 -0
  47. package/lib/types/passport.d.ts +45 -0
  48. package/lib/types/payroll.d.ts +50 -0
  49. package/lib/types/performance.d.ts +413 -0
  50. package/lib/types/personal_settings.d.ts +87 -0
  51. package/lib/types/report.d.ts +57 -0
  52. package/lib/types/search.d.ts +216 -0
  53. package/lib/types/security_and_compliance.d.ts +24 -0
  54. package/lib/types/sheets.d.ts +326 -0
  55. package/lib/types/speech_to_text.d.ts +39 -0
  56. package/lib/types/task.d.ts +1153 -0
  57. package/lib/types/tenant.d.ts +23 -0
  58. package/lib/types/translation.d.ts +37 -0
  59. package/lib/types/user.d.ts +78 -0
  60. package/lib/types/utils.d.ts +9 -0
  61. package/lib/types/vc.d.ts +948 -0
  62. package/lib/types/verification.d.ts +14 -0
  63. package/lib/types/wiki.d.ts +240 -0
  64. package/lib/types/workplace.d.ts +43 -0
  65. package/lib/utils.d.ts +143 -7
  66. package/package.json +6 -4
  67. package/src/bot.ts +19 -3
  68. package/src/{types/message/content.ts → content.ts} +1 -0
  69. package/src/http.ts +1 -3
  70. package/src/index.ts +4 -2
  71. package/src/internal.ts +144 -0
  72. package/src/message.ts +13 -11
  73. package/src/types/acs.ts +236 -0
  74. package/src/types/admin.ts +328 -0
  75. package/src/types/aily.ts +288 -0
  76. package/src/types/apaas.ts +646 -0
  77. package/src/types/application.ts +520 -0
  78. package/src/types/approval.ts +924 -0
  79. package/src/types/attendance.ts +1153 -0
  80. package/src/types/auth.ts +114 -0
  81. package/src/types/authen.ts +220 -0
  82. package/src/types/baike.ts +306 -0
  83. package/src/types/bitable.ts +879 -0
  84. package/src/types/board.ts +31 -0
  85. package/src/types/calendar.ts +817 -0
  86. package/src/types/cardkit.ts +182 -0
  87. package/src/types/compensation.ts +79 -0
  88. package/src/types/contact.ts +1411 -0
  89. package/src/types/corehr.ts +5288 -0
  90. package/src/types/docs.ts +33 -0
  91. package/src/types/document_ai.ts +352 -0
  92. package/src/types/docx.ts +471 -0
  93. package/src/types/drive.ts +1312 -0
  94. package/src/types/ehr.ts +43 -0
  95. package/src/types/event.ts +15 -21
  96. package/src/types/helpdesk.ts +916 -0
  97. package/src/types/hire.ts +3918 -0
  98. package/src/types/human_authentication.ts +38 -0
  99. package/src/types/im.ts +1605 -0
  100. package/src/types/index.ts +17754 -39
  101. package/src/types/lingo.ts +321 -0
  102. package/src/types/mail.ts +851 -0
  103. package/src/types/mdm.ts +57 -0
  104. package/src/types/minutes.ts +46 -0
  105. package/src/types/moments.ts +28 -0
  106. package/src/types/okr.ts +261 -0
  107. package/src/types/optical_char_recognition.ts +27 -0
  108. package/src/types/passport.ts +61 -0
  109. package/src/types/payroll.ts +69 -0
  110. package/src/types/performance.ts +524 -0
  111. package/src/types/personal_settings.ts +116 -0
  112. package/src/types/report.ts +77 -0
  113. package/src/types/search.ts +268 -0
  114. package/src/types/security_and_compliance.ts +33 -0
  115. package/src/types/sheets.ts +425 -0
  116. package/src/types/speech_to_text.ts +54 -0
  117. package/src/types/task.ts +1464 -0
  118. package/src/types/tenant.ts +36 -0
  119. package/src/types/translation.ts +52 -0
  120. package/src/types/vc.ts +1197 -0
  121. package/src/types/verification.ts +23 -0
  122. package/src/types/wiki.ts +313 -0
  123. package/src/types/workplace.ts +59 -0
  124. package/src/utils.ts +160 -8
  125. package/src/types/api.ts +0 -30848
  126. package/src/types/internal.ts +0 -84
  127. package/src/types/message/index.ts +0 -97
@@ -0,0 +1,3150 @@
1
+ import { Account, Agency, AgencyAccount, AgencyProtection, AgencySupplier, Application, ApplicationDetailInfo, ApplicationOffer, Attachment, AttachmentInfo, BackgroundCheckOrder, BonusAmount, CheckFailedAccountInfo, CombinedJobObjectValueMap, CombinedJobResultDefaultJobPost, CommonFilter, CommonSchema, CompositeTalentAwardInfo, CompositeTalentBasicInfo, CompositeTalentCareerInfo, CompositeTalentCustomizedData, CompositeTalentEducationInfo, CompositeTalentInternshipInfo, CompositeTalentLanguageInfo, CompositeTalentProjectInfo, CompositeTalentSnsInfo, CompositeTalentWorksInfo, DiInfo, EcoAccountCustomFieldData, EcoBackgroundCheckCustomFieldData, EcoBackgroundCheckPackageAdditionalItem, EcoBackgroundCheckPackageData, EcoBackgroundCheckReportFile, EcoExamLoginInfo, EcoExamPaperData, EcoExamResultDetail, EcoExamResultReport, Employee, EmployeeConversionInfo, EmployeeOverboardInfo, Evaluation, EvaluationTask, ExamMarkingTask, ExternalApplication, ExternalBackgroundCheck, ExternalInterview, ExternalInterviewAssessment, ExternalInterviewAssessmentDimension, ExternalOffer, I18n, InternOfferOffboardingInfo, InternOfferOnboardingInfo, Interview, InterviewAppointmentConfig, Interviewer, InterviewExtend, InterviewFeedbackForm, InterviewRecord, InterviewRegistrationSchema, InterviewRoundType, InterviewTask, Job, JobConfigInterviewRoundConf, JobConfigResult, JobConfigRoundType, JobDetail, JobFunction, JobManager, JobProcesses, JobRecruiter2, JobRequirementCustomizedData, JobRequirementDto, JobRequirementSchema, JobRequirementUpdateOption, JobSchema, JobTypeInfo, Location, LocationDto, MentionEntity, Minutes, Mobile, Note, Offer, OfferApplyForm, OfferApplyFormInfo, OfferBasicInfo, OfferCustomFieldConfig, OfferCustomizedInfo, OfferListInfo, OfferSalaryInfo, OfferSchemaDetail, PortalJobPost, Questionnaire, Referral, ReferralInfo, RegistrationBasicInfo, RegistrationSchema, RegistrationSchemaInfo, ResumeSource, Role, RoleDetail, Subject, Talent, TalentBatchInfo, TalentBlock, TalentCombinedAwardInfo, TalentCombinedBasicInfo, TalentCombinedCareerInfo, TalentCombinedEducationInfo, TalentCombinedLanguageInfo, TalentCombinedProjectInfo, TalentCombinedSnsInfo, TalentCombinedWorkInfo, TalentCustomizedDataObjectValue, TalentExternalInfo, TalentFolder, TalentFolderForList, TalentInterview, TalentInterviewRegistrationSimple, TalentNote, TalentOperationLog, TalentPool, TalentResumeAttachment, TalentResumeSource, TalentSelfEvaluation, TalentSimilar, TalentTag, TargetMajorInfo, TerminationReason, Test, Todo, TradeDetail, TripartiteAgreementInfo, UserRole, Website, WebsiteChannelInfo, WebsiteDeliveryAttachmentIndentification, WebsiteDeliveryDto, WebsiteDeliveryResume, WebsiteJobPost, WebsiteUser } from '.';
2
+ import { Pagination } from '../internal';
3
+ declare module '../internal' {
4
+ interface Internal {
5
+ /**
6
+ * 查询地点列表
7
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/location/query
8
+ */
9
+ queryHireLocation(body: QueryHireLocationRequest, query?: Pagination): Paginated<LocationDto>;
10
+ /**
11
+ * 获取地址列表
12
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/location/list
13
+ */
14
+ listHireLocation(query?: ListHireLocationQuery): Paginated<Location>;
15
+ /**
16
+ * 获取角色详情
17
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/role/get
18
+ */
19
+ getHireRole(role_id: string): Promise<GetHireRoleResponse>;
20
+ /**
21
+ * 获取角色列表
22
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/role/list
23
+ */
24
+ listHireRole(query?: Pagination): Paginated<Role>;
25
+ /**
26
+ * 获取用户角色列表
27
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/user_role/list
28
+ */
29
+ listHireUserRole(query?: ListHireUserRoleQuery): Paginated<UserRole>;
30
+ /**
31
+ * 新建职位
32
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/combined_create
33
+ */
34
+ combinedCreateHireJob(body: CombinedCreateHireJobRequest, query?: CombinedCreateHireJobQuery): Promise<CombinedCreateHireJobResponse>;
35
+ /**
36
+ * 更新职位
37
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/combined_update
38
+ */
39
+ combinedUpdateHireJob(job_id: string, body: CombinedUpdateHireJobRequest, query?: CombinedUpdateHireJobQuery): Promise<CombinedUpdateHireJobResponse>;
40
+ /**
41
+ * 更新职位设置
42
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/update_config
43
+ */
44
+ updateConfigHireJob(job_id: string, body: UpdateConfigHireJobRequest, query?: UpdateConfigHireJobQuery): Promise<UpdateConfigHireJobResponse>;
45
+ /**
46
+ * 更新职位相关人员
47
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job-manager/batch_update
48
+ */
49
+ batchUpdateHireJobManager(job_id: string, body: BatchUpdateHireJobManagerRequest, query?: BatchUpdateHireJobManagerQuery): Promise<BatchUpdateHireJobManagerResponse>;
50
+ /**
51
+ * 获取职位详情
52
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/get_detail
53
+ */
54
+ getDetailHireJob(job_id: string, query?: GetDetailHireJobQuery): Promise<GetDetailHireJobResponse>;
55
+ /**
56
+ * 获取职位信息
57
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/get
58
+ */
59
+ getHireJob(job_id: string, query?: GetHireJobQuery): Promise<GetHireJobResponse>;
60
+ /**
61
+ * 获取职位上的招聘人员信息
62
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/recruiter
63
+ */
64
+ recruiterHireJob(job_id: string, query?: RecruiterHireJobQuery): Promise<RecruiterHireJobResponse>;
65
+ /**
66
+ * 获取职位设置
67
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/config
68
+ */
69
+ configHireJob(job_id: string, query?: ConfigHireJobQuery): Promise<ConfigHireJobResponse>;
70
+ /**
71
+ * 获取职位列表
72
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/list
73
+ */
74
+ listHireJob(query?: ListHireJobQuery): Paginated<Job>;
75
+ /**
76
+ * 关闭职位
77
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/close
78
+ */
79
+ closeHireJob(job_id: string): Promise<void>;
80
+ /**
81
+ * 重启职位
82
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job/open
83
+ */
84
+ openHireJob(job_id: string, body: OpenHireJobRequest): Promise<void>;
85
+ /**
86
+ * 获取职位模板
87
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_schema/list
88
+ */
89
+ listHireJobSchema(query?: ListHireJobSchemaQuery): Paginated<JobSchema>;
90
+ /**
91
+ * 发布职位广告
92
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/advertisement/publish
93
+ */
94
+ publishHireAdvertisement(advertisement_id: string, body: PublishHireAdvertisementRequest): Promise<void>;
95
+ /**
96
+ * 获取职位广告发布记录
97
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_publish_record/search
98
+ */
99
+ searchHireJobPublishRecord(body: SearchHireJobPublishRecordRequest, query?: SearchHireJobPublishRecordQuery): Paginated<WebsiteJobPost>;
100
+ /**
101
+ * 获取职能分类列表
102
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_function/list
103
+ */
104
+ listHireJobFunction(query?: Pagination): Paginated<JobFunction>;
105
+ /**
106
+ * 获取职位类别列表
107
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_type/list
108
+ */
109
+ listHireJobType(query?: Pagination): Paginated<JobTypeInfo>;
110
+ /**
111
+ * 创建招聘需求
112
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_requirement/create
113
+ */
114
+ createHireJobRequirement(body: CreateHireJobRequirementRequest, query?: CreateHireJobRequirementQuery): Promise<CreateHireJobRequirementResponse>;
115
+ /**
116
+ * 更新招聘需求
117
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_requirement/update
118
+ */
119
+ updateHireJobRequirement(job_requirement_id: string, body: UpdateHireJobRequirementRequest, query?: UpdateHireJobRequirementQuery): Promise<void>;
120
+ /**
121
+ * 获取招聘需求信息
122
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_requirement/list_by_id
123
+ */
124
+ listByIdHireJobRequirement(body: ListByIdHireJobRequirementRequest, query?: ListByIdHireJobRequirementQuery): Promise<ListByIdHireJobRequirementResponse>;
125
+ /**
126
+ * 获取招聘需求列表
127
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_requirement/list
128
+ */
129
+ listHireJobRequirement(query?: ListHireJobRequirementQuery): Paginated<JobRequirementDto>;
130
+ /**
131
+ * 删除招聘需求
132
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_requirement/delete
133
+ */
134
+ deleteHireJobRequirement(job_requirement_id: string): Promise<void>;
135
+ /**
136
+ * 获取招聘需求模板列表
137
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_requirement_schema/list
138
+ */
139
+ listHireJobRequirementSchema(query?: Pagination): Paginated<JobRequirementSchema>;
140
+ /**
141
+ * 获取招聘流程信息
142
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job_process/list
143
+ */
144
+ listHireJobProcess(query?: Pagination): Paginated<JobProcesses>;
145
+ /**
146
+ * 获取项目列表
147
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/subject/list
148
+ */
149
+ listHireSubject(query?: ListHireSubjectQuery): Paginated<Subject>;
150
+ /**
151
+ * 获取人才标签信息列表
152
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_tag/list
153
+ */
154
+ listHireTalentTag(query?: ListHireTalentTagQuery): Paginated<TalentTag>;
155
+ /**
156
+ * 获取信息登记表列表
157
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/registration_schema/list
158
+ */
159
+ listHireRegistrationSchema(query?: ListHireRegistrationSchemaQuery): Paginated<RegistrationSchema>;
160
+ /**
161
+ * 获取面试评价表列表
162
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview_feedback_form/list
163
+ */
164
+ listHireInterviewFeedbackForm(query?: ListHireInterviewFeedbackFormQuery): Paginated<InterviewFeedbackForm>;
165
+ /**
166
+ * 获取面试轮次类型列表
167
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview_round_type/list
168
+ */
169
+ listHireInterviewRoundType(query?: ListHireInterviewRoundTypeQuery): Promise<ListHireInterviewRoundTypeResponse>;
170
+ /**
171
+ * 获取面试登记表列表
172
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview_registration_schema/list
173
+ */
174
+ listHireInterviewRegistrationSchema(query?: Pagination): Paginated<InterviewRegistrationSchema>;
175
+ /**
176
+ * 查询面试官信息列表
177
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interviewer/list
178
+ */
179
+ listHireInterviewer(query?: ListHireInterviewerQuery): Paginated<Interviewer>;
180
+ /**
181
+ * 更新面试官信息
182
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interviewer/patch
183
+ */
184
+ patchHireInterviewer(interviewer_id: string, body: PatchHireInterviewerRequest, query?: PatchHireInterviewerQuery): Promise<PatchHireInterviewerResponse>;
185
+ /**
186
+ * 更新 Offer 申请表自定义字段
187
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer_custom_field/update
188
+ */
189
+ updateHireOfferCustomField(offer_custom_field_id: string, body: UpdateHireOfferCustomFieldRequest): Promise<void>;
190
+ /**
191
+ * 获取 Offer 申请表信息
192
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer_application_form/get
193
+ */
194
+ getHireOfferApplicationForm(offer_application_form_id: string): Promise<GetHireOfferApplicationFormResponse>;
195
+ /**
196
+ * 获取 Offer 申请表列表
197
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer_application_form/list
198
+ */
199
+ listHireOfferApplicationForm(query?: Pagination): Paginated<OfferApplyForm>;
200
+ /**
201
+ * 查询人才内推信息
202
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral/search
203
+ */
204
+ searchHireReferral(body: SearchHireReferralRequest, query?: SearchHireReferralQuery): Promise<SearchHireReferralResponse>;
205
+ /**
206
+ * 获取内推官网下职位广告列表
207
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_website-job_post/list
208
+ */
209
+ listHireReferralWebsiteJobPost(query?: ListHireReferralWebsiteJobPostQuery): Paginated<PortalJobPost>;
210
+ /**
211
+ * 获取内推官网下职位广告详情
212
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_website-job_post/get
213
+ */
214
+ getHireReferralWebsiteJobPost(job_post_id: string, query?: GetHireReferralWebsiteJobPostQuery): Promise<GetHireReferralWebsiteJobPostResponse>;
215
+ /**
216
+ * 获取内推信息
217
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral/get_by_application
218
+ */
219
+ getByApplicationHireReferral(query?: GetByApplicationHireReferralQuery): Promise<GetByApplicationHireReferralResponse>;
220
+ /**
221
+ * 新建招聘官网推广渠道
222
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-channel/create
223
+ */
224
+ createHireWebsiteChannel(website_id: string, body: CreateHireWebsiteChannelRequest): Promise<CreateHireWebsiteChannelResponse>;
225
+ /**
226
+ * 删除招聘官网推广渠道
227
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-channel/delete
228
+ */
229
+ deleteHireWebsiteChannel(website_id: string, channel_id: string): Promise<void>;
230
+ /**
231
+ * 更新招聘官网推广渠道
232
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-channel/update
233
+ */
234
+ updateHireWebsiteChannel(website_id: string, channel_id: string, body: UpdateHireWebsiteChannelRequest): Promise<UpdateHireWebsiteChannelResponse>;
235
+ /**
236
+ * 获取招聘官网推广渠道列表
237
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-channel/list
238
+ */
239
+ listHireWebsiteChannel(website_id: string, query?: Pagination): Paginated<WebsiteChannelInfo, 'website_channel_list'>;
240
+ /**
241
+ * 新建招聘官网用户
242
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-site_user/create
243
+ */
244
+ createHireWebsiteSiteUser(website_id: string, body: CreateHireWebsiteSiteUserRequest): Promise<CreateHireWebsiteSiteUserResponse>;
245
+ /**
246
+ * 获取招聘官网下职位广告详情
247
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-job_post/get
248
+ */
249
+ getHireWebsiteJobPost(website_id: string, job_post_id: string, query?: GetHireWebsiteJobPostQuery): Promise<GetHireWebsiteJobPostResponse>;
250
+ /**
251
+ * 搜索招聘官网下的职位广告列表
252
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-job_post/search
253
+ */
254
+ searchHireWebsiteJobPost(website_id: string, body: SearchHireWebsiteJobPostRequest, query?: SearchHireWebsiteJobPostQuery): Paginated<WebsiteJobPost>;
255
+ /**
256
+ * 获取招聘官网下的职位广告列表
257
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-job_post/list
258
+ */
259
+ listHireWebsiteJobPost(website_id: string, query?: ListHireWebsiteJobPostQuery): Paginated<WebsiteJobPost>;
260
+ /**
261
+ * 新建招聘官网投递
262
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-delivery/create_by_resume
263
+ */
264
+ createByResumeHireWebsiteDelivery(website_id: string, body: CreateByResumeHireWebsiteDeliveryRequest, query?: CreateByResumeHireWebsiteDeliveryQuery): Promise<CreateByResumeHireWebsiteDeliveryResponse>;
265
+ /**
266
+ * 根据简历附件创建招聘官网投递任务
267
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-delivery/create_by_attachment
268
+ */
269
+ createByAttachmentHireWebsiteDelivery(website_id: string, body: CreateByAttachmentHireWebsiteDeliveryRequest): Promise<CreateByAttachmentHireWebsiteDeliveryResponse>;
270
+ /**
271
+ * 获取招聘官网投递任务结果
272
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-delivery_task/get
273
+ */
274
+ getHireWebsiteDeliveryTask(website_id: string, delivery_task_id: string): Promise<GetHireWebsiteDeliveryTaskResponse>;
275
+ /**
276
+ * 获取招聘官网列表
277
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website/list
278
+ */
279
+ listHireWebsite(query?: Pagination): Paginated<Website>;
280
+ /**
281
+ * 设置猎头保护期
282
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/agency/protect
283
+ */
284
+ protectHireAgency(body: ProtectHireAgencyRequest, query?: ProtectHireAgencyQuery): Promise<void>;
285
+ /**
286
+ * 获取猎头供应商信息
287
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/agency/get
288
+ */
289
+ getHireAgency(agency_id: string, query?: GetHireAgencyQuery): Promise<GetHireAgencyResponse>;
290
+ /**
291
+ * 查询猎头保护期信息
292
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/agency/protect_search
293
+ */
294
+ protectSearchHireAgency(body: ProtectSearchHireAgencyRequest): Promise<ProtectSearchHireAgencyResponse>;
295
+ /**
296
+ * 查询猎头供应商信息
297
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/agency/query
298
+ */
299
+ queryHireAgency(query?: QueryHireAgencyQuery): Promise<QueryHireAgencyResponse>;
300
+ /**
301
+ * 查询猎头供应商下猎头列表
302
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/agency/get_agency_account
303
+ */
304
+ getAgencyAccountHireAgency(body: GetAgencyAccountHireAgencyRequest, query?: GetAgencyAccountHireAgencyQuery): Paginated<AgencyAccount>;
305
+ /**
306
+ * 搜索猎头供应商列表
307
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/agency/batch_query
308
+ */
309
+ batchQueryHireAgency(body: BatchQueryHireAgencyRequest, query?: BatchQueryHireAgencyQuery): Paginated<AgencySupplier>;
310
+ /**
311
+ * 禁用/取消禁用猎头
312
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/agency/operate_agency_account
313
+ */
314
+ operateAgencyAccountHireAgency(body: OperateAgencyAccountHireAgencyRequest): Promise<void>;
315
+ /**
316
+ * 创建人才外部信息
317
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent-external_info/create
318
+ */
319
+ createHireTalentExternalInfo(talent_id: string, body: CreateHireTalentExternalInfoRequest): Promise<CreateHireTalentExternalInfoResponse>;
320
+ /**
321
+ * 更新人才外部信息
322
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent-external_info/update
323
+ */
324
+ updateHireTalentExternalInfo(talent_id: string, body: UpdateHireTalentExternalInfoRequest): Promise<UpdateHireTalentExternalInfoResponse>;
325
+ /**
326
+ * 创建外部投递
327
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_application/create
328
+ */
329
+ createHireExternalApplication(body: CreateHireExternalApplicationRequest): Promise<CreateHireExternalApplicationResponse>;
330
+ /**
331
+ * 更新外部投递
332
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_application/update
333
+ */
334
+ updateHireExternalApplication(external_application_id: string, body: UpdateHireExternalApplicationRequest): Promise<UpdateHireExternalApplicationResponse>;
335
+ /**
336
+ * 查询外部投递列表
337
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_application/list
338
+ */
339
+ listHireExternalApplication(query?: ListHireExternalApplicationQuery): Paginated<ExternalApplication>;
340
+ /**
341
+ * 删除外部投递
342
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_application/delete
343
+ */
344
+ deleteHireExternalApplication(external_application_id: string, query?: DeleteHireExternalApplicationQuery): Promise<DeleteHireExternalApplicationResponse>;
345
+ /**
346
+ * 创建外部面试
347
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_interview/create
348
+ */
349
+ createHireExternalInterview(body: CreateHireExternalInterviewRequest): Promise<CreateHireExternalInterviewResponse>;
350
+ /**
351
+ * 更新外部面试
352
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_interview/update
353
+ */
354
+ updateHireExternalInterview(external_interview_id: string, body: UpdateHireExternalInterviewRequest): Promise<UpdateHireExternalInterviewResponse>;
355
+ /**
356
+ * 查询外部面试列表
357
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_interview/batch_query
358
+ */
359
+ batchQueryHireExternalInterview(body: BatchQueryHireExternalInterviewRequest, query?: BatchQueryHireExternalInterviewQuery): Paginated<ExternalInterview>;
360
+ /**
361
+ * 删除外部面试
362
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_interview/delete
363
+ */
364
+ deleteHireExternalInterview(external_interview_id: string): Promise<void>;
365
+ /**
366
+ * 创建外部面评
367
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_interview_assessment/create
368
+ */
369
+ createHireExternalInterviewAssessment(body: CreateHireExternalInterviewAssessmentRequest): Promise<CreateHireExternalInterviewAssessmentResponse>;
370
+ /**
371
+ * 更新外部面评
372
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_interview_assessment/patch
373
+ */
374
+ patchHireExternalInterviewAssessment(external_interview_assessment_id: string, body: PatchHireExternalInterviewAssessmentRequest): Promise<PatchHireExternalInterviewAssessmentResponse>;
375
+ /**
376
+ * 创建外部 Offer
377
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_offer/create
378
+ */
379
+ createHireExternalOffer(body: CreateHireExternalOfferRequest): Promise<CreateHireExternalOfferResponse>;
380
+ /**
381
+ * 更新外部 Offer
382
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_offer/update
383
+ */
384
+ updateHireExternalOffer(external_offer_id: string, body: UpdateHireExternalOfferRequest): Promise<UpdateHireExternalOfferResponse>;
385
+ /**
386
+ * 查询外部 Offer 列表
387
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_offer/batch_query
388
+ */
389
+ batchQueryHireExternalOffer(body: BatchQueryHireExternalOfferRequest, query?: BatchQueryHireExternalOfferQuery): Paginated<ExternalOffer>;
390
+ /**
391
+ * 删除外部 Offer
392
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_offer/delete
393
+ */
394
+ deleteHireExternalOffer(external_offer_id: string): Promise<void>;
395
+ /**
396
+ * 创建外部背调
397
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_background_check/create
398
+ */
399
+ createHireExternalBackgroundCheck(body: CreateHireExternalBackgroundCheckRequest): Promise<CreateHireExternalBackgroundCheckResponse>;
400
+ /**
401
+ * 更新外部背调
402
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_background_check/update
403
+ */
404
+ updateHireExternalBackgroundCheck(external_background_check_id: string, body: UpdateHireExternalBackgroundCheckRequest): Promise<UpdateHireExternalBackgroundCheckResponse>;
405
+ /**
406
+ * 查询外部背调列表
407
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_background_check/batch_query
408
+ */
409
+ batchQueryHireExternalBackgroundCheck(body: BatchQueryHireExternalBackgroundCheckRequest, query?: BatchQueryHireExternalBackgroundCheckQuery): Paginated<ExternalBackgroundCheck>;
410
+ /**
411
+ * 删除外部背调
412
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_background_check/delete
413
+ */
414
+ deleteHireExternalBackgroundCheck(external_background_check_id: string): Promise<void>;
415
+ /**
416
+ * 导入外部内推奖励
417
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_referral_reward/create
418
+ */
419
+ createHireExternalReferralReward(body: CreateHireExternalReferralRewardRequest, query?: CreateHireExternalReferralRewardQuery): Promise<CreateHireExternalReferralRewardResponse>;
420
+ /**
421
+ * 删除外部内推奖励
422
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/external_referral_reward/delete
423
+ */
424
+ deleteHireExternalReferralReward(external_referral_reward_id: string): Promise<void>;
425
+ /**
426
+ * 批量加入/移除人才库中人才
427
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_pool/batch_change_talent_pool
428
+ */
429
+ batchChangeTalentPoolHireTalentPool(talent_pool_id: string, body: BatchChangeTalentPoolHireTalentPoolRequest): Promise<void>;
430
+ /**
431
+ * 获取人才库列表
432
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_pool/search
433
+ */
434
+ searchHireTalentPool(query?: SearchHireTalentPoolQuery): Paginated<TalentPool>;
435
+ /**
436
+ * 将人才加入人才库
437
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_pool/move_talent
438
+ */
439
+ moveTalentHireTalentPool(talent_pool_id: string, body: MoveTalentHireTalentPoolRequest): Promise<MoveTalentHireTalentPoolResponse>;
440
+ /**
441
+ * 操作人才标签
442
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/tag
443
+ */
444
+ tagHireTalent(talent_id: string, body: TagHireTalentRequest): Promise<void>;
445
+ /**
446
+ * 创建人才
447
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/combined_create
448
+ */
449
+ combinedCreateHireTalent(body: CombinedCreateHireTalentRequest, query?: CombinedCreateHireTalentQuery): Promise<CombinedCreateHireTalentResponse>;
450
+ /**
451
+ * 更新人才
452
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/combined_update
453
+ */
454
+ combinedUpdateHireTalent(body: CombinedUpdateHireTalentRequest, query?: CombinedUpdateHireTalentQuery): Promise<CombinedUpdateHireTalentResponse>;
455
+ /**
456
+ * 将人才加入指定文件夹
457
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/add_to_folder
458
+ */
459
+ addToFolderHireTalent(body: AddToFolderHireTalentRequest): Promise<AddToFolderHireTalentResponse>;
460
+ /**
461
+ * 将人才从指定文件夹移除
462
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/remove_to_folder
463
+ */
464
+ removeToFolderHireTalent(body: RemoveToFolderHireTalentRequest): Promise<RemoveToFolderHireTalentResponse>;
465
+ /**
466
+ * 获取人才文件夹列表
467
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_folder/list
468
+ */
469
+ listHireTalentFolder(query?: ListHireTalentFolderQuery): Paginated<TalentFolderForList>;
470
+ /**
471
+ * 批量获取人才ID
472
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/batch_get_id
473
+ */
474
+ batchGetIdHireTalent(body: BatchGetIdHireTalentRequest): Promise<BatchGetIdHireTalentResponse>;
475
+ /**
476
+ * 获取人才列表
477
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/list
478
+ */
479
+ listHireTalent(query?: ListHireTalentQuery): Paginated<Talent>;
480
+ /**
481
+ * 获取人才字段
482
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_object/query
483
+ */
484
+ queryHireTalentObject(): Promise<QueryHireTalentObjectResponse>;
485
+ /**
486
+ * 获取人才信息
487
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/get
488
+ */
489
+ getHireTalent(talent_id: string, query?: GetHireTalentQuery): Promise<GetHireTalentResponse>;
490
+ /**
491
+ * 获取人才详情
492
+ * @see https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/hire-v2/talent/get
493
+ */
494
+ getHireTalent(talent_id: string, query?: GetHireTalentQuery): Promise<GetHireTalentResponse>;
495
+ /**
496
+ * 更新人才在职状态
497
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/onboard_status
498
+ */
499
+ onboardStatusHireTalent(talent_id: string, body: OnboardStatusHireTalentRequest): Promise<void>;
500
+ /**
501
+ * 加入/移除屏蔽名单
502
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_blocklist/change_talent_block
503
+ */
504
+ changeTalentBlockHireTalentBlocklist(body: ChangeTalentBlockHireTalentBlocklistRequest): Promise<void>;
505
+ /**
506
+ * 获取投递详情
507
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/get_detail
508
+ */
509
+ getDetailHireApplication(application_id: string, query?: GetDetailHireApplicationQuery): Promise<GetDetailHireApplicationResponse>;
510
+ /**
511
+ * 恢复投递
512
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/recover
513
+ */
514
+ recoverHireApplication(application_id: string): Promise<void>;
515
+ /**
516
+ * 创建投递
517
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/create
518
+ */
519
+ createHireApplication(body: CreateHireApplicationRequest, query?: CreateHireApplicationQuery): Promise<CreateHireApplicationResponse>;
520
+ /**
521
+ * 终止投递
522
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/terminate
523
+ */
524
+ terminateHireApplication(application_id: string, body: TerminateHireApplicationRequest): Promise<void>;
525
+ /**
526
+ * 转移投递阶段
527
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/transfer_stage
528
+ */
529
+ transferStageHireApplication(application_id: string, body: TransferStageHireApplicationRequest): Promise<void>;
530
+ /**
531
+ * 获取终止投递原因
532
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/termination_reason/list
533
+ */
534
+ listHireTerminationReason(query?: Pagination): Paginated<TerminationReason>;
535
+ /**
536
+ * 获取投递信息
537
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/get
538
+ */
539
+ getHireApplication(application_id: string, query?: GetHireApplicationQuery): Promise<GetHireApplicationResponse>;
540
+ /**
541
+ * 获取投递列表
542
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/list
543
+ */
544
+ listHireApplication(query?: ListHireApplicationQuery): Paginated<string>;
545
+ /**
546
+ * 获取申请表附加信息
547
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/diversity_inclusion/search
548
+ */
549
+ searchHireDiversityInclusion(body: SearchHireDiversityInclusionRequest): Promise<SearchHireDiversityInclusionResponse>;
550
+ /**
551
+ * 获取简历评估信息列表
552
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/evaluation/list
553
+ */
554
+ listHireEvaluation(query?: ListHireEvaluationQuery): Paginated<Evaluation>;
555
+ /**
556
+ * 添加笔试结果
557
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/exam/create
558
+ */
559
+ createHireExam(body: CreateHireExamRequest, query?: CreateHireExamQuery): Promise<CreateHireExamResponse>;
560
+ /**
561
+ * 获取笔试列表
562
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/test/search
563
+ */
564
+ searchHireTest(body: SearchHireTestRequest, query?: SearchHireTestQuery): Paginated<Test>;
565
+ /**
566
+ * 获取面试信息
567
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview/list
568
+ */
569
+ listHireInterview(query?: ListHireInterviewQuery): Paginated<InterviewExtend>;
570
+ /**
571
+ * 获取人才面试信息
572
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview/get_by_talent
573
+ */
574
+ getByTalentHireInterview(query?: GetByTalentHireInterviewQuery): Promise<GetByTalentHireInterviewResponse>;
575
+ /**
576
+ * 获取面试评价详细信息
577
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview_record/get
578
+ */
579
+ getHireInterviewRecord(interview_record_id: string, query?: GetHireInterviewRecordQuery): Promise<GetHireInterviewRecordResponse>;
580
+ /**
581
+ * 获取面试评价详细信息(新版)
582
+ * @see https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/hire-v2/interview_record/get
583
+ */
584
+ getHireInterviewRecord(interview_record_id: string, query?: GetHireInterviewRecordQuery): Promise<GetHireInterviewRecordResponse>;
585
+ /**
586
+ * 批量获取面试评价详细信息
587
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview_record/list
588
+ */
589
+ listHireInterviewRecord(query?: ListHireInterviewRecordQuery): Paginated<InterviewRecord>;
590
+ /**
591
+ * 批量获取面试评价详细信息(新版)
592
+ * @see https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/hire-v2/interview_record/list
593
+ */
594
+ listHireInterviewRecord(query?: ListHireInterviewRecordQuery): Paginated<InterviewRecord>;
595
+ /**
596
+ * 获取面试记录附件
597
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview_record-attachment/get
598
+ */
599
+ getHireInterviewRecordAttachment(query?: GetHireInterviewRecordAttachmentQuery): Promise<GetHireInterviewRecordAttachmentResponse>;
600
+ /**
601
+ * 获取面试速记明细
602
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/minutes/get
603
+ */
604
+ getHireMinutes(query?: GetHireMinutesQuery): Promise<GetHireMinutesResponse>;
605
+ /**
606
+ * 获取面试满意度问卷列表
607
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/questionnaire/list
608
+ */
609
+ listHireQuestionnaire(query?: ListHireQuestionnaireQuery): Paginated<Questionnaire>;
610
+ /**
611
+ * 创建 Offer
612
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer/create
613
+ */
614
+ createHireOffer(body: CreateHireOfferRequest, query?: CreateHireOfferQuery): Promise<CreateHireOfferResponse>;
615
+ /**
616
+ * 更新 Offer 信息
617
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer/update
618
+ */
619
+ updateHireOffer(offer_id: string, body: UpdateHireOfferRequest, query?: UpdateHireOfferQuery): Promise<UpdateHireOfferResponse>;
620
+ /**
621
+ * 获取 Offer 信息
622
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/offer
623
+ */
624
+ offerHireApplication(application_id: string, query?: OfferHireApplicationQuery): Promise<OfferHireApplicationResponse>;
625
+ /**
626
+ * 获取 Offer 详情
627
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer/get
628
+ */
629
+ getHireOffer(offer_id: string, query?: GetHireOfferQuery): Promise<GetHireOfferResponse>;
630
+ /**
631
+ * 获取 Offer 列表
632
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer/list
633
+ */
634
+ listHireOffer(query?: ListHireOfferQuery): Paginated<OfferListInfo>;
635
+ /**
636
+ * 更新 Offer 状态
637
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer/offer_status
638
+ */
639
+ offerStatusHireOffer(offer_id: string, body: OfferStatusHireOfferRequest): Promise<void>;
640
+ /**
641
+ * 更新实习 Offer 入/离职状态
642
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer/intern_offer_status
643
+ */
644
+ internOfferStatusHireOffer(offer_id: string, body: InternOfferStatusHireOfferRequest): Promise<InternOfferStatusHireOfferResponse>;
645
+ /**
646
+ * 获取背调信息列表
647
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/background_check_order/list
648
+ */
649
+ listHireBackgroundCheckOrder(query?: ListHireBackgroundCheckOrderQuery): Paginated<BackgroundCheckOrder>;
650
+ /**
651
+ * 创建三方协议
652
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/tripartite_agreement/create
653
+ */
654
+ createHireTripartiteAgreement(body: CreateHireTripartiteAgreementRequest): Promise<CreateHireTripartiteAgreementResponse>;
655
+ /**
656
+ * 获取三方协议
657
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/tripartite_agreement/list
658
+ */
659
+ listHireTripartiteAgreement(query?: ListHireTripartiteAgreementQuery): Paginated<TripartiteAgreementInfo>;
660
+ /**
661
+ * 更新三方协议
662
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/tripartite_agreement/update
663
+ */
664
+ updateHireTripartiteAgreement(tripartite_agreement_id: string, body: UpdateHireTripartiteAgreementRequest): Promise<UpdateHireTripartiteAgreementResponse>;
665
+ /**
666
+ * 删除三方协议
667
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/tripartite_agreement/delete
668
+ */
669
+ deleteHireTripartiteAgreement(tripartite_agreement_id: string): Promise<void>;
670
+ /**
671
+ * 更新 e-HR 导入任务结果
672
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/ehr_import_task/patch
673
+ */
674
+ patchHireEhrImportTask(ehr_import_task_id: string, body: PatchHireEhrImportTaskRequest): Promise<void>;
675
+ /**
676
+ * 操作候选人入职
677
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/transfer_onboard
678
+ */
679
+ transferOnboardHireApplication(application_id: string, body: TransferOnboardHireApplicationRequest, query?: TransferOnboardHireApplicationQuery): Promise<TransferOnboardHireApplicationResponse>;
680
+ /**
681
+ * 更新员工状态
682
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/employee/patch
683
+ */
684
+ patchHireEmployee(employee_id: string, body: PatchHireEmployeeRequest, query?: PatchHireEmployeeQuery): Promise<PatchHireEmployeeResponse>;
685
+ /**
686
+ * 通过投递 ID 获取入职信息
687
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/employee/get_by_application
688
+ */
689
+ getByApplicationHireEmployee(query?: GetByApplicationHireEmployeeQuery): Promise<GetByApplicationHireEmployeeResponse>;
690
+ /**
691
+ * 通过员工 ID 获取入职信息
692
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/employee/get
693
+ */
694
+ getHireEmployee(employee_id: string, query?: GetHireEmployeeQuery): Promise<GetHireEmployeeResponse>;
695
+ /**
696
+ * 批量获取待办事项
697
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/todo/list
698
+ */
699
+ listHireTodo(query?: ListHireTodoQuery): Paginated<Todo>;
700
+ /**
701
+ * 获取简历评估任务列表
702
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/evaluation_task/list
703
+ */
704
+ listHireEvaluationTask(query?: ListHireEvaluationTaskQuery): Paginated<EvaluationTask>;
705
+ /**
706
+ * 获取笔试阅卷任务列表
707
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/exam_marking_task/list
708
+ */
709
+ listHireExamMarkingTask(query?: ListHireExamMarkingTaskQuery): Paginated<ExamMarkingTask>;
710
+ /**
711
+ * 获取面试任务列表
712
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/interview_task/list
713
+ */
714
+ listHireInterviewTask(query?: ListHireInterviewTaskQuery): Paginated<InterviewTask>;
715
+ /**
716
+ * 创建备注
717
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/note/create
718
+ */
719
+ createHireNote(body: CreateHireNoteRequest, query?: CreateHireNoteQuery): Promise<CreateHireNoteResponse>;
720
+ /**
721
+ * 更新备注
722
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/note/patch
723
+ */
724
+ patchHireNote(note_id: string, body: PatchHireNoteRequest, query?: PatchHireNoteQuery): Promise<PatchHireNoteResponse>;
725
+ /**
726
+ * 获取备注
727
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/note/get
728
+ */
729
+ getHireNote(note_id: string, query?: GetHireNoteQuery): Promise<GetHireNoteResponse>;
730
+ /**
731
+ * 获取备注列表
732
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/note/list
733
+ */
734
+ listHireNote(query?: ListHireNoteQuery): Paginated<Note>;
735
+ /**
736
+ * 删除备注
737
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/note/delete
738
+ */
739
+ deleteHireNote(note_id: string): Promise<void>;
740
+ /**
741
+ * 获取简历来源列表
742
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/resume_source/list
743
+ */
744
+ listHireResumeSource(query?: Pagination): Paginated<ResumeSource>;
745
+ /**
746
+ * 创建账号自定义字段
747
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_account_custom_field/create
748
+ */
749
+ createHireEcoAccountCustomField(body: CreateHireEcoAccountCustomFieldRequest): Promise<void>;
750
+ /**
751
+ * 更新账号自定义字段
752
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_account_custom_field/batch_update
753
+ */
754
+ batchUpdateHireEcoAccountCustomField(body: BatchUpdateHireEcoAccountCustomFieldRequest): Promise<void>;
755
+ /**
756
+ * 删除账号自定义字段
757
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_account_custom_field/batch_delete
758
+ */
759
+ batchDeleteHireEcoAccountCustomField(body: BatchDeleteHireEcoAccountCustomFieldRequest): Promise<void>;
760
+ /**
761
+ * 创建背调自定义字段
762
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check_custom_field/create
763
+ */
764
+ createHireEcoBackgroundCheckCustomField(body: CreateHireEcoBackgroundCheckCustomFieldRequest): Promise<void>;
765
+ /**
766
+ * 更新背调自定义字段
767
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check_custom_field/batch_update
768
+ */
769
+ batchUpdateHireEcoBackgroundCheckCustomField(body: BatchUpdateHireEcoBackgroundCheckCustomFieldRequest): Promise<void>;
770
+ /**
771
+ * 删除背调自定义字段
772
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check_custom_field/batch_delete
773
+ */
774
+ batchDeleteHireEcoBackgroundCheckCustomField(body: BatchDeleteHireEcoBackgroundCheckCustomFieldRequest): Promise<void>;
775
+ /**
776
+ * 创建背调套餐和附加调查项
777
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check_package/create
778
+ */
779
+ createHireEcoBackgroundCheckPackage(body: CreateHireEcoBackgroundCheckPackageRequest): Promise<void>;
780
+ /**
781
+ * 更新背调套餐和附加调查项
782
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check_package/batch_update
783
+ */
784
+ batchUpdateHireEcoBackgroundCheckPackage(body: BatchUpdateHireEcoBackgroundCheckPackageRequest): Promise<void>;
785
+ /**
786
+ * 删除背调套餐和附加调查项
787
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check_package/batch_delete
788
+ */
789
+ batchDeleteHireEcoBackgroundCheckPackage(body: BatchDeleteHireEcoBackgroundCheckPackageRequest): Promise<void>;
790
+ /**
791
+ * 更新背调订单进度
792
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check/update_progress
793
+ */
794
+ updateProgressHireEcoBackgroundCheck(body: UpdateProgressHireEcoBackgroundCheckRequest): Promise<void>;
795
+ /**
796
+ * 回传背调订单的最终结果
797
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check/update_result
798
+ */
799
+ updateResultHireEcoBackgroundCheck(body: UpdateResultHireEcoBackgroundCheckRequest): Promise<void>;
800
+ /**
801
+ * 终止背调订单
802
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_background_check/cancel
803
+ */
804
+ cancelHireEcoBackgroundCheck(body: CancelHireEcoBackgroundCheckRequest): Promise<void>;
805
+ /**
806
+ * 创建试卷列表
807
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_exam_paper/create
808
+ */
809
+ createHireEcoExamPaper(body: CreateHireEcoExamPaperRequest): Promise<void>;
810
+ /**
811
+ * 更新试卷列表
812
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_exam_paper/batch_update
813
+ */
814
+ batchUpdateHireEcoExamPaper(body: BatchUpdateHireEcoExamPaperRequest): Promise<void>;
815
+ /**
816
+ * 删除试卷列表
817
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_exam_paper/batch_delete
818
+ */
819
+ batchDeleteHireEcoExamPaper(body: BatchDeleteHireEcoExamPaperRequest): Promise<void>;
820
+ /**
821
+ * 回传笔试安排结果
822
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_exam/login_info
823
+ */
824
+ loginInfoHireEcoExam(exam_id: string, body: LoginInfoHireEcoExamRequest): Promise<void>;
825
+ /**
826
+ * 回传笔试结果
827
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/eco_exam/update_result
828
+ */
829
+ updateResultHireEcoExam(exam_id: string, body: UpdateResultHireEcoExamRequest): Promise<void>;
830
+ /**
831
+ * 启用内推账户
832
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/enable
833
+ */
834
+ enableHireReferralAccount(body: EnableHireReferralAccountRequest, query?: EnableHireReferralAccountQuery): Promise<EnableHireReferralAccountResponse>;
835
+ /**
836
+ * 查询内推账户
837
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/get_account_assets
838
+ */
839
+ getAccountAssetsHireReferralAccount(query?: GetAccountAssetsHireReferralAccountQuery): Promise<GetAccountAssetsHireReferralAccountResponse>;
840
+ /**
841
+ * 注册内推账户
842
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/create
843
+ */
844
+ createHireReferralAccount(body: CreateHireReferralAccountRequest, query?: CreateHireReferralAccountQuery): Promise<CreateHireReferralAccountResponse>;
845
+ /**
846
+ * 停用内推账户
847
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/deactivate
848
+ */
849
+ deactivateHireReferralAccount(referral_account_id: string, query?: DeactivateHireReferralAccountQuery): Promise<DeactivateHireReferralAccountResponse>;
850
+ /**
851
+ * 全额提取内推账户余额
852
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/withdraw
853
+ */
854
+ withdrawHireReferralAccount(referral_account_id: string, body: WithdrawHireReferralAccountRequest): Promise<WithdrawHireReferralAccountResponse>;
855
+ /**
856
+ * 内推账户提现数据对账
857
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/referral_account/reconciliation
858
+ */
859
+ reconciliationHireReferralAccount(body: ReconciliationHireReferralAccountRequest): Promise<ReconciliationHireReferralAccountResponse>;
860
+ /**
861
+ * 创建附件
862
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uIDN1YjLyQTN24iM0UjN/create_attachment
863
+ */
864
+ createHireAttachment(): Promise<CreateHireAttachmentResponse>;
865
+ /**
866
+ * 获取附件信息
867
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/attachment/get
868
+ */
869
+ getHireAttachment(attachment_id: string, query?: GetHireAttachmentQuery): Promise<GetHireAttachmentResponse>;
870
+ /**
871
+ * 获取附件 PDF 格式下载链接
872
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/attachment/preview
873
+ */
874
+ previewHireAttachment(attachment_id: string): Promise<PreviewHireAttachmentResponse>;
875
+ /**
876
+ * 获取面试记录列表
877
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application-interview/list
878
+ */
879
+ listHireApplicationInterview(application_id: string, query?: ListHireApplicationInterviewQuery): Paginated<Interview>;
880
+ /**
881
+ * 查询人才操作记录
882
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent/talent_operation_log/search
883
+ */
884
+ searchHireTalentOperationLog(body: SearchHireTalentOperationLogRequest, query?: SearchHireTalentOperationLogQuery): Paginated<TalentOperationLog>;
885
+ /**
886
+ * 获取职位上的招聘人员信息
887
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/job-manager/get
888
+ */
889
+ getHireJobManager(job_id: string, manager_id: string, query?: GetHireJobManagerQuery): Promise<GetHireJobManagerResponse>;
890
+ /**
891
+ * 获取 Offer 申请表详细信息
892
+ * @see https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/offer_schema/get
893
+ */
894
+ getHireOfferSchema(offer_schema_id: string): Promise<GetHireOfferSchemaResponse>;
895
+ }
896
+ }
897
+ export interface QueryHireLocationRequest {
898
+ /** 地址码列表,最大长度不超过100 */
899
+ code_list?: string[];
900
+ /** 地址类型 */
901
+ location_type: 1 | 2 | 3 | 4;
902
+ }
903
+ export interface ListHireLocationQuery extends Pagination {
904
+ /** 地址类型 */
905
+ usage: 'position_location' | 'interview_location' | 'store_location';
906
+ }
907
+ export interface ListHireUserRoleQuery extends Pagination {
908
+ /** 用户 ID */
909
+ user_id?: string;
910
+ /** 角色 ID */
911
+ role_id?: string;
912
+ /** 最早更新时间,毫秒级时间戳 */
913
+ update_start_time?: string;
914
+ /** 最晚更新时间,毫秒级时间戳 */
915
+ update_end_time?: string;
916
+ /** 此次调用中使用的用户ID的类型 */
917
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
918
+ }
919
+ export interface CombinedCreateHireJobRequest {
920
+ /** 职位编号,可传入职位的「职位编号」、「职位 ID」或者「职位序号」,将以传入的参数作为职位编号,以便双方系统的数据映射 */
921
+ code?: string;
922
+ /** 工作年限 */
923
+ experience?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
924
+ /** 到期日期,请使用 */
925
+ expiry_time?: number;
926
+ /** 自定义字段 */
927
+ customized_data_list?: CombinedJobObjectValueMap[];
928
+ /** 最低职级,枚举通过接口「获取职级列表」获取 */
929
+ min_level_id?: string;
930
+ /** 最低薪资 */
931
+ min_salary?: number;
932
+ /** 职位名称 */
933
+ title: string;
934
+ /** 职位负责人,仅一位,可通过用户相关接口获取用户 id */
935
+ job_managers: JobManager;
936
+ /** 招聘流程,枚举通过接口「获取招聘流程信息」获取 */
937
+ job_process_id: string;
938
+ /** 职位流程类型 */
939
+ process_type: 1 | 2;
940
+ /** 项目,枚举通过「获取项目列表」获取 */
941
+ subject_id?: string;
942
+ /** 职能分类,通过「获取职能分类」获取 */
943
+ job_function_id?: string;
944
+ /** 部门,枚举通过接口「获取部门信息列表」获取 */
945
+ department_id: string;
946
+ /** 招聘数量 */
947
+ head_count?: number;
948
+ /** 是否长期有效 */
949
+ is_never_expired: boolean;
950
+ /** 最高薪资 */
951
+ max_salary?: number;
952
+ /** 职位要求 */
953
+ requirement?: string;
954
+ /** 职位描述 */
955
+ description?: string;
956
+ /** 职位亮点 */
957
+ highlight_list?: string[];
958
+ /** 职位类别 */
959
+ job_type_id: string;
960
+ /** 最高职级,枚举通过接口「获取职级列表」获取 */
961
+ max_level_id?: string;
962
+ /** 雇佣类型 */
963
+ recruitment_type_id: string;
964
+ /** 学历要求 */
965
+ required_degree?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 20;
966
+ /** 序列 */
967
+ job_category_id?: string;
968
+ /** 工作地点,枚举通过接口「获取地址列表」获取,选择地点用途为「职位地址」 */
969
+ address_id_list?: string[];
970
+ /** 职位属性,1是实体职位,2是虚拟职位 */
971
+ job_attribute?: 1 | 2;
972
+ /** 到期日期的毫秒时间戳 */
973
+ expiry_timestamp?: string;
974
+ /** 面试登记表ID */
975
+ interview_registration_schema_id?: string;
976
+ /** 入职登记表ID */
977
+ onboard_registration_schema_id?: string;
978
+ /** 目标专业ID List */
979
+ target_major_id_list?: string[];
980
+ /** 官网申请表ID */
981
+ portal_website_apply_form_schema_id?: string;
982
+ }
983
+ export interface CombinedCreateHireJobQuery {
984
+ /** 用户 ID 类型 */
985
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
986
+ /** 此次调用中使用的部门 ID 的类型 */
987
+ department_id_type?: 'open_department_id' | 'department_id';
988
+ /** 此次调用中使用的「职级 ID」的类型 */
989
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
990
+ /** 此次调用中使用的「序列 ID」的类型 */
991
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
992
+ }
993
+ export interface CombinedUpdateHireJobRequest {
994
+ /** 职位 ID */
995
+ id?: string;
996
+ /** 工作年限 */
997
+ experience?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
998
+ /** 到期日期,请使用 */
999
+ expiry_time?: number;
1000
+ /** 自定义字段 */
1001
+ customized_data_list?: CombinedJobObjectValueMap[];
1002
+ /** 最低职级,枚举通过接口「获取职级列表」获取 */
1003
+ min_level_id?: string;
1004
+ /** 最低薪资 */
1005
+ min_salary?: number;
1006
+ /** 职位名称 */
1007
+ title?: string;
1008
+ /** 职位负责人,仅一位,可通过用户相关接口获取用户 id */
1009
+ job_managers: JobManager;
1010
+ /** 招聘流程,枚举通过接口「获取招聘流程信息」获取 */
1011
+ job_process_id?: string;
1012
+ /** 项目,枚举通过「获取项目列表」获取 */
1013
+ subject_id?: string;
1014
+ /** 职能分类,通过「获取职能分类」获取 */
1015
+ job_function_id?: string;
1016
+ /** 部门,枚举通过接口「获取部门信息列表」获取 */
1017
+ department_id?: string;
1018
+ /** 招聘数量 */
1019
+ head_count?: number;
1020
+ /** 是否长期有效 */
1021
+ is_never_expired: boolean;
1022
+ /** 最高薪资 */
1023
+ max_salary?: number;
1024
+ /** 职位要求 */
1025
+ requirement?: string;
1026
+ /** 职位描述 */
1027
+ description?: string;
1028
+ /** 职位亮点 */
1029
+ highlight_list?: string[];
1030
+ /** 职位类别 */
1031
+ job_type_id: string;
1032
+ /** 最高职级,枚举通过接口「获取职级列表」获取 */
1033
+ max_level_id?: string;
1034
+ /** 学历要求 */
1035
+ required_degree?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 20;
1036
+ /** 序列 */
1037
+ job_category_id?: string;
1038
+ /** 工作地点,枚举通过接口「获取地址列表」获取,选择地点用途为「职位地址」 */
1039
+ address_id_list?: string[];
1040
+ /** 职位属性,1是实体职位,2是虚拟职位 */
1041
+ job_attribute?: 1 | 2;
1042
+ /** 到期日期的毫秒时间戳 */
1043
+ expiry_timestamp?: string;
1044
+ /** 目标专业ID List */
1045
+ target_major_id_list?: string[];
1046
+ }
1047
+ export interface CombinedUpdateHireJobQuery {
1048
+ /** 用户 ID 类型 */
1049
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1050
+ /** 此次调用中使用的部门 ID 的类型 */
1051
+ department_id_type?: 'open_department_id' | 'department_id';
1052
+ /** 此次调用中使用的「职级 ID」的类型 */
1053
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
1054
+ /** 此次调用中使用的「序列 ID」的类型 */
1055
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
1056
+ }
1057
+ export interface UpdateConfigHireJobRequest {
1058
+ /** Offer 申请表,枚举通过接口「获取 Offer 申请表列表」获取 */
1059
+ offer_apply_schema_id?: string;
1060
+ /** Offer 审批流,枚举通过接口「获取 Offer 审批流列表」获取 */
1061
+ offer_process_conf?: string;
1062
+ /** 建议评估人 ID 列表 */
1063
+ recommended_evaluator_id_list?: string[];
1064
+ /** 更新选项,传入要更新的配置项 */
1065
+ update_option_list: (1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 12)[];
1066
+ /** 面试评价表,枚举通过接口「获取面试评价表列表」获取 */
1067
+ assessment_template_biz_id?: string;
1068
+ /** 建议面试官列表 */
1069
+ interview_round_conf_list?: JobConfigInterviewRoundConf[];
1070
+ /** 关联招聘需求,支持关联多个,枚举通过接口「获取招聘需求」获取 */
1071
+ jr_id_list?: string[];
1072
+ /** 面试登记表ID,当在飞书招聘「设置 - 信息登记表使用设置 - 面试登记表使用方式」中选择「HR 按职位选择登记表」时,该字段为必填;否则该字段不生效。 */
1073
+ interview_registration_schema_id?: string;
1074
+ /** 入职登记表ID,当在飞书招聘「设置 - 信息登记表使用设置 - 入职登记表使用方式」中选择「HR 按职位选择登记表」时,该字段为必填;否则该字段不生效。 */
1075
+ onboard_registration_schema_id?: string;
1076
+ /** 面试轮次类型 ID 列表 */
1077
+ interview_round_type_conf_list?: JobConfigRoundType[];
1078
+ /** 关联职位列表,如职位为实体职位则关联虚拟职位id,如职位为虚拟职位则关联实体职位id */
1079
+ related_job_id_list?: string[];
1080
+ /** 面试官安排面试配置 */
1081
+ interview_appointment_config?: InterviewAppointmentConfig;
1082
+ /** 官网申请表ID */
1083
+ portal_website_apply_form_schema_id?: string;
1084
+ }
1085
+ export interface UpdateConfigHireJobQuery {
1086
+ /** 此次调用中使用的用户ID的类型 */
1087
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1088
+ }
1089
+ export interface BatchUpdateHireJobManagerRequest {
1090
+ /** 招聘负责人 ID */
1091
+ recruiter_id?: string;
1092
+ /** 招聘协助人 ID */
1093
+ assistant_id_list?: string[];
1094
+ /** 用人经理 ID */
1095
+ hiring_manager_id_list?: string[];
1096
+ /** 更新的人员类型,可选值:1=招聘负责人; 2=招聘协助人; 3=用人经理; */
1097
+ update_option_list: (1 | 2 | 3)[];
1098
+ /** 操作者 ID */
1099
+ creator_id?: string;
1100
+ }
1101
+ export interface BatchUpdateHireJobManagerQuery {
1102
+ /** 此次调用中使用的用户ID的类型 */
1103
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1104
+ }
1105
+ export interface GetDetailHireJobQuery {
1106
+ /** 此次调用中使用的用户ID的类型 */
1107
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
1108
+ /** 此次调用中使用的部门 ID 的类型 */
1109
+ department_id_type?: 'open_department_id' | 'department_id';
1110
+ /** 此次调用中使用的「职级 ID」的类型 */
1111
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
1112
+ /** 此次调用中使用的「序列 ID」的类型 */
1113
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
1114
+ }
1115
+ export interface GetHireJobQuery {
1116
+ /** 此次调用中使用的用户ID的类型 */
1117
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
1118
+ /** 此次调用中使用的部门 ID 的类型 */
1119
+ department_id_type?: 'open_department_id' | 'department_id';
1120
+ /** 此次调用中使用的「职级 ID」的类型 */
1121
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
1122
+ /** 此次调用中使用的「序列 ID」的类型 */
1123
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
1124
+ }
1125
+ export interface RecruiterHireJobQuery {
1126
+ /** 此次调用中使用的用户ID的类型 */
1127
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1128
+ }
1129
+ export interface ConfigHireJobQuery {
1130
+ /** 此次调用中使用的用户ID的类型 */
1131
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
1132
+ }
1133
+ export interface ListHireJobQuery extends Pagination {
1134
+ /** 最早更新时间,毫秒级时间戳 */
1135
+ update_start_time?: string;
1136
+ /** 最晚更新时间,毫秒级时间戳 */
1137
+ update_end_time?: string;
1138
+ /** 用户 ID 类型 */
1139
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1140
+ /** 此次调用中使用的部门 ID 的类型 */
1141
+ department_id_type?: 'open_department_id' | 'department_id';
1142
+ /** 此次调用中使用的「职级 ID」的类型 */
1143
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
1144
+ /** 此次调用中使用的「序列 ID」的类型 */
1145
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
1146
+ }
1147
+ export interface OpenHireJobRequest {
1148
+ /** 到期日期 */
1149
+ expiry_time?: number;
1150
+ /** 是否长期有效 */
1151
+ is_never_expired: boolean;
1152
+ }
1153
+ export interface ListHireJobSchemaQuery extends Pagination {
1154
+ /** 职位模板类型 */
1155
+ scenario?: 1 | 2;
1156
+ }
1157
+ export interface PublishHireAdvertisementRequest {
1158
+ /** 职位渠道 ID,选择要发布的招聘官网,单次仅可发布 1 个渠道,1. 内推平台提供对应的 id = 3,2. 官网渠道的 ID 通过接口「获取官网列表」获取 */
1159
+ job_channel_id?: string;
1160
+ }
1161
+ export interface SearchHireJobPublishRecordRequest {
1162
+ /** 渠道 ID */
1163
+ job_channel_id: string;
1164
+ }
1165
+ export interface SearchHireJobPublishRecordQuery extends Pagination {
1166
+ /** 用户 ID 类型 */
1167
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1168
+ /** 此次调用中使用的部门 ID 的类型 */
1169
+ department_id_type?: 'open_department_id' | 'department_id';
1170
+ /** 此次调用中使用的「职级 ID」的类型 */
1171
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
1172
+ /** 此次调用中使用的「序列 ID」的类型 */
1173
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
1174
+ }
1175
+ export interface CreateHireJobRequirementRequest {
1176
+ /** 招聘需求编号 */
1177
+ short_code: string;
1178
+ /** 需求名称 */
1179
+ name: string;
1180
+ /** 需求状态 */
1181
+ display_progress: 1 | 2 | 3 | 4 | 5 | 6;
1182
+ /** 需求人数 */
1183
+ head_count: number;
1184
+ /** 职位性质 ID */
1185
+ recruitment_type_id?: string;
1186
+ /** 人员类型 */
1187
+ employee_type_id?: string;
1188
+ /** 最高职级 ID */
1189
+ max_level_id?: string;
1190
+ /** 最低职级 ID */
1191
+ min_level_id?: string;
1192
+ /** 职位序列 ID */
1193
+ sequence_id?: string;
1194
+ /** 需求类型 */
1195
+ category?: 1 | 2;
1196
+ /** 需求部门 ID */
1197
+ department_id?: string;
1198
+ /** 需求负责人 ID 列表 */
1199
+ recruiter_id_list?: string[];
1200
+ /** 需求用人经理 ID 列表 */
1201
+ jr_hiring_manager_id_list?: string[];
1202
+ /** 直属上级 ID */
1203
+ direct_leader_id_list?: string[];
1204
+ /** 开始日期,毫秒级时间戳 */
1205
+ start_time?: string;
1206
+ /** 预计完成日期,毫秒级时间戳 */
1207
+ deadline?: string;
1208
+ /** 招聘优先级 */
1209
+ priority?: 1 | 2 | 3;
1210
+ /** 学历要求 */
1211
+ required_degree?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 20;
1212
+ /** 最高薪资 */
1213
+ max_salary?: string;
1214
+ /** 最低薪资 */
1215
+ min_salary?: string;
1216
+ /** 工作地点 ID */
1217
+ address_id?: string;
1218
+ /** 需求描述 */
1219
+ description?: string;
1220
+ /** 自定义字段 */
1221
+ customized_data_list?: JobRequirementCustomizedData[];
1222
+ /** 支持的招聘类型列表 */
1223
+ process_type?: 1 | 2;
1224
+ /** 招聘需求中的职位类别 */
1225
+ job_type_id?: string;
1226
+ /** 关联的职位 ID 列表 */
1227
+ job_id_list?: string[];
1228
+ /** 职务 ID */
1229
+ employment_job_id?: string;
1230
+ /** 岗位 ID */
1231
+ position_id?: string;
1232
+ }
1233
+ export interface CreateHireJobRequirementQuery {
1234
+ /** 此次调用中使用的用户ID的类型 */
1235
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1236
+ /** 此次调用中使用的部门 ID 的类型 */
1237
+ department_id_type?: 'open_department_id' | 'department_id';
1238
+ /** 此次调用中使用的「职级 ID」的类型 */
1239
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
1240
+ /** 此次调用中使用的「序列 ID」的类型 */
1241
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
1242
+ /** 此次调用中使用的「人员类型 ID」的类型 */
1243
+ employee_type_id_type?: 'people_admin_employee_type_id' | 'employee_type_enum_id';
1244
+ }
1245
+ export interface UpdateHireJobRequirementRequest {
1246
+ /** 需求名称 */
1247
+ name: string;
1248
+ /** 需求状态 */
1249
+ display_progress: 1 | 2 | 3 | 4 | 5 | 6;
1250
+ /** 需求人数 */
1251
+ head_count: number;
1252
+ /** 职位性质 ID */
1253
+ recruitment_type_id?: string;
1254
+ /** 人员类型 */
1255
+ employee_type_id?: string;
1256
+ /** 最高职级 ID */
1257
+ max_level_id?: string;
1258
+ /** 最低职级 ID */
1259
+ min_level_id?: string;
1260
+ /** 职位序列 ID */
1261
+ sequence_id?: string;
1262
+ /** 需求类型 */
1263
+ category?: 1 | 2;
1264
+ /** 需求部门 ID */
1265
+ department_id?: string;
1266
+ /** 需求负责人 ID 列表 */
1267
+ recruiter_id_list?: string[];
1268
+ /** 需求用人经理 ID 列表 */
1269
+ jr_hiring_manager_id_list?: string[];
1270
+ /** 直属上级 ID */
1271
+ direct_leader_id_list?: string[];
1272
+ /** 开始日期,毫秒级时间戳 */
1273
+ start_time?: string;
1274
+ /** 预计完成日期,毫秒级时间戳 */
1275
+ deadline?: string;
1276
+ /** 招聘优先级 */
1277
+ priority?: 1 | 2 | 3;
1278
+ /** 学历要求 */
1279
+ required_degree?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 20;
1280
+ /** 最高薪资 */
1281
+ max_salary?: string;
1282
+ /** 最低薪资 */
1283
+ min_salary?: string;
1284
+ /** 工作地点 ID */
1285
+ address_id?: string;
1286
+ /** 需求描述 */
1287
+ description?: string;
1288
+ /** 自定义字段 */
1289
+ customized_data_list?: JobRequirementCustomizedData[];
1290
+ /** 支持的招聘类型列表 */
1291
+ process_type?: 1 | 2;
1292
+ /** 招聘需求中的职位类别 */
1293
+ job_type_id?: string;
1294
+ /** 关联的职位 ID 列表 */
1295
+ job_id_list?: string[];
1296
+ /** 职务 ID */
1297
+ employment_job_id?: string;
1298
+ /** 岗位 ID */
1299
+ position_id?: string;
1300
+ /** 招聘需求修改确认控制 */
1301
+ update_option?: JobRequirementUpdateOption;
1302
+ }
1303
+ export interface UpdateHireJobRequirementQuery {
1304
+ /** 此次调用中使用的用户ID的类型 */
1305
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1306
+ /** 此次调用中使用的部门 ID 的类型 */
1307
+ department_id_type?: 'open_department_id' | 'department_id';
1308
+ /** 此次调用中使用的「职级 ID」的类型 */
1309
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
1310
+ /** 此次调用中使用的「序列 ID」的类型 */
1311
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
1312
+ /** 此次调用中使用的「人员类型 ID」的类型 */
1313
+ employee_type_id_type?: 'people_admin_employee_type_id' | 'employee_type_enum_id';
1314
+ }
1315
+ export interface ListByIdHireJobRequirementRequest {
1316
+ /** 招聘需求ID列表 */
1317
+ id_list?: string[];
1318
+ }
1319
+ export interface ListByIdHireJobRequirementQuery {
1320
+ /** 此次调用中使用的用户ID的类型 */
1321
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1322
+ /** 此次调用中使用的部门 ID 的类型 */
1323
+ department_id_type?: 'open_department_id' | 'department_id';
1324
+ /** 此次调用中使用的「职级 ID」的类型 */
1325
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
1326
+ /** 此次调用中使用的「序列 ID」的类型 */
1327
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
1328
+ /** 此次调用中使用的「人员类型 ID」的类型 */
1329
+ employee_type_id_type?: 'people_admin_employee_type_id' | 'employee_type_enum_id';
1330
+ }
1331
+ export interface ListHireJobRequirementQuery extends Pagination {
1332
+ /** 职位ID */
1333
+ job_id?: string;
1334
+ /** 起始创建时间,传入毫秒级时间戳 */
1335
+ create_time_begin?: string;
1336
+ /** 截止创建时间,传入毫秒级时间戳 */
1337
+ create_time_end?: string;
1338
+ /** 起始更新时间,传入毫秒级时间戳 */
1339
+ update_time_begin?: string;
1340
+ /** 截止更新时间,传入毫秒级时间戳 */
1341
+ update_time_end?: string;
1342
+ /** 此次调用中使用的用户ID的类型 */
1343
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1344
+ /** 此次调用中使用的部门 ID 的类型 */
1345
+ department_id_type?: 'open_department_id' | 'department_id';
1346
+ /** 此次调用中使用的「职级 ID」的类型 */
1347
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
1348
+ /** 此次调用中使用的「序列 ID」的类型 */
1349
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
1350
+ /** 此次调用中使用的「人员类型 ID」的类型 */
1351
+ employee_type_id_type?: 'people_admin_employee_type_id' | 'employee_type_enum_id';
1352
+ }
1353
+ export interface ListHireSubjectQuery extends Pagination {
1354
+ /** 用户 ID 类型 */
1355
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1356
+ /** 项目ID列表 */
1357
+ subject_ids?: string[];
1358
+ }
1359
+ export interface ListHireTalentTagQuery extends Pagination {
1360
+ /** 搜索关键词 */
1361
+ keyword?: string;
1362
+ /** ID 列表 */
1363
+ id_list?: string[];
1364
+ /** 标签类型 */
1365
+ type?: 1 | 2;
1366
+ /** 包含停用 */
1367
+ include_inactive?: boolean;
1368
+ }
1369
+ export interface ListHireRegistrationSchemaQuery extends Pagination {
1370
+ /** 登记表适用场景;不填表示获取全部类型信息登记表 */
1371
+ scenario?: 5 | 6 | 14;
1372
+ }
1373
+ export interface ListHireInterviewFeedbackFormQuery extends Pagination {
1374
+ /** 面试评价表ID列表, 如果使用此字段则会忽略其他参数 */
1375
+ interview_feedback_form_ids?: string[];
1376
+ }
1377
+ export interface ListHireInterviewRoundTypeQuery {
1378
+ /** 职位流程类型 */
1379
+ process_type?: 1 | 2;
1380
+ }
1381
+ export interface ListHireInterviewerQuery extends Pagination {
1382
+ /** 面试官userID列表 */
1383
+ user_ids?: string[];
1384
+ /** 认证状态 */
1385
+ verify_status?: 1 | 2;
1386
+ /** 最早更新时间,毫秒时间戳 */
1387
+ earliest_update_time?: string;
1388
+ /** 最晚更新时间,毫秒时间戳 */
1389
+ latest_update_time?: string;
1390
+ /** 此次调用中使用的用户ID的类型 */
1391
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1392
+ }
1393
+ export interface PatchHireInterviewerRequest {
1394
+ /** 面试官信息 */
1395
+ interviewer: Interviewer;
1396
+ }
1397
+ export interface PatchHireInterviewerQuery {
1398
+ /** 此次调用中使用的用户ID的类型 */
1399
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1400
+ }
1401
+ export interface UpdateHireOfferCustomFieldRequest {
1402
+ /** 自定义字段名称 */
1403
+ name: I18n;
1404
+ /** 配置信息 */
1405
+ config?: OfferCustomFieldConfig;
1406
+ }
1407
+ export interface SearchHireReferralRequest {
1408
+ /** 人才id */
1409
+ talent_id: string;
1410
+ /** 投递起始时间,若不填,默认为全部,但最多返回200条 */
1411
+ start_time?: string;
1412
+ /** 投递终止时间,若不填,默认为全部,但最多返回200条 */
1413
+ end_time?: string;
1414
+ }
1415
+ export interface SearchHireReferralQuery {
1416
+ /** 用户 ID 类型 */
1417
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1418
+ }
1419
+ export interface ListHireReferralWebsiteJobPostQuery extends Pagination {
1420
+ /** 招聘流程类型 */
1421
+ process_type?: 1 | 2;
1422
+ /** 用户 ID 类型 */
1423
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1424
+ /** 此次调用中使用的部门 ID 的类型 */
1425
+ department_id_type?: 'open_department_id' | 'department_id';
1426
+ /** 此次调用中使用的「职级 ID」的类型 */
1427
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
1428
+ }
1429
+ export interface GetHireReferralWebsiteJobPostQuery {
1430
+ /** 用户 ID 类型 */
1431
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1432
+ /** 此次调用中使用的部门 ID 的类型 */
1433
+ department_id_type?: 'open_department_id' | 'department_id';
1434
+ /** 此次调用中使用的「职级 ID」的类型 */
1435
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
1436
+ }
1437
+ export interface GetByApplicationHireReferralQuery {
1438
+ /** 投递的 ID */
1439
+ application_id: string;
1440
+ /** 此次调用中使用的用户ID的类型 */
1441
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
1442
+ }
1443
+ export interface CreateHireWebsiteChannelRequest {
1444
+ /** 推广渠道名称 */
1445
+ channel_name: string;
1446
+ }
1447
+ export interface UpdateHireWebsiteChannelRequest {
1448
+ /** 推广渠道名称 */
1449
+ channel_name: string;
1450
+ }
1451
+ export interface CreateHireWebsiteSiteUserRequest {
1452
+ /** 姓名 */
1453
+ name?: string;
1454
+ /** 邮箱 */
1455
+ email?: string;
1456
+ /** 外部用户 ID */
1457
+ external_id: string;
1458
+ /** 电话,请和区号对应的国家码一并提供 */
1459
+ mobile?: string;
1460
+ /** 国家码,请和电话一并提供,可从「获取地址码」查询 */
1461
+ mobile_country_code?: string;
1462
+ }
1463
+ export interface GetHireWebsiteJobPostQuery {
1464
+ /** 用户 ID 类型 */
1465
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1466
+ /** 此次调用中使用的部门 ID 的类型 */
1467
+ department_id_type?: 'open_department_id' | 'department_id';
1468
+ /** 此次调用中使用的「职级 ID」的类型 */
1469
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
1470
+ }
1471
+ export interface SearchHireWebsiteJobPostRequest {
1472
+ /** 职位类型列表 */
1473
+ job_type_id_list?: string[];
1474
+ /** 职位城市列表 */
1475
+ city_code_list?: string[];
1476
+ /** 职能分类列表 */
1477
+ job_function_id_list?: string[];
1478
+ /** 职位项目列表 */
1479
+ subject_id_list?: string[];
1480
+ /** 关键字 */
1481
+ keyword?: string;
1482
+ /** 最早更新时间,毫秒级时间戳 */
1483
+ update_start_time?: string;
1484
+ /** 最晚更新时间,毫秒级时间戳 */
1485
+ update_end_time?: string;
1486
+ /** 最早创建时间,毫秒级时间戳 */
1487
+ create_start_time?: string;
1488
+ /** 最晚创建时间,毫秒级时间戳 */
1489
+ create_end_time?: string;
1490
+ }
1491
+ export interface SearchHireWebsiteJobPostQuery extends Pagination {
1492
+ /** 用户 ID 类型 */
1493
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1494
+ /** 此次调用中使用的部门 ID 的类型 */
1495
+ department_id_type?: 'open_department_id' | 'department_id';
1496
+ /** 此次调用中使用的「职级 ID」的类型 */
1497
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
1498
+ }
1499
+ export interface ListHireWebsiteJobPostQuery extends Pagination {
1500
+ /** 用户 ID 类型 */
1501
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1502
+ /** 此次调用中使用的部门 ID 的类型 */
1503
+ department_id_type?: 'open_department_id' | 'department_id';
1504
+ /** 此次调用中使用的「职级 ID」的类型 */
1505
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
1506
+ /** 最早更新时间,毫秒级时间戳 */
1507
+ update_start_time?: string;
1508
+ /** 最晚更新时间,毫秒级时间戳 */
1509
+ update_end_time?: string;
1510
+ /** 最早创建时间,毫秒级时间戳 */
1511
+ create_start_time?: string;
1512
+ /** 最晚创建时间,毫秒级时间戳 */
1513
+ create_end_time?: string;
1514
+ }
1515
+ export interface CreateByResumeHireWebsiteDeliveryRequest {
1516
+ /** 职位广告 ID */
1517
+ job_post_id: string;
1518
+ /** 人才信息 */
1519
+ resume: WebsiteDeliveryResume;
1520
+ /** 官网用户 ID */
1521
+ user_id: string;
1522
+ /** 意向投递城市列表,可从「获取职位信息」返回的工作地点列表获取 */
1523
+ application_preferred_city_code_list?: string[];
1524
+ /** 官网推广渠道 ID */
1525
+ channel_id?: string;
1526
+ }
1527
+ export interface CreateByResumeHireWebsiteDeliveryQuery {
1528
+ /** 此次调用中使用的用户ID的类型 */
1529
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1530
+ }
1531
+ export interface CreateByAttachmentHireWebsiteDeliveryRequest {
1532
+ /** 职位广告 ID */
1533
+ job_post_id: string;
1534
+ /** 官网用户 ID */
1535
+ user_id: string;
1536
+ /** 简历文件 ID,使用「创建附件」生成 */
1537
+ resume_file_id: string;
1538
+ /** 官网推广渠道 ID */
1539
+ channel_id?: string;
1540
+ /** 意向投递城市列表,可从「获取职位信息」返回的工作地点列表获取 */
1541
+ application_preferred_city_code_list?: string[];
1542
+ /** 电话国际区号,可从「获取地址码」查询(当该参数值与简历附件中的相关值不一致时,将以该参数值为准) */
1543
+ mobile_country_code?: string;
1544
+ /** 电话号码(当该参数值与简历附件中的相关值不一致时,将以该参数值为准) */
1545
+ mobile?: string;
1546
+ /** 邮箱(当该参数值与简历附件中的相关值不一致时,将以该参数值为准) */
1547
+ email?: string;
1548
+ /** 身份证件号码(当该参数值与简历附件中的相关值不一致时,将以该参数值为准) */
1549
+ identification?: WebsiteDeliveryAttachmentIndentification;
1550
+ }
1551
+ export interface ProtectHireAgencyRequest {
1552
+ /** 人才ID */
1553
+ talent_id: string;
1554
+ /** 供应商ID */
1555
+ supplier_id: string;
1556
+ /** 猎头顾问ID */
1557
+ consultant_id: string;
1558
+ /** 保护期创建时间 */
1559
+ protect_create_time: number;
1560
+ /** 保护期过期时间 */
1561
+ protect_expire_time: number;
1562
+ /** 推荐语 */
1563
+ comment?: string;
1564
+ /** 当前薪资 */
1565
+ current_salary?: string;
1566
+ /** 预期薪资 */
1567
+ expected_salary?: string;
1568
+ }
1569
+ export interface ProtectHireAgencyQuery {
1570
+ /** 此次调用中使用的用户ID的类型 */
1571
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
1572
+ }
1573
+ export interface GetHireAgencyQuery {
1574
+ /** 此次调用中使用的用户ID的类型 */
1575
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
1576
+ }
1577
+ export interface ProtectSearchHireAgencyRequest {
1578
+ /** 人才id */
1579
+ talent_id: string;
1580
+ }
1581
+ export interface QueryHireAgencyQuery {
1582
+ /** 猎头供应商名称 */
1583
+ name: string;
1584
+ /** 此次调用中使用的用户ID的类型 */
1585
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1586
+ }
1587
+ export interface GetAgencyAccountHireAgencyRequest {
1588
+ /** 猎头供应商 ID */
1589
+ supplier_id: string;
1590
+ /** 猎头状态 */
1591
+ status?: 0 | 1 | 2;
1592
+ /** 角色 */
1593
+ role?: 0 | 1;
1594
+ }
1595
+ export interface GetAgencyAccountHireAgencyQuery extends Pagination {
1596
+ /** 此次调用中使用的用户ID的类型 */
1597
+ user_id_type?: 'union_id' | 'open_id';
1598
+ }
1599
+ export interface BatchQueryHireAgencyRequest {
1600
+ /** 猎头供应商 ID 列表,当传递此值,以此值为准,其余查询字段失效 */
1601
+ agency_supplier_id_list?: string[];
1602
+ /** 搜索关键字,可传入名称或邮箱 */
1603
+ keyword?: string;
1604
+ /** 筛选项,相同的 Key 仅可传一次 */
1605
+ filter_list?: CommonFilter[];
1606
+ }
1607
+ export interface BatchQueryHireAgencyQuery extends Pagination {
1608
+ /** 此次调用中使用的用户ID的类型 */
1609
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1610
+ }
1611
+ export interface OperateAgencyAccountHireAgencyRequest {
1612
+ /** 操作类型 */
1613
+ option: 1 | 2;
1614
+ /** 猎头 ID */
1615
+ id: string;
1616
+ /** 禁用原因,仅当禁用操作时,必填 */
1617
+ reason?: string;
1618
+ }
1619
+ export interface CreateHireTalentExternalInfoRequest {
1620
+ /** 人才在外部系统创建时间 */
1621
+ external_create_time: string;
1622
+ }
1623
+ export interface UpdateHireTalentExternalInfoRequest {
1624
+ /** 人才在外部系统创建时间 */
1625
+ external_create_time: string;
1626
+ }
1627
+ export interface CreateHireExternalApplicationRequest {
1628
+ /** 外部系统背调主键 (仅用于幂等) */
1629
+ external_id?: string;
1630
+ /** 职位招聘类型 */
1631
+ job_recruitment_type?: 1 | 2;
1632
+ /** 职位名称 */
1633
+ job_title?: string;
1634
+ /** 简历来源 */
1635
+ resume_source?: string;
1636
+ /** 阶段 */
1637
+ stage?: string;
1638
+ /** 人才 ID */
1639
+ talent_id: string;
1640
+ /** 终止原因 */
1641
+ termination_reason?: string;
1642
+ /** 投递类型 */
1643
+ delivery_type?: 1 | 2 | 3 | 4;
1644
+ /** 更新时间,招聘系统内用作投递在外部系统终止时间 */
1645
+ modify_time?: number;
1646
+ /** 投递在外部系统创建时间 */
1647
+ create_time?: number;
1648
+ /** 终止类型 */
1649
+ termination_type?: string;
1650
+ }
1651
+ export interface UpdateHireExternalApplicationRequest {
1652
+ /** 职位招聘类型 */
1653
+ job_recruitment_type?: 1 | 2;
1654
+ /** 职位名称 */
1655
+ job_title?: string;
1656
+ /** 简历来源 */
1657
+ resume_source?: string;
1658
+ /** 阶段 */
1659
+ stage?: string;
1660
+ /** 终止原因 */
1661
+ termination_reason?: string;
1662
+ /** 投递类型 */
1663
+ delivery_type?: 1 | 2 | 3 | 4;
1664
+ /** 更新时间,招聘系统内用作投递在外部系统终止时间 */
1665
+ modify_time?: number;
1666
+ /** 投递在外部系统创建时间 */
1667
+ create_time?: number;
1668
+ /** 终止类型 */
1669
+ termination_type?: string;
1670
+ }
1671
+ export interface ListHireExternalApplicationQuery extends Pagination {
1672
+ /** 人才ID */
1673
+ talent_id: string;
1674
+ }
1675
+ export interface DeleteHireExternalApplicationQuery {
1676
+ /** 人才ID */
1677
+ talent_id?: string;
1678
+ }
1679
+ export interface CreateHireExternalInterviewRequest {
1680
+ /** 外部系统面试主键 (仅用于幂等) */
1681
+ external_id?: string;
1682
+ /** 外部投递 ID */
1683
+ external_application_id: string;
1684
+ /** 参与状态 */
1685
+ participate_status?: 1 | 2 | 3;
1686
+ /** 开始时间 */
1687
+ begin_time?: number;
1688
+ /** 结束时间 */
1689
+ end_time?: number;
1690
+ /** 面试评价列表 */
1691
+ interview_assessments?: ExternalInterviewAssessment[];
1692
+ }
1693
+ export interface UpdateHireExternalInterviewRequest {
1694
+ /** 外部投递 ID */
1695
+ external_application_id: string;
1696
+ /** 参与状态 */
1697
+ participate_status?: 1 | 2 | 3;
1698
+ /** 开始时间 */
1699
+ begin_time?: number;
1700
+ /** 结束时间 */
1701
+ end_time?: number;
1702
+ /** 面试评价列表 */
1703
+ interview_assessments?: ExternalInterviewAssessment[];
1704
+ }
1705
+ export interface BatchQueryHireExternalInterviewRequest {
1706
+ /** 外部面试 ID列表,当传递此值时,以此值为准 */
1707
+ external_interview_id_list?: string[];
1708
+ }
1709
+ export interface BatchQueryHireExternalInterviewQuery extends Pagination {
1710
+ /** 外部投递 ID */
1711
+ external_application_id?: string;
1712
+ }
1713
+ export interface CreateHireExternalInterviewAssessmentRequest {
1714
+ /** 外部系统面评主键(仅用于幂等) */
1715
+ external_id?: string;
1716
+ /** 面试官姓名 */
1717
+ username?: string;
1718
+ /** 面试结果 */
1719
+ conclusion?: 1 | 2 | 3;
1720
+ /** 评价维度列表 */
1721
+ assessment_dimension_list?: ExternalInterviewAssessmentDimension[];
1722
+ /** 综合记录 */
1723
+ content?: string;
1724
+ /** 外部面试 ID */
1725
+ external_interview_id?: string;
1726
+ }
1727
+ export interface PatchHireExternalInterviewAssessmentRequest {
1728
+ /** 面试官姓名 */
1729
+ username?: string;
1730
+ /** 面试结果 */
1731
+ conclusion?: 1 | 2 | 3;
1732
+ /** 评价维度列表 */
1733
+ assessment_dimension_list?: ExternalInterviewAssessmentDimension[];
1734
+ /** 综合记录 */
1735
+ content?: string;
1736
+ }
1737
+ export interface CreateHireExternalOfferRequest {
1738
+ /** 外部系统 Offer 主键(仅用于幂等) */
1739
+ external_id?: string;
1740
+ /** 外部投递 ID */
1741
+ external_application_id: string;
1742
+ /** Offer 创建时间,毫秒时间戳 */
1743
+ biz_create_time?: string;
1744
+ /** Offer 负责人 */
1745
+ owner?: string;
1746
+ /** Offer 状态 */
1747
+ offer_status?: string;
1748
+ /** Offer详情附件ID列表 */
1749
+ attachment_id_list?: string[];
1750
+ }
1751
+ export interface UpdateHireExternalOfferRequest {
1752
+ /** 外部投递 ID */
1753
+ external_application_id: string;
1754
+ /** Offer 创建时间,毫秒时间戳 */
1755
+ biz_create_time?: string;
1756
+ /** Offer 负责人 */
1757
+ owner?: string;
1758
+ /** Offer 状态 */
1759
+ offer_status?: string;
1760
+ /** Offer详情附件ID列表 */
1761
+ attachment_id_list?: string[];
1762
+ }
1763
+ export interface BatchQueryHireExternalOfferRequest {
1764
+ /** 外部 Offer ID列表,当传递此值时,以此值为准 */
1765
+ external_offer_id_list?: string[];
1766
+ }
1767
+ export interface BatchQueryHireExternalOfferQuery extends Pagination {
1768
+ /** 外部投递 ID */
1769
+ external_application_id?: string;
1770
+ }
1771
+ export interface CreateHireExternalBackgroundCheckRequest {
1772
+ /** 外部系统背调主键 (仅用于幂等) */
1773
+ external_id?: string;
1774
+ /** 外部投递 ID */
1775
+ external_application_id: string;
1776
+ /** 背调日期 */
1777
+ date?: number;
1778
+ /** 背调名字 */
1779
+ name?: string;
1780
+ /** 背调结果 */
1781
+ result?: string;
1782
+ /** 背调附件ID列表 */
1783
+ attachment_id_list?: string[];
1784
+ }
1785
+ export interface UpdateHireExternalBackgroundCheckRequest {
1786
+ /** 外部投递 ID */
1787
+ external_application_id: string;
1788
+ /** 背调日期 */
1789
+ date?: number;
1790
+ /** 背调名字 */
1791
+ name?: string;
1792
+ /** 背调结果 */
1793
+ result?: string;
1794
+ /** 背调附件ID列表 */
1795
+ attachment_id_list?: string[];
1796
+ }
1797
+ export interface BatchQueryHireExternalBackgroundCheckRequest {
1798
+ /** 外部背调 ID 列表,当传递此值时,以此值为准 */
1799
+ external_background_check_id_list?: string[];
1800
+ }
1801
+ export interface BatchQueryHireExternalBackgroundCheckQuery extends Pagination {
1802
+ /** 外部投递 ID */
1803
+ external_application_id?: string;
1804
+ }
1805
+ export interface CreateHireExternalReferralRewardRequest {
1806
+ /** 内推人ID */
1807
+ referral_user_id: string;
1808
+ /** 奖励创建人,管理员与内推人可见,若不传,则默认为「外部系统」 */
1809
+ create_user_id?: string;
1810
+ /** 奖励确认人,若导入的「内推奖励状态」为「已确认」可传入,若不传,则默认为「外部系统」 */
1811
+ confirm_user_id?: string;
1812
+ /** 奖励发放人,导入奖励状态为「已发放」的奖励传入,若不传,则默认为「外部系统」 */
1813
+ pay_user_id?: string;
1814
+ /** 外部系统奖励唯一id(仅用于幂等) */
1815
+ external_id: string;
1816
+ /** 投递id,和「人才id」二选一 */
1817
+ application_id?: string;
1818
+ /** 人才id,和「投递id」二选一 */
1819
+ talent_id?: string;
1820
+ /** 职位id,当参数包含「人才id」时,可以选填职位id */
1821
+ job_id?: string;
1822
+ /** 奖励原因 */
1823
+ reason?: string;
1824
+ /** 导入的奖励规则类型,将展示在内推奖励明细中,管理员与内推人可见 */
1825
+ rule_type: 1 | 2 | 3 | 4 | 5;
1826
+ /** 奖励数据 */
1827
+ bonus: BonusAmount;
1828
+ /** 导入的内推奖励状态 */
1829
+ stage: 1 | 2 | 3;
1830
+ /** 奖励产生时间,内推奖励触发时间,若未传入,取接口传入时间 */
1831
+ create_time?: string;
1832
+ /** 奖励确认时间,若导入的「内推奖励状态」为「已确认」可传入,若未传入,取接口传入时间 */
1833
+ confirm_time?: string;
1834
+ /** 奖励发放时间,若导入的「内推奖励状态」为「已确认」可传入,若未传入,取接口传入时间 */
1835
+ pay_time?: string;
1836
+ /** 入职时间,管理员与内推人可见,若为「入职奖励」可传入 */
1837
+ onboard_time?: string;
1838
+ /** 入职时间,管理员与内推人可见,若为「入职奖励」可传入 */
1839
+ conversion_time?: string;
1840
+ /** 操作备注,管理员与内推人可见,若为空,将展示为奖励原因 */
1841
+ comment?: string;
1842
+ }
1843
+ export interface CreateHireExternalReferralRewardQuery {
1844
+ /** 此次调用中使用的用户ID的类型 */
1845
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
1846
+ }
1847
+ export interface BatchChangeTalentPoolHireTalentPoolRequest {
1848
+ /** 人才 ID 列表 */
1849
+ talent_id_list: string[];
1850
+ /** 操作类型 */
1851
+ option_type: 1 | 2;
1852
+ }
1853
+ export interface SearchHireTalentPoolQuery extends Pagination {
1854
+ /** 人才库ID列表 */
1855
+ id_list?: string[];
1856
+ }
1857
+ export interface MoveTalentHireTalentPoolRequest {
1858
+ /** 人才ID */
1859
+ talent_id: string;
1860
+ /** 操作类型 */
1861
+ add_type: 1 | 2;
1862
+ }
1863
+ export interface TagHireTalentRequest {
1864
+ /** 操作类型 */
1865
+ operation: 1 | 2;
1866
+ /** 标签 ID 列表 */
1867
+ tag_id_list: string[];
1868
+ }
1869
+ export interface CombinedCreateHireTalentRequest {
1870
+ /** 简历来源 ID,可通过[获取简历来源列表](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_object/query)接口查询 */
1871
+ init_source_id?: string;
1872
+ /** 简历来源 ID */
1873
+ resume_source_id?: string;
1874
+ /** 文件夹 ID 列表 */
1875
+ folder_id_list?: string[];
1876
+ /** 创建人 ID */
1877
+ creator_id?: string;
1878
+ /** 创建人类型 */
1879
+ creator_account_type?: 1 | 3;
1880
+ /** 简历附件 ID */
1881
+ resume_attachment_id?: string;
1882
+ /** 基础信息 */
1883
+ basic_info: TalentCombinedBasicInfo;
1884
+ /** 教育经历 */
1885
+ education_list?: TalentCombinedEducationInfo[];
1886
+ /** 工作经历 */
1887
+ career_list?: TalentCombinedCareerInfo[];
1888
+ /** 项目经历 */
1889
+ project_list?: TalentCombinedProjectInfo[];
1890
+ /** 作品 */
1891
+ works_list?: TalentCombinedWorkInfo[];
1892
+ /** 获奖 */
1893
+ award_list?: TalentCombinedAwardInfo[];
1894
+ /** 语言能力 */
1895
+ language_list?: TalentCombinedLanguageInfo[];
1896
+ /** 社交账号 */
1897
+ sns_list?: TalentCombinedSnsInfo[];
1898
+ /** 意向地点 */
1899
+ preferred_city_code_list?: string[];
1900
+ /** 自我评价 */
1901
+ self_evaluation?: TalentSelfEvaluation;
1902
+ /** 自定义模块 */
1903
+ customized_data?: TalentCustomizedDataObjectValue[];
1904
+ }
1905
+ export interface CombinedCreateHireTalentQuery {
1906
+ /** 此次调用中使用的用户ID的类型 */
1907
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
1908
+ }
1909
+ export interface CombinedUpdateHireTalentRequest {
1910
+ /** 人才 ID */
1911
+ talent_id: string;
1912
+ /** 简历来源 ID,可通过[获取简历来源列表](/ssl:ttdoc/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_object/query)接口查询 */
1913
+ init_source_id?: string;
1914
+ /** 文件夹 ID 列表 */
1915
+ folder_id_list?: string[];
1916
+ /** 更新人 ID */
1917
+ operator_id?: string;
1918
+ /** 更新人类型 */
1919
+ operator_account_type?: 1 | 3;
1920
+ /** 简历附件id */
1921
+ resume_attachment_id?: string;
1922
+ /** 基础信息 */
1923
+ basic_info: TalentCombinedBasicInfo;
1924
+ /** 教育经历 */
1925
+ education_list?: TalentCombinedEducationInfo[];
1926
+ /** 工作经历 */
1927
+ career_list?: TalentCombinedCareerInfo[];
1928
+ /** 项目经历 */
1929
+ project_list?: TalentCombinedProjectInfo[];
1930
+ /** 作品 */
1931
+ works_list?: TalentCombinedWorkInfo[];
1932
+ /** 获奖 */
1933
+ award_list?: TalentCombinedAwardInfo[];
1934
+ /** 语言能力 */
1935
+ language_list?: TalentCombinedLanguageInfo[];
1936
+ /** 社交账号 */
1937
+ sns_list?: TalentCombinedSnsInfo[];
1938
+ /** 偏好城市 */
1939
+ preferred_city_code_list?: string[];
1940
+ /** 自我评价 */
1941
+ self_evaluation?: TalentSelfEvaluation;
1942
+ /** 自定义模块 */
1943
+ customized_data?: TalentCustomizedDataObjectValue[];
1944
+ }
1945
+ export interface CombinedUpdateHireTalentQuery {
1946
+ /** 此次调用中使用的用户ID的类型 */
1947
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
1948
+ }
1949
+ export interface AddToFolderHireTalentRequest {
1950
+ /** 人才 ID 列表 */
1951
+ talent_id_list: string[];
1952
+ /** 文件夹 ID */
1953
+ folder_id: string;
1954
+ }
1955
+ export interface RemoveToFolderHireTalentRequest {
1956
+ /** 人才 ID 列表 */
1957
+ talent_id_list: string[];
1958
+ /** 文件夹 ID */
1959
+ folder_id: string;
1960
+ }
1961
+ export interface ListHireTalentFolderQuery extends Pagination {
1962
+ /** 用户ID类型 */
1963
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
1964
+ }
1965
+ export interface BatchGetIdHireTalentRequest {
1966
+ /** 手机国家区号,默认值:86,即中国大陆地区 */
1967
+ mobile_code?: string;
1968
+ /** 手机号,区号均采用 mobile_code 参数的值,最多 100 个 */
1969
+ mobile_number_list?: string[];
1970
+ /** 邮箱信息列表,最多 100 个 */
1971
+ email_list?: string[];
1972
+ /** 证件类型,可参考招聘枚举常量文档下的 IdentificationType 枚举定义 */
1973
+ identification_type?: number;
1974
+ /** 证件号 */
1975
+ identification_number_list?: string[];
1976
+ }
1977
+ export interface ListHireTalentQuery extends Pagination {
1978
+ /** 搜索关键词,支持布尔语言(使用 and、or、not 连接关键词) */
1979
+ keyword?: string;
1980
+ /** 最早更新时间,毫秒级时间戳 */
1981
+ update_start_time?: string;
1982
+ /** 最晚更新时间,毫秒级时间戳 */
1983
+ update_end_time?: string;
1984
+ /** 排序规则 */
1985
+ sort_by?: 1 | 2 | 3 | 4;
1986
+ /** 用户 ID 类型 */
1987
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
1988
+ /** 请求控制参数 */
1989
+ query_option?: 'ignore_empty_error';
1990
+ }
1991
+ export interface GetHireTalentQuery {
1992
+ /** 用户 ID 类型 */
1993
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
1994
+ }
1995
+ export interface GetHireTalentQuery {
1996
+ /** 用户 ID 类型 */
1997
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
1998
+ }
1999
+ export interface OnboardStatusHireTalentRequest {
2000
+ /** 操作类型 1:入职 2:离职 */
2001
+ operation: 1 | 2;
2002
+ /** 毫秒时间戳 */
2003
+ onboard_time?: string;
2004
+ /** 毫秒时间戳 */
2005
+ overboard_time?: string;
2006
+ }
2007
+ export interface ChangeTalentBlockHireTalentBlocklistRequest {
2008
+ /** 人才 ID */
2009
+ talent_id: string;
2010
+ /** 操作类型 */
2011
+ option: 1 | 2;
2012
+ /** 原因,当执行加入屏蔽名单操作时必填 */
2013
+ reason?: string;
2014
+ }
2015
+ export interface GetDetailHireApplicationQuery {
2016
+ /** 此次调用中使用的用户 ID 类型 */
2017
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2018
+ /** 此次调用中使用的部门 ID 类型 */
2019
+ department_id_type?: 'open_department_id' | 'department_id';
2020
+ /** 此次调用中使用的「职级 ID」的类型 */
2021
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
2022
+ /** 此次调用中使用的「序列 ID」的类型 */
2023
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
2024
+ /** 此次调用中使用的「人员类型 ID」的类型 */
2025
+ employee_type_id_type?: 'people_admin_employee_type_id' | 'employee_type_enum_id';
2026
+ /** 请求控制参数,用于控制获取哪些关联实体信息。 */
2027
+ options?: ('with_job' | 'with_talent' | 'with_interview' | 'with_offer' | 'with_evaluation' | 'with_employee' | 'with_agency' | 'with_referral' | 'with_portal')[];
2028
+ }
2029
+ export interface CreateHireApplicationRequest {
2030
+ /** 人才ID */
2031
+ talent_id: string;
2032
+ /** 职位ID */
2033
+ job_id: string;
2034
+ /** 人员ID */
2035
+ user_id?: string;
2036
+ /** 简历来源 ID,可通过「获取简历来源」接口查询。若简历来源类型属于「员工转岗」或「实习生转正」,人才需处于已入职状态。 */
2037
+ resume_source_id?: string;
2038
+ /** 意向投递城市列表,可从「获取职位信息」返回的工作地点列表获取 */
2039
+ application_preferred_city_code_list?: string[];
2040
+ }
2041
+ export interface CreateHireApplicationQuery {
2042
+ /** 此次调用中使用的用户ID的类型 */
2043
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2044
+ }
2045
+ export interface TerminateHireApplicationRequest {
2046
+ /** 终止原因的类型 */
2047
+ termination_type: 1 | 22 | 27;
2048
+ /** 终止的具体原因的id列表 */
2049
+ termination_reason_list?: string[];
2050
+ /** 终止备注 */
2051
+ termination_reason_note?: string;
2052
+ }
2053
+ export interface TransferStageHireApplicationRequest {
2054
+ /** 要转移到的阶段 ID,可通过「获取招聘流程信息」接口获取阶段 ID 枚举 */
2055
+ stage_id: string;
2056
+ }
2057
+ export interface GetHireApplicationQuery {
2058
+ /** 此次调用中使用的用户ID的类型 */
2059
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2060
+ /** 请求控制参数,用于控制接口响应逻辑。如需一次查询多个用户ID,可通过将同一参数名多次传递,并且每次传递不同的参数值。 */
2061
+ options?: ('get_latest_application_on_chain')[];
2062
+ }
2063
+ export interface ListHireApplicationQuery extends Pagination {
2064
+ /** 按流程过滤,招聘流程 ID,枚举值通过接口「获取招聘流程信息」接口获取 */
2065
+ process_id?: string;
2066
+ /** 按招聘阶段过滤,招聘阶段 ID,枚举值通过「获取招聘流程信息」接口获取 */
2067
+ stage_id?: string;
2068
+ /** 按人才过滤 */
2069
+ talent_id?: string;
2070
+ /** 按活跃状态筛选 1=活跃投递, 2=非活跃投递, 3=全部 */
2071
+ active_status?: string;
2072
+ /** 职位 ID */
2073
+ job_id?: string;
2074
+ /** 锁定状态 */
2075
+ lock_status?: (1 | 2 | 3)[];
2076
+ /** 最早更新时间,毫秒级时间戳 */
2077
+ update_start_time?: string;
2078
+ /** 最晚更新时间,毫秒级时间戳 */
2079
+ update_end_time?: string;
2080
+ }
2081
+ export interface SearchHireDiversityInclusionRequest {
2082
+ /** 需要查询DI数据的人才ID列表 */
2083
+ talent_ids?: string[];
2084
+ /** 需要查询DI数据的投递ID列表 */
2085
+ application_ids?: string[];
2086
+ }
2087
+ export interface ListHireEvaluationQuery extends Pagination {
2088
+ /** 投递 ID */
2089
+ application_id?: string;
2090
+ /** 最早更新时间,毫秒级时间戳 */
2091
+ update_start_time?: string;
2092
+ /** 最晚更新时间,毫秒级时间戳 */
2093
+ update_end_time?: string;
2094
+ /** 用户ID类型 */
2095
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2096
+ }
2097
+ export interface CreateHireExamRequest {
2098
+ /** 投递 ID */
2099
+ application_id: string;
2100
+ /** 试卷名称 */
2101
+ exam_resource_name: string;
2102
+ /** 笔试分数 */
2103
+ score: number;
2104
+ /** 报告附件,使用[创建附件](/ssl:ttdoc/ukTMukTMukTM/uIDN1YjLyQTN24iM0UjN/create_attachment)上传,获取附件ID,支持的文件格式:JPG、JPEG、PNG、PDF,不超过 100MB。 */
2105
+ uuid?: string;
2106
+ /** 添加人 ID */
2107
+ operator_id: string;
2108
+ }
2109
+ export interface CreateHireExamQuery {
2110
+ /** 此次调用中使用的用户ID的类型 */
2111
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2112
+ }
2113
+ export interface SearchHireTestRequest {
2114
+ /** 投递 ID 列表,最多 100 个,默认查询全部投递 */
2115
+ application_id_list?: string[];
2116
+ /** 笔试开始时间晚于等于的时间 */
2117
+ test_start_time_min?: string;
2118
+ /** 笔试开始时间早于等于的时间 */
2119
+ test_start_time_max?: string;
2120
+ }
2121
+ export interface SearchHireTestQuery extends Pagination {
2122
+ /** 此次调用中使用的用户ID的类型 */
2123
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2124
+ }
2125
+ export interface ListHireInterviewQuery extends Pagination {
2126
+ /** 投递 ID */
2127
+ application_id?: string;
2128
+ /** 面试 ID */
2129
+ interview_id?: string;
2130
+ /** 最早开始时间,格式为时间戳 */
2131
+ start_time?: string;
2132
+ /** 最晚开始时间,格式为时间戳 */
2133
+ end_time?: string;
2134
+ /** 此次调用中使用的「职级 ID」的类型 */
2135
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
2136
+ /** 此次调用中使用的用户ID的类型 */
2137
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2138
+ }
2139
+ export interface GetByTalentHireInterviewQuery {
2140
+ /** 人才 ID */
2141
+ talent_id: string;
2142
+ /** 此次调用中使用的用户ID的类型 */
2143
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2144
+ /** 此次调用中使用的「职级 ID」的类型 */
2145
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
2146
+ }
2147
+ export interface GetHireInterviewRecordQuery {
2148
+ /** 此次调用中使用的用户ID的类型 */
2149
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2150
+ }
2151
+ export interface GetHireInterviewRecordQuery {
2152
+ /** 此次调用中使用的用户ID的类型 */
2153
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2154
+ }
2155
+ export interface ListHireInterviewRecordQuery extends Pagination {
2156
+ /** 面试评价ID列表,使用该筛选项时不会分页 */
2157
+ ids?: string[];
2158
+ /** 此次调用中使用的用户ID的类型 */
2159
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2160
+ }
2161
+ export interface ListHireInterviewRecordQuery extends Pagination {
2162
+ /** 面试评价ID列表,使用该筛选项时不会分页 */
2163
+ ids?: string[];
2164
+ /** 此次调用中使用的用户ID的类型 */
2165
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2166
+ }
2167
+ export interface GetHireInterviewRecordAttachmentQuery {
2168
+ /** 投递 ID */
2169
+ application_id: string;
2170
+ /** 面试记录 ID */
2171
+ interview_record_id?: string;
2172
+ /** 面试记录语言 */
2173
+ language?: 1 | 2;
2174
+ }
2175
+ export interface GetHireMinutesQuery extends Pagination {
2176
+ /** 面试ID */
2177
+ interview_id: string;
2178
+ }
2179
+ export interface ListHireQuestionnaireQuery extends Pagination {
2180
+ /** 投递 ID */
2181
+ application_id?: string;
2182
+ /** 面试 ID */
2183
+ interview_id?: string;
2184
+ /** 最早更新时间 */
2185
+ update_start_time?: string;
2186
+ /** 最晚更新时间 */
2187
+ update_end_time?: string;
2188
+ }
2189
+ export interface CreateHireOfferRequest {
2190
+ /** 投递 ID */
2191
+ application_id: string;
2192
+ /** 模板 ID */
2193
+ schema_id?: string;
2194
+ /** Offer 类型 */
2195
+ offer_type?: 1 | 2;
2196
+ /** Offer 基本信息 */
2197
+ basic_info: OfferBasicInfo;
2198
+ /** Offer 薪资信息 */
2199
+ salary_info?: OfferSalaryInfo;
2200
+ /** 自定义信息 */
2201
+ customized_info_list?: OfferCustomizedInfo[];
2202
+ }
2203
+ export interface CreateHireOfferQuery {
2204
+ /** 此次调用中使用的用户ID的类型 */
2205
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2206
+ /** 此次调用中使用的部门 ID 的类型 */
2207
+ department_id_type?: 'open_department_id' | 'department_id';
2208
+ /** 此次调用中使用的「职级 ID」的类型 */
2209
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
2210
+ /** 此次调用中使用的「序列 ID」的类型 */
2211
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
2212
+ /** 此次调用中使用的「人员类型 ID」的类型 */
2213
+ employee_type_id_type?: 'people_admin_employee_type_id' | 'employee_type_enum_id';
2214
+ }
2215
+ export interface UpdateHireOfferRequest {
2216
+ /** 模板 ID */
2217
+ schema_id: string;
2218
+ /** Offer 基本信息 */
2219
+ basic_info: OfferBasicInfo;
2220
+ /** Offer 薪资信息 */
2221
+ salary_info?: OfferSalaryInfo;
2222
+ /** 自定义信息 */
2223
+ customized_info_list?: OfferCustomizedInfo[];
2224
+ }
2225
+ export interface UpdateHireOfferQuery {
2226
+ /** 此次调用中使用的用户ID的类型 */
2227
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2228
+ /** 此次调用中使用的部门 ID 的类型 */
2229
+ department_id_type?: 'open_department_id' | 'department_id';
2230
+ /** 此次调用中使用的「职级 ID」的类型 */
2231
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
2232
+ /** 此次调用中使用的「序列 ID」的类型 */
2233
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
2234
+ /** 此次调用中使用的「人员类型 ID」的类型 */
2235
+ employee_type_id_type?: 'people_admin_employee_type_id' | 'employee_type_enum_id';
2236
+ }
2237
+ export interface OfferHireApplicationQuery {
2238
+ /** 用户 ID 类型 */
2239
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2240
+ /** 此次调用中使用的部门 ID 的类型 */
2241
+ department_id_type?: 'open_department_id' | 'department_id';
2242
+ /** 此次调用中使用的「职级 ID」的类型 */
2243
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
2244
+ /** 此次调用中使用的「序列 ID」的类型 */
2245
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
2246
+ /** 此次调用中使用的「人员类型 ID」的类型 */
2247
+ employee_type_id_type?: 'people_admin_employee_type_id' | 'employee_type_enum_id';
2248
+ }
2249
+ export interface GetHireOfferQuery {
2250
+ /** 此次调用中使用的用户ID的类型 */
2251
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2252
+ /** 此次调用中使用的部门 ID 的类型 */
2253
+ department_id_type?: 'open_department_id' | 'department_id';
2254
+ /** 此次调用中使用的「职级 ID」的类型 */
2255
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
2256
+ /** 此次调用中使用的「序列 ID」的类型 */
2257
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
2258
+ /** 此次调用中使用的「人员类型 ID」的类型 */
2259
+ employee_type_id_type?: 'people_admin_employee_type_id' | 'employee_type_enum_id';
2260
+ }
2261
+ export interface ListHireOfferQuery extends Pagination {
2262
+ /** 人才 ID */
2263
+ talent_id: string;
2264
+ /** 此次调用中使用的用户ID的类型 */
2265
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2266
+ /** 此次调用中使用的「人员类型 ID」的类型 */
2267
+ employee_type_id_type?: 'people_admin_employee_type_id' | 'employee_type_enum_id';
2268
+ }
2269
+ export interface OfferStatusHireOfferRequest {
2270
+ /** offer状态 */
2271
+ offer_status: 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
2272
+ /** offer 失效时间,当反馈状态是「offer已发出」时为必填项 */
2273
+ expiration_date?: string;
2274
+ /** 终止原因列表,当反馈状态是「候选人已拒绝」时为必填项;最多传入50个 */
2275
+ termination_reason_id_list?: string[];
2276
+ /** 终止备注 */
2277
+ termination_reason_note?: string;
2278
+ }
2279
+ export interface InternOfferStatusHireOfferRequest {
2280
+ /** 更新入/离职状态的操作 */
2281
+ operation: 'confirm_onboarding' | 'cancel_onboarding' | 'offboard';
2282
+ /** 入职表单信息(当 operation 为 confirm_onboarding 时,该字段必填) */
2283
+ onboarding_info?: InternOfferOnboardingInfo;
2284
+ /** 离职表单信息(当 operation 为 offboard 时,该字段必填) */
2285
+ offboarding_info?: InternOfferOffboardingInfo;
2286
+ }
2287
+ export interface ListHireBackgroundCheckOrderQuery extends Pagination {
2288
+ /** 用户 ID 类型 */
2289
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2290
+ /** 投递 ID */
2291
+ application_id?: string;
2292
+ /** 最早更新时间,毫秒级时间戳 */
2293
+ update_start_time?: string;
2294
+ /** 最晚更新时间,毫秒级时间戳 */
2295
+ update_end_time?: string;
2296
+ }
2297
+ export interface CreateHireTripartiteAgreementRequest {
2298
+ /** 投递ID */
2299
+ application_id: string;
2300
+ /** 三方协议状态 */
2301
+ state: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
2302
+ /** 三方协议创建时间,毫秒时间戳 */
2303
+ create_time: string;
2304
+ }
2305
+ export interface ListHireTripartiteAgreementQuery extends Pagination {
2306
+ /** 投递 ID,必填投递 id 与三方协议 ID 其中之一 */
2307
+ application_id?: string;
2308
+ /** 三方协议 ID,必填投递 id 与三方协议 ID 其中之一 */
2309
+ tripartite_agreement_id?: string;
2310
+ }
2311
+ export interface UpdateHireTripartiteAgreementRequest {
2312
+ /** 三方协议状态 */
2313
+ state: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
2314
+ /** 三方协议修改时间戳,不可小于创建时间或者当前修改时间 */
2315
+ modify_time: string;
2316
+ }
2317
+ export interface PatchHireEhrImportTaskRequest {
2318
+ /** 失败原因 */
2319
+ fail_reason?: string;
2320
+ /** 跳转链接 */
2321
+ redirect_url?: string;
2322
+ /** 状态 */
2323
+ state: 1 | 2;
2324
+ }
2325
+ export interface TransferOnboardHireApplicationRequest {
2326
+ /** 实际入职时间 */
2327
+ actual_onboard_time?: number;
2328
+ /** 预期转正时间 */
2329
+ expected_conversion_time?: number;
2330
+ /** 招聘需求 ID */
2331
+ job_requirement_id?: string;
2332
+ /** 操作人 UserID */
2333
+ operator_id?: string;
2334
+ /** 候选人办公地点 ID ,枚举可通过接口「获取地址列表」获取,将用于候选人内推奖规则判断 */
2335
+ onboard_city_code?: string;
2336
+ /** 候选人入职部门 ID ,枚举可通过接口「获取部门信息列表」获取,将用于候选人内推奖规则判断 */
2337
+ department?: string;
2338
+ /** 候选人直属上级 UserID ,将用于候选人内推奖规则判断 */
2339
+ leader?: string;
2340
+ /** 候选人序列 ID ,枚举可通过接口「获取职务分类列表」获取,将用于候选人内推奖规则判断 */
2341
+ sequence?: string;
2342
+ /** 候选人职级 ID ,枚举可通过接口「获取职级列表」获取,将用于候选人内推奖规则判断 */
2343
+ level?: string;
2344
+ /** 候选人入职人员类型 ID,可通过接口人力资源管理平台「获取员工类型列表」获取,将用于候选人内推奖规则判断 */
2345
+ employee_type?: string;
2346
+ }
2347
+ export interface TransferOnboardHireApplicationQuery {
2348
+ /** 用户 ID 类型 */
2349
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2350
+ /** 此次调用中使用的部门 ID 的类型 */
2351
+ department_id_type?: 'open_department_id' | 'department_id' | 'people_admin_department_id';
2352
+ /** 此次调用中使用的「职级 ID」的类型 */
2353
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
2354
+ /** 此次调用中使用的「序列 ID」的类型 */
2355
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
2356
+ /** 此次调用中使用的「人员类型 ID」的类型 */
2357
+ employee_type_id_type?: 'people_admin_employee_type_id' | 'employee_type_enum_id';
2358
+ }
2359
+ export interface PatchHireEmployeeRequest {
2360
+ /** 修改状态操作 */
2361
+ operation: 1 | 2;
2362
+ conversion_info?: EmployeeConversionInfo;
2363
+ overboard_info?: EmployeeOverboardInfo;
2364
+ }
2365
+ export interface PatchHireEmployeeQuery {
2366
+ /** 用户 ID 类型 */
2367
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2368
+ /** 此次调用中使用的部门 ID 的类型 */
2369
+ department_id_type?: 'open_department_id' | 'department_id' | 'people_admin_department_id';
2370
+ /** 此次调用中使用的「职级 ID」的类型 */
2371
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
2372
+ /** 此次调用中使用的「序列 ID」的类型 */
2373
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
2374
+ /** 此次调用中使用的「人员类型 ID」的类型 */
2375
+ employee_type_id_type?: 'people_admin_employee_type_id' | 'employee_type_enum_id';
2376
+ }
2377
+ export interface GetByApplicationHireEmployeeQuery {
2378
+ /** 投递ID */
2379
+ application_id: string;
2380
+ /** 用户 ID 类型 */
2381
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2382
+ /** 此次调用中使用的部门 ID 的类型 */
2383
+ department_id_type?: 'open_department_id' | 'department_id' | 'people_admin_department_id';
2384
+ /** 此次调用中使用的「职级 ID」的类型 */
2385
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
2386
+ /** 此次调用中使用的「序列 ID」的类型 */
2387
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
2388
+ /** 此次调用中使用的「人员类型 ID」的类型 */
2389
+ employee_type_id_type?: 'people_admin_employee_type_id' | 'employee_type_enum_id';
2390
+ }
2391
+ export interface GetHireEmployeeQuery {
2392
+ /** 用户 ID 类型 */
2393
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2394
+ /** 此次调用中使用的部门 ID 的类型 */
2395
+ department_id_type?: 'open_department_id' | 'department_id' | 'people_admin_department_id';
2396
+ /** 此次调用中使用的「职级 ID」的类型 */
2397
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
2398
+ /** 此次调用中使用的「序列 ID」的类型 */
2399
+ job_family_id_type?: 'people_admin_job_category_id' | 'job_family_id';
2400
+ /** 此次调用中使用的「人员类型 ID」的类型 */
2401
+ employee_type_id_type?: 'people_admin_employee_type_id' | 'employee_type_enum_id';
2402
+ }
2403
+ export interface ListHireTodoQuery extends Pagination {
2404
+ /** 用户 ID,当 token 为租户 token 时,必须传入该字段,当 token 为用户 token 时,不传该字段 */
2405
+ user_id?: string;
2406
+ /** 用户 ID 类型 */
2407
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2408
+ /** 待办类型 */
2409
+ type: 'evaluation' | 'offer' | 'exam' | 'interview';
2410
+ }
2411
+ export interface ListHireEvaluationTaskQuery extends Pagination {
2412
+ /** 用户 ID */
2413
+ user_id: string;
2414
+ /** 任务状态 */
2415
+ activity_status?: 1 | 2 | 3;
2416
+ /** 此次调用中使用的用户ID的类型 */
2417
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2418
+ }
2419
+ export interface ListHireExamMarkingTaskQuery extends Pagination {
2420
+ /** 用户 ID */
2421
+ user_id: string;
2422
+ /** 任务状态 */
2423
+ activity_status?: 1 | 2;
2424
+ /** 此次调用中使用的用户ID的类型 */
2425
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2426
+ }
2427
+ export interface ListHireInterviewTaskQuery extends Pagination {
2428
+ /** 用户 ID */
2429
+ user_id: string;
2430
+ /** 任务状态 */
2431
+ activity_status?: 1 | 2 | 3 | 5;
2432
+ /** 此次调用中使用的用户ID的类型 */
2433
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2434
+ }
2435
+ export interface CreateHireNoteRequest {
2436
+ /** 人才ID */
2437
+ talent_id: string;
2438
+ /** 投递ID */
2439
+ application_id?: string;
2440
+ /** 创建人ID */
2441
+ creator_id?: string;
2442
+ /** 内容 */
2443
+ content: string;
2444
+ /** 备注私密属性(默认为公开) */
2445
+ privacy?: 1 | 2;
2446
+ /** 是否通知被@的用户 */
2447
+ notify_mentioned_user?: boolean;
2448
+ /** 被@用户列表 */
2449
+ mention_entity_list?: MentionEntity[];
2450
+ }
2451
+ export interface CreateHireNoteQuery {
2452
+ /** 此次调用中使用的用户ID的类型 */
2453
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2454
+ }
2455
+ export interface PatchHireNoteRequest {
2456
+ /** 备注内容 */
2457
+ content: string;
2458
+ /** 更新人 ID */
2459
+ operator_id?: string;
2460
+ /** 是否通知被@的用户 */
2461
+ notify_mentioned_user?: boolean;
2462
+ /** 被@用户列表 */
2463
+ mention_entity_list?: MentionEntity[];
2464
+ }
2465
+ export interface PatchHireNoteQuery {
2466
+ /** 此次调用中使用的用户ID的类型 */
2467
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2468
+ }
2469
+ export interface GetHireNoteQuery {
2470
+ /** 此次调用中使用的用户ID的类型 */
2471
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2472
+ }
2473
+ export interface ListHireNoteQuery extends Pagination {
2474
+ /** 人才ID */
2475
+ talent_id: string;
2476
+ /** 此次调用中使用的用户ID的类型 */
2477
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2478
+ }
2479
+ export interface CreateHireEcoAccountCustomFieldRequest {
2480
+ /** 适用范围 */
2481
+ scope: 1 | 2;
2482
+ /** 自定义字段列表 */
2483
+ custom_field_list: EcoAccountCustomFieldData[];
2484
+ }
2485
+ export interface BatchUpdateHireEcoAccountCustomFieldRequest {
2486
+ /** 适用范围 */
2487
+ scope: 1 | 2;
2488
+ /** 自定义字段列表 */
2489
+ custom_field_list: EcoAccountCustomFieldData[];
2490
+ }
2491
+ export interface BatchDeleteHireEcoAccountCustomFieldRequest {
2492
+ /** 适用范围 */
2493
+ scope: 1 | 2;
2494
+ /** 要删除的自定义字段的 key 列表 */
2495
+ custom_field_key_list?: string[];
2496
+ }
2497
+ export interface CreateHireEcoBackgroundCheckCustomFieldRequest {
2498
+ /** 背调账号 ID,可在「账号绑定」事件中获取 */
2499
+ account_id: string;
2500
+ /** 自定义字段列表 */
2501
+ custom_field_list: EcoBackgroundCheckCustomFieldData[];
2502
+ }
2503
+ export interface BatchUpdateHireEcoBackgroundCheckCustomFieldRequest {
2504
+ /** 背调账号 ID,可在「账号绑定」事件中获取 */
2505
+ account_id: string;
2506
+ /** 自定义字段列表 */
2507
+ custom_field_list: EcoBackgroundCheckCustomFieldData[];
2508
+ }
2509
+ export interface BatchDeleteHireEcoBackgroundCheckCustomFieldRequest {
2510
+ /** 背调账号 ID,可在「账号绑定」事件中获取 */
2511
+ account_id: string;
2512
+ }
2513
+ export interface CreateHireEcoBackgroundCheckPackageRequest {
2514
+ /** 背调账号 ID,可在「账号绑定」事件中获取 */
2515
+ account_id: string;
2516
+ /** 背调套餐列表 */
2517
+ package_list: EcoBackgroundCheckPackageData[];
2518
+ /** 附加调查项列表 */
2519
+ additional_item_list?: EcoBackgroundCheckPackageAdditionalItem[];
2520
+ }
2521
+ export interface BatchUpdateHireEcoBackgroundCheckPackageRequest {
2522
+ /** 背调账号 ID,可在「账号绑定」事件中获取 */
2523
+ account_id: string;
2524
+ /** 背调套餐列表 */
2525
+ package_list: EcoBackgroundCheckPackageData[];
2526
+ /** 附加调查项列表 */
2527
+ additional_item_list?: EcoBackgroundCheckPackageAdditionalItem[];
2528
+ }
2529
+ export interface BatchDeleteHireEcoBackgroundCheckPackageRequest {
2530
+ /** 背调账号 ID,可在「账号绑定」事件中获取 */
2531
+ account_id: string;
2532
+ /** 要删除的套餐 ID 列表,删除套餐不影响已安排的背调 */
2533
+ package_id_list?: string[];
2534
+ /** 要删除的附加调查项 ID 列表,删除附加调查项不影响已安排的背调 */
2535
+ additional_item_id_list?: string[];
2536
+ }
2537
+ export interface UpdateProgressHireEcoBackgroundCheckRequest {
2538
+ /** 背调 ID,招聘侧的 ID */
2539
+ background_check_id: string;
2540
+ /** 阶段 ID,同一背调订单此 ID 不能重复 */
2541
+ stage_id: string;
2542
+ /** 背调阶段英文名称 */
2543
+ stage_en_name?: string;
2544
+ /** 背调阶段名称 */
2545
+ stage_name: string;
2546
+ /** 进入到此背调阶段的时间 */
2547
+ stage_time: string;
2548
+ /** 阶段性背调结果 */
2549
+ result?: string;
2550
+ /** 操作人角色,默认值为 1 */
2551
+ operator_role?: 1 | 2;
2552
+ /** 报告列表 */
2553
+ report_file_list?: EcoBackgroundCheckReportFile[];
2554
+ }
2555
+ export interface UpdateResultHireEcoBackgroundCheckRequest {
2556
+ /** 背调 ID */
2557
+ background_check_id: string;
2558
+ /** 背调结果 */
2559
+ result: string;
2560
+ /** 背调结果时间 */
2561
+ result_time: string;
2562
+ /** 操作人角色,默认值为 1 */
2563
+ operator_role?: 1 | 2;
2564
+ /** 报告列表 */
2565
+ report_file_list?: EcoBackgroundCheckReportFile[];
2566
+ }
2567
+ export interface CancelHireEcoBackgroundCheckRequest {
2568
+ /** 背调 ID */
2569
+ background_check_id: string;
2570
+ }
2571
+ export interface CreateHireEcoExamPaperRequest {
2572
+ /** 账号 ID,可在「账号绑定」事件中获取 */
2573
+ account_id: string;
2574
+ /** 试卷列表 */
2575
+ paper_list: EcoExamPaperData[];
2576
+ }
2577
+ export interface BatchUpdateHireEcoExamPaperRequest {
2578
+ /** 账号 ID,可在「账号绑定」事件中获取 */
2579
+ account_id: string;
2580
+ /** 试卷列表 */
2581
+ paper_list: EcoExamPaperData[];
2582
+ }
2583
+ export interface BatchDeleteHireEcoExamPaperRequest {
2584
+ /** 背调账号 ID,可在「账号绑定」事件中获取 */
2585
+ account_id: string;
2586
+ /** 试卷 ID 列表 */
2587
+ paper_id_list: string[];
2588
+ }
2589
+ export interface LoginInfoHireEcoExamRequest {
2590
+ /** 状态码,0-成功 非零-错误码 */
2591
+ result?: number;
2592
+ /** 成功或失败的描述信息 */
2593
+ msg?: string;
2594
+ /** 笔试作答信息 */
2595
+ exam_login_info: EcoExamLoginInfo;
2596
+ }
2597
+ export interface UpdateResultHireEcoExamRequest {
2598
+ /** 笔试结果 */
2599
+ result: string;
2600
+ /** 笔试结果时间 */
2601
+ result_time?: string;
2602
+ /** 报告列表 */
2603
+ report_list?: EcoExamResultReport[];
2604
+ /** 详细评价结果 */
2605
+ detail_list?: EcoExamResultDetail[];
2606
+ }
2607
+ export interface EnableHireReferralAccountRequest {
2608
+ /** 账户 ID */
2609
+ referral_account_id?: string;
2610
+ }
2611
+ export interface EnableHireReferralAccountQuery {
2612
+ /** 此次调用中使用的用户ID的类型 */
2613
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2614
+ }
2615
+ export interface GetAccountAssetsHireReferralAccountQuery {
2616
+ /** 账户 ID */
2617
+ referral_account_id: string;
2618
+ /** 此次调用中使用的用户ID的类型 */
2619
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2620
+ }
2621
+ export interface CreateHireReferralAccountRequest {
2622
+ /** 电话 */
2623
+ mobile?: Mobile;
2624
+ /** 邮箱 */
2625
+ email?: string;
2626
+ }
2627
+ export interface CreateHireReferralAccountQuery {
2628
+ /** 此次调用中使用的用户ID的类型 */
2629
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2630
+ }
2631
+ export interface DeactivateHireReferralAccountQuery {
2632
+ /** 此次调用中使用的用户ID的类型 */
2633
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2634
+ }
2635
+ export interface WithdrawHireReferralAccountRequest {
2636
+ /** 请求提现的奖励类型 */
2637
+ withdraw_bonus_type: (1 | 2)[];
2638
+ /** 提现单ID,请求时由请求方提供,后续关于本次提现操作的交互都以此提现单ID为标识进行,需要保证唯一,用于保证提现的幂等性,传入重复ID会返回对应提现单提取的金额明细 */
2639
+ external_order_id: string;
2640
+ }
2641
+ export interface ReconciliationHireReferralAccountRequest {
2642
+ /** 按时间范围进行对账时 时间段的起始交易时间 */
2643
+ start_trans_time: string;
2644
+ /** 按时间范围进行对账时 时间段的截止交易时间 */
2645
+ end_trans_time: string;
2646
+ /** 交易信息 */
2647
+ trade_details?: TradeDetail[];
2648
+ }
2649
+ export interface GetHireAttachmentQuery {
2650
+ /** 附件类型 */
2651
+ type?: 1 | 2 | 3;
2652
+ }
2653
+ export interface ListHireApplicationInterviewQuery extends Pagination {
2654
+ /** 此次调用中使用的用户ID的类型 */
2655
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2656
+ /** 此次调用中使用的「职级 ID」的类型 */
2657
+ job_level_id_type?: 'people_admin_job_level_id' | 'job_level_id';
2658
+ }
2659
+ export interface SearchHireTalentOperationLogRequest {
2660
+ /** 职位 ID 列表 */
2661
+ job_id_list?: string[];
2662
+ /** 操作人 ID 列表 */
2663
+ operator_id_list: string[];
2664
+ /** 操作类型 ID 列表 */
2665
+ operation_list: number[];
2666
+ }
2667
+ export interface SearchHireTalentOperationLogQuery extends Pagination {
2668
+ /** 此次调用中使用的用户ID的类型 */
2669
+ user_id_type?: 'user_id' | 'union_id' | 'open_id';
2670
+ }
2671
+ export interface GetHireJobManagerQuery {
2672
+ /** 此次调用中使用的用户ID的类型 */
2673
+ user_id_type?: 'user_id' | 'union_id' | 'open_id' | 'people_admin_id';
2674
+ }
2675
+ export interface GetHireRoleResponse {
2676
+ /** 角色详情 */
2677
+ role?: RoleDetail;
2678
+ }
2679
+ export interface CombinedCreateHireJobResponse {
2680
+ /** 职位广告 */
2681
+ default_job_post?: CombinedJobResultDefaultJobPost;
2682
+ /** 职位 */
2683
+ job?: Job;
2684
+ /** 职位负责人 */
2685
+ job_manager?: JobManager;
2686
+ /** 面试登记表 */
2687
+ interview_registration_schema_info?: RegistrationSchemaInfo;
2688
+ /** 入职登记表 */
2689
+ onboard_registration_schema_info?: RegistrationSchemaInfo;
2690
+ /** 目标专业 */
2691
+ target_major_list?: TargetMajorInfo[];
2692
+ /** 官网申请表 */
2693
+ portal_website_apply_form_schema_info?: RegistrationSchemaInfo;
2694
+ }
2695
+ export interface CombinedUpdateHireJobResponse {
2696
+ /** 职位广告 */
2697
+ default_job_post?: CombinedJobResultDefaultJobPost;
2698
+ /** 职位 */
2699
+ job?: Job;
2700
+ /** 职位负责人 */
2701
+ job_manager?: JobManager;
2702
+ /** 官网申请表 */
2703
+ portal_website_apply_form_schema_info?: RegistrationSchemaInfo;
2704
+ }
2705
+ export interface UpdateConfigHireJobResponse {
2706
+ job_config?: JobConfigResult;
2707
+ }
2708
+ export interface BatchUpdateHireJobManagerResponse {
2709
+ /** 职位负责人 */
2710
+ job_manager?: JobManager;
2711
+ }
2712
+ export interface GetDetailHireJobResponse {
2713
+ /** 职位详情数据 */
2714
+ job_detail?: JobDetail;
2715
+ }
2716
+ export interface GetHireJobResponse {
2717
+ /** 职位数据 */
2718
+ job?: Job;
2719
+ }
2720
+ export interface RecruiterHireJobResponse {
2721
+ /** 职位负责人 */
2722
+ info?: JobRecruiter2;
2723
+ }
2724
+ export interface ConfigHireJobResponse {
2725
+ job_config?: JobConfigResult;
2726
+ }
2727
+ export interface CreateHireJobRequirementResponse {
2728
+ job_requirement?: JobRequirementDto;
2729
+ }
2730
+ export interface ListByIdHireJobRequirementResponse {
2731
+ /** 招聘需求列表 */
2732
+ items?: JobRequirementDto[];
2733
+ }
2734
+ export interface ListHireInterviewRoundTypeResponse {
2735
+ /** 是否启用面试轮次类型 */
2736
+ active_status?: 1 | 2;
2737
+ /** 列表 */
2738
+ items?: InterviewRoundType[];
2739
+ }
2740
+ export interface PatchHireInterviewerResponse {
2741
+ /** 面试官信息 */
2742
+ interviewer?: Interviewer;
2743
+ }
2744
+ export interface GetHireOfferApplicationFormResponse {
2745
+ /** Offer 申请表详情 */
2746
+ offer_apply_form?: OfferApplyFormInfo;
2747
+ }
2748
+ export interface SearchHireReferralResponse {
2749
+ /** 内推信息列表 */
2750
+ items?: ReferralInfo[];
2751
+ }
2752
+ export interface GetHireReferralWebsiteJobPostResponse {
2753
+ job_post?: PortalJobPost;
2754
+ }
2755
+ export interface GetByApplicationHireReferralResponse {
2756
+ /** 内推信息 */
2757
+ referral?: Referral;
2758
+ }
2759
+ export interface CreateHireWebsiteChannelResponse {
2760
+ /** 推广渠道 ID */
2761
+ id?: string;
2762
+ /** 推广渠道名称 */
2763
+ name?: string;
2764
+ /** 推广渠道链接 */
2765
+ link?: string;
2766
+ /** 推广渠道推广码 */
2767
+ code?: string;
2768
+ }
2769
+ export interface UpdateHireWebsiteChannelResponse {
2770
+ /** 推广渠道 ID */
2771
+ id?: string;
2772
+ /** 推广渠道名称 */
2773
+ name?: string;
2774
+ /** 推广渠道链接 */
2775
+ link?: string;
2776
+ /** 推广渠道推广码 */
2777
+ code?: string;
2778
+ }
2779
+ export interface CreateHireWebsiteSiteUserResponse {
2780
+ site_user?: WebsiteUser;
2781
+ }
2782
+ export interface GetHireWebsiteJobPostResponse {
2783
+ job_post?: WebsiteJobPost;
2784
+ }
2785
+ export interface CreateByResumeHireWebsiteDeliveryResponse {
2786
+ delivery?: WebsiteDeliveryDto;
2787
+ }
2788
+ export interface CreateByAttachmentHireWebsiteDeliveryResponse {
2789
+ /** 异步任务 ID */
2790
+ task_id?: string;
2791
+ }
2792
+ export interface GetHireWebsiteDeliveryTaskResponse {
2793
+ /** 任务状态 */
2794
+ status?: 0 | 1 | 2 | 3;
2795
+ /** 官网投递信息 */
2796
+ delivery?: WebsiteDeliveryDto;
2797
+ /** 状态信息,仅 status 为 3 时返回 */
2798
+ status_msg?: string;
2799
+ /** 附加信息,当前返回投递 ID,仅当 status 为 3 且 status_msg 标识为重复投递时,将返回重复投递的 ID */
2800
+ extra_info?: string;
2801
+ }
2802
+ export interface GetHireAgencyResponse {
2803
+ /** 数据 */
2804
+ agency?: Agency;
2805
+ }
2806
+ export interface ProtectSearchHireAgencyResponse {
2807
+ /** 是否已入职 */
2808
+ is_onboarded?: boolean;
2809
+ /** 是否在猎头保护期内入职 */
2810
+ onboarded_in_protection?: boolean;
2811
+ /** 入职所在保护期 */
2812
+ onboarded_protection?: AgencyProtection;
2813
+ /** 人才保护信息 */
2814
+ protection_list?: AgencyProtection[];
2815
+ }
2816
+ export interface QueryHireAgencyResponse {
2817
+ items?: Agency[];
2818
+ }
2819
+ export interface CreateHireTalentExternalInfoResponse {
2820
+ /** 人才外部信息 */
2821
+ external_info?: TalentExternalInfo;
2822
+ }
2823
+ export interface UpdateHireTalentExternalInfoResponse {
2824
+ /** 人才外部信息 */
2825
+ external_info?: TalentExternalInfo;
2826
+ }
2827
+ export interface CreateHireExternalApplicationResponse {
2828
+ external_application?: ExternalApplication;
2829
+ }
2830
+ export interface UpdateHireExternalApplicationResponse {
2831
+ external_application?: ExternalApplication;
2832
+ }
2833
+ export interface DeleteHireExternalApplicationResponse {
2834
+ external_application?: ExternalApplication;
2835
+ }
2836
+ export interface CreateHireExternalInterviewResponse {
2837
+ external_interview?: ExternalInterview;
2838
+ }
2839
+ export interface UpdateHireExternalInterviewResponse {
2840
+ external_interview?: ExternalInterview;
2841
+ }
2842
+ export interface CreateHireExternalInterviewAssessmentResponse {
2843
+ external_interview_assessment?: ExternalInterviewAssessment;
2844
+ }
2845
+ export interface PatchHireExternalInterviewAssessmentResponse {
2846
+ external_interview_assessment?: ExternalInterviewAssessment;
2847
+ }
2848
+ export interface CreateHireExternalOfferResponse {
2849
+ external_offer?: ExternalOffer;
2850
+ }
2851
+ export interface UpdateHireExternalOfferResponse {
2852
+ external_offer?: ExternalOffer;
2853
+ }
2854
+ export interface CreateHireExternalBackgroundCheckResponse {
2855
+ external_background_check?: ExternalBackgroundCheck;
2856
+ }
2857
+ export interface UpdateHireExternalBackgroundCheckResponse {
2858
+ external_background_check?: ExternalBackgroundCheck;
2859
+ }
2860
+ export interface CreateHireExternalReferralRewardResponse {
2861
+ /** 创建的内推奖励的id */
2862
+ id?: string;
2863
+ }
2864
+ export interface MoveTalentHireTalentPoolResponse {
2865
+ /** 人才库ID */
2866
+ talent_pool_id?: string;
2867
+ /** 人才ID */
2868
+ talent_id?: string;
2869
+ }
2870
+ export interface CombinedCreateHireTalentResponse {
2871
+ /** 人才 ID */
2872
+ talent_id?: string;
2873
+ /** 创建人 ID */
2874
+ creator_id?: string;
2875
+ /** 创建人类型 */
2876
+ creator_account_type?: 1 | 3;
2877
+ }
2878
+ export interface CombinedUpdateHireTalentResponse {
2879
+ /** 人才 ID */
2880
+ talent_id?: string;
2881
+ /** 更新人 ID */
2882
+ operator_id?: string;
2883
+ /** 更新人类型 */
2884
+ operator_account_type?: 1 | 3;
2885
+ }
2886
+ export interface AddToFolderHireTalentResponse {
2887
+ /** 人才 ID 列表 */
2888
+ talent_id_list?: string[];
2889
+ /** 文件夹 ID */
2890
+ folder_id?: string;
2891
+ }
2892
+ export interface RemoveToFolderHireTalentResponse {
2893
+ /** 人才 ID 列表 */
2894
+ talent_id_list?: string[];
2895
+ /** 文件夹 ID */
2896
+ folder_id?: string;
2897
+ }
2898
+ export interface BatchGetIdHireTalentResponse {
2899
+ /** 人才信息列表 */
2900
+ talent_list?: TalentBatchInfo[];
2901
+ }
2902
+ export interface QueryHireTalentObjectResponse {
2903
+ items?: CommonSchema[];
2904
+ }
2905
+ export interface GetHireTalentResponse {
2906
+ /** 人才信息 */
2907
+ talent?: Talent;
2908
+ }
2909
+ export interface GetHireTalentResponse {
2910
+ /** ID */
2911
+ talent_id?: string;
2912
+ /** 基础信息 */
2913
+ basic_info?: CompositeTalentBasicInfo;
2914
+ /** 教育经历 */
2915
+ education_list?: CompositeTalentEducationInfo[];
2916
+ /** 工作经历 */
2917
+ career_list?: CompositeTalentCareerInfo[];
2918
+ /** 项目经历 */
2919
+ project_list?: CompositeTalentProjectInfo[];
2920
+ /** 作品集 */
2921
+ works_list?: CompositeTalentWorksInfo[];
2922
+ /** 获奖列表 */
2923
+ award_list?: CompositeTalentAwardInfo[];
2924
+ /** 语言列表 */
2925
+ language_list?: CompositeTalentLanguageInfo[];
2926
+ /** SNS列表 */
2927
+ sns_list?: CompositeTalentSnsInfo[];
2928
+ /** 简历来源 */
2929
+ resume_source_list?: TalentResumeSource[];
2930
+ /** 实习经历 */
2931
+ internship_list?: CompositeTalentInternshipInfo[];
2932
+ /** 自定义字段 */
2933
+ customized_data_list?: CompositeTalentCustomizedData[];
2934
+ /** 简历附件id列表(按照简历创建时间降序)(废弃,请使用resume_attachment_list代替) */
2935
+ resume_attachment_id_list?: string[];
2936
+ /** 简历附件列表(按照简历创建时间降序) */
2937
+ resume_attachment_list?: TalentResumeAttachment[];
2938
+ /** 面试登记表 */
2939
+ interview_registration_list?: TalentInterviewRegistrationSimple[];
2940
+ /** 登记表列表 */
2941
+ registration_list?: RegistrationBasicInfo[];
2942
+ /** 是否已入职 */
2943
+ is_onboarded?: boolean;
2944
+ /** 是否在猎头保护期 */
2945
+ is_in_agency_period?: boolean;
2946
+ /** 最高学历 参考 DegreeType 枚举 */
2947
+ top_degree?: number;
2948
+ /** 人才已加入的人才库列表 */
2949
+ talent_pool_id_list?: string[];
2950
+ /** 文件夹列表 */
2951
+ talent_folder_ref_list_v2?: TalentFolder[];
2952
+ /** 标签列表 */
2953
+ tag_list?: TalentTag[];
2954
+ /** 相似人才信息 */
2955
+ similar_info_v2?: TalentSimilar;
2956
+ /** 人才黑名单详情 */
2957
+ block_info?: TalentBlock;
2958
+ /** 人才已经加入的人才库列表 */
2959
+ talent_pool_ref_list_v2?: TalentPool[];
2960
+ /** 备注列表 */
2961
+ note_list_v2?: TalentNote[];
2962
+ }
2963
+ export interface GetDetailHireApplicationResponse {
2964
+ /** 投递详情 */
2965
+ application_detail?: ApplicationDetailInfo;
2966
+ }
2967
+ export interface CreateHireApplicationResponse {
2968
+ /** 投递ID */
2969
+ id?: string;
2970
+ }
2971
+ export interface GetHireApplicationResponse {
2972
+ /** 投递数据 */
2973
+ application?: Application;
2974
+ }
2975
+ export interface SearchHireDiversityInclusionResponse {
2976
+ /** 多元化与包容性信息列表 */
2977
+ items?: DiInfo[];
2978
+ }
2979
+ export interface CreateHireExamResponse {
2980
+ /** 笔试 ID */
2981
+ exam_id?: string;
2982
+ /** 投递 ID */
2983
+ application_id?: string;
2984
+ /** 试卷名称 */
2985
+ exam_resource_name?: string;
2986
+ /** 笔试分数 */
2987
+ score?: number;
2988
+ /** 附件ID */
2989
+ uuid?: string;
2990
+ /** 操作人 ID */
2991
+ operator_id?: string;
2992
+ /** 操作时间 */
2993
+ operate_time?: string;
2994
+ }
2995
+ export interface GetByTalentHireInterviewResponse {
2996
+ /** 投递面试列表 */
2997
+ items?: TalentInterview[];
2998
+ }
2999
+ export interface GetHireInterviewRecordResponse {
3000
+ /** 数据 */
3001
+ interview_record?: InterviewRecord;
3002
+ }
3003
+ export interface GetHireInterviewRecordResponse {
3004
+ interview_record?: InterviewRecord;
3005
+ }
3006
+ export interface GetHireInterviewRecordAttachmentResponse {
3007
+ /** 附件信息 */
3008
+ attachment?: AttachmentInfo;
3009
+ }
3010
+ export interface GetHireMinutesResponse {
3011
+ minutes?: Minutes;
3012
+ /** 分页标记,当 has_more 为 true 时,会同时返回新的 page_token,否则不返回 page_token */
3013
+ page_token?: string;
3014
+ /** 对应面试是否还有更多项 */
3015
+ has_more?: boolean;
3016
+ }
3017
+ export interface CreateHireOfferResponse {
3018
+ /** Offer ID */
3019
+ offer_id?: string;
3020
+ /** 投递 ID */
3021
+ application_id?: string;
3022
+ /** 模板 ID */
3023
+ schema_id?: string;
3024
+ /** Offer 类型 */
3025
+ offer_type?: 1 | 2;
3026
+ /** Offer 基本信息 */
3027
+ basic_info?: OfferBasicInfo;
3028
+ /** Offer 薪资信息 */
3029
+ salary_info?: OfferSalaryInfo;
3030
+ /** 自定义信息 */
3031
+ customized_info_list?: OfferCustomizedInfo[];
3032
+ }
3033
+ export interface UpdateHireOfferResponse {
3034
+ /** Offer ID */
3035
+ offer_id?: string;
3036
+ /** 模板 ID */
3037
+ schema_id?: string;
3038
+ /** Offer 基本信息 */
3039
+ basic_info?: OfferBasicInfo;
3040
+ /** Offer 薪资信息 */
3041
+ salary_info?: OfferSalaryInfo;
3042
+ /** 自定义信息 */
3043
+ customized_info_list?: OfferCustomizedInfo[];
3044
+ }
3045
+ export interface OfferHireApplicationResponse {
3046
+ offer?: ApplicationOffer;
3047
+ }
3048
+ export interface GetHireOfferResponse {
3049
+ /** Offer 详情 */
3050
+ offer?: Offer;
3051
+ }
3052
+ export interface InternOfferStatusHireOfferResponse {
3053
+ /** Offer ID */
3054
+ offer_id?: string;
3055
+ /** 更新入/离职状态的操作 */
3056
+ operation: 'confirm_onboarding' | 'cancel_onboarding' | 'offboard';
3057
+ /** 入职表单信息(当 operation 为 confirm_onboarding 时,该字段必填) */
3058
+ onboarding_info?: InternOfferOnboardingInfo;
3059
+ /** 离职表单信息(当 operation 为 offboard 时,该字段必填) */
3060
+ offboarding_info?: InternOfferOffboardingInfo;
3061
+ }
3062
+ export interface CreateHireTripartiteAgreementResponse {
3063
+ /** 创建的三方协议的 id */
3064
+ id?: string;
3065
+ }
3066
+ export interface UpdateHireTripartiteAgreementResponse {
3067
+ /** 三方协议信息 */
3068
+ tripartite_agreement?: TripartiteAgreementInfo;
3069
+ }
3070
+ export interface TransferOnboardHireApplicationResponse {
3071
+ /** employee */
3072
+ employee?: Employee;
3073
+ }
3074
+ export interface PatchHireEmployeeResponse {
3075
+ /** 员工信息 */
3076
+ employee?: Employee;
3077
+ }
3078
+ export interface GetByApplicationHireEmployeeResponse {
3079
+ /** 员工信息 */
3080
+ employee?: Employee;
3081
+ }
3082
+ export interface GetHireEmployeeResponse {
3083
+ /** 员工信息 */
3084
+ employee?: Employee;
3085
+ }
3086
+ export interface CreateHireNoteResponse {
3087
+ note?: Note;
3088
+ }
3089
+ export interface PatchHireNoteResponse {
3090
+ /** 备注数据 */
3091
+ note?: Note;
3092
+ }
3093
+ export interface GetHireNoteResponse {
3094
+ /** 备注数据 */
3095
+ note?: Note;
3096
+ }
3097
+ export interface EnableHireReferralAccountResponse {
3098
+ /** 账号信息 */
3099
+ account?: Account;
3100
+ }
3101
+ export interface GetAccountAssetsHireReferralAccountResponse {
3102
+ /** 账户信息 */
3103
+ account?: Account;
3104
+ }
3105
+ export interface CreateHireReferralAccountResponse {
3106
+ /** 账号信息 */
3107
+ account?: Account;
3108
+ }
3109
+ export interface DeactivateHireReferralAccountResponse {
3110
+ /** 账号信息 */
3111
+ account?: Account;
3112
+ }
3113
+ export interface WithdrawHireReferralAccountResponse {
3114
+ /** 请求时传入的提现单ID */
3115
+ external_order_id?: string;
3116
+ /** 交易时间戳,需要保存,用于统一交易时间,方便对账 */
3117
+ trans_time?: string;
3118
+ /** 本次提现金额明细 */
3119
+ withdrawal_details?: BonusAmount;
3120
+ }
3121
+ export interface ReconciliationHireReferralAccountResponse {
3122
+ /** 核对失败的信息 */
3123
+ check_failed_list?: CheckFailedAccountInfo[];
3124
+ }
3125
+ export interface CreateHireAttachmentResponse {
3126
+ /** 上传文件的 id */
3127
+ id?: string;
3128
+ }
3129
+ export interface GetHireAttachmentResponse {
3130
+ /** 附件信息 */
3131
+ attachment?: Attachment;
3132
+ }
3133
+ export interface PreviewHireAttachmentResponse {
3134
+ /** 预览链接 */
3135
+ url: string;
3136
+ }
3137
+ export interface GetHireJobManagerResponse {
3138
+ /** 职位负责人 */
3139
+ info?: JobManager;
3140
+ }
3141
+ export interface GetHireOfferSchemaResponse {
3142
+ /** offer申请表ID */
3143
+ id?: string;
3144
+ /** offer申请表使用场景 */
3145
+ scenario?: 1;
3146
+ /** 申请表版本 */
3147
+ version?: number;
3148
+ /** 字段对象信息 */
3149
+ object_list?: OfferSchemaDetail[];
3150
+ }