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