@in-human-resources/backend-proto 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +63 -0
- package/buf.gen.yaml +17 -0
- package/buf.yaml +10 -0
- package/gen/ts/api/v1/auth_connect.ts +195 -0
- package/gen/ts/api/v1/auth_pb.ts +1282 -0
- package/gen/ts/api/v1/candidate_connect.ts +172 -0
- package/gen/ts/api/v1/candidate_pb.ts +1192 -0
- package/gen/ts/api/v1/common_pb.ts +441 -0
- package/gen/ts/api/v1/company_connect.ts +170 -0
- package/gen/ts/api/v1/company_pb.ts +1078 -0
- package/gen/ts/auth/v1/service_connect.ts +567 -0
- package/gen/ts/auth/v1/service_pb.ts +5373 -0
- package/gen/ts/common/v1/common_pb.ts +51 -0
- package/package.json +38 -0
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
// @generated by protoc-gen-connect-es v1.7.0 with parameter "target=ts"
|
|
2
|
+
// @generated from file api/v1/candidate.proto (package api.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import { AddCandidateExperienceRequest, CandidateProfileResponse, CheckApplicationReadyRequest, CheckApplicationReadyResponse, DeleteCandidateExperienceRequest, GetCandidateOnboardingStatusRequest, GetCandidateProfileRequest, SubmitCandidateBasicProfileRequest, SubmitCandidateExperienceRequest, SubmitCandidatePreferencesRequest, SubmitCandidateResumeRequest, SubmitCandidateSkillsRequest, UpdateCandidateExperienceRequest, UpdateCandidatePreferencesRequest, UpdateCandidateProfileRequest, UpdateCandidateSkillsRequest } from "./candidate_pb.js";
|
|
7
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
|
+
import { CompleteOnboardingRequest, OnboardingStatusResponse, SkipOnboardingStepRequest } from "./common_pb.js";
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* CandidateService is the client-facing candidate profile service.
|
|
12
|
+
*
|
|
13
|
+
* @generated from service api.v1.CandidateService
|
|
14
|
+
*/
|
|
15
|
+
export const CandidateService = {
|
|
16
|
+
typeName: "api.v1.CandidateService",
|
|
17
|
+
methods: {
|
|
18
|
+
/**
|
|
19
|
+
* Profile management
|
|
20
|
+
*
|
|
21
|
+
* @generated from rpc api.v1.CandidateService.GetCandidateProfile
|
|
22
|
+
*/
|
|
23
|
+
getCandidateProfile: {
|
|
24
|
+
name: "GetCandidateProfile",
|
|
25
|
+
I: GetCandidateProfileRequest,
|
|
26
|
+
O: CandidateProfileResponse,
|
|
27
|
+
kind: MethodKind.Unary,
|
|
28
|
+
},
|
|
29
|
+
/**
|
|
30
|
+
* @generated from rpc api.v1.CandidateService.UpdateCandidateProfile
|
|
31
|
+
*/
|
|
32
|
+
updateCandidateProfile: {
|
|
33
|
+
name: "UpdateCandidateProfile",
|
|
34
|
+
I: UpdateCandidateProfileRequest,
|
|
35
|
+
O: CandidateProfileResponse,
|
|
36
|
+
kind: MethodKind.Unary,
|
|
37
|
+
},
|
|
38
|
+
/**
|
|
39
|
+
* @generated from rpc api.v1.CandidateService.UpdateCandidateSkills
|
|
40
|
+
*/
|
|
41
|
+
updateCandidateSkills: {
|
|
42
|
+
name: "UpdateCandidateSkills",
|
|
43
|
+
I: UpdateCandidateSkillsRequest,
|
|
44
|
+
O: CandidateProfileResponse,
|
|
45
|
+
kind: MethodKind.Unary,
|
|
46
|
+
},
|
|
47
|
+
/**
|
|
48
|
+
* @generated from rpc api.v1.CandidateService.UpdateCandidatePreferences
|
|
49
|
+
*/
|
|
50
|
+
updateCandidatePreferences: {
|
|
51
|
+
name: "UpdateCandidatePreferences",
|
|
52
|
+
I: UpdateCandidatePreferencesRequest,
|
|
53
|
+
O: CandidateProfileResponse,
|
|
54
|
+
kind: MethodKind.Unary,
|
|
55
|
+
},
|
|
56
|
+
/**
|
|
57
|
+
* Experience management
|
|
58
|
+
*
|
|
59
|
+
* @generated from rpc api.v1.CandidateService.AddCandidateExperience
|
|
60
|
+
*/
|
|
61
|
+
addCandidateExperience: {
|
|
62
|
+
name: "AddCandidateExperience",
|
|
63
|
+
I: AddCandidateExperienceRequest,
|
|
64
|
+
O: CandidateProfileResponse,
|
|
65
|
+
kind: MethodKind.Unary,
|
|
66
|
+
},
|
|
67
|
+
/**
|
|
68
|
+
* @generated from rpc api.v1.CandidateService.UpdateCandidateExperience
|
|
69
|
+
*/
|
|
70
|
+
updateCandidateExperience: {
|
|
71
|
+
name: "UpdateCandidateExperience",
|
|
72
|
+
I: UpdateCandidateExperienceRequest,
|
|
73
|
+
O: CandidateProfileResponse,
|
|
74
|
+
kind: MethodKind.Unary,
|
|
75
|
+
},
|
|
76
|
+
/**
|
|
77
|
+
* @generated from rpc api.v1.CandidateService.DeleteCandidateExperience
|
|
78
|
+
*/
|
|
79
|
+
deleteCandidateExperience: {
|
|
80
|
+
name: "DeleteCandidateExperience",
|
|
81
|
+
I: DeleteCandidateExperienceRequest,
|
|
82
|
+
O: CandidateProfileResponse,
|
|
83
|
+
kind: MethodKind.Unary,
|
|
84
|
+
},
|
|
85
|
+
/**
|
|
86
|
+
* Application readiness
|
|
87
|
+
*
|
|
88
|
+
* @generated from rpc api.v1.CandidateService.CheckApplicationReady
|
|
89
|
+
*/
|
|
90
|
+
checkApplicationReady: {
|
|
91
|
+
name: "CheckApplicationReady",
|
|
92
|
+
I: CheckApplicationReadyRequest,
|
|
93
|
+
O: CheckApplicationReadyResponse,
|
|
94
|
+
kind: MethodKind.Unary,
|
|
95
|
+
},
|
|
96
|
+
/**
|
|
97
|
+
* Candidate onboarding (step-by-step)
|
|
98
|
+
*
|
|
99
|
+
* @generated from rpc api.v1.CandidateService.GetCandidateOnboardingStatus
|
|
100
|
+
*/
|
|
101
|
+
getCandidateOnboardingStatus: {
|
|
102
|
+
name: "GetCandidateOnboardingStatus",
|
|
103
|
+
I: GetCandidateOnboardingStatusRequest,
|
|
104
|
+
O: OnboardingStatusResponse,
|
|
105
|
+
kind: MethodKind.Unary,
|
|
106
|
+
},
|
|
107
|
+
/**
|
|
108
|
+
* @generated from rpc api.v1.CandidateService.SubmitCandidateBasicProfile
|
|
109
|
+
*/
|
|
110
|
+
submitCandidateBasicProfile: {
|
|
111
|
+
name: "SubmitCandidateBasicProfile",
|
|
112
|
+
I: SubmitCandidateBasicProfileRequest,
|
|
113
|
+
O: OnboardingStatusResponse,
|
|
114
|
+
kind: MethodKind.Unary,
|
|
115
|
+
},
|
|
116
|
+
/**
|
|
117
|
+
* @generated from rpc api.v1.CandidateService.SubmitCandidateResume
|
|
118
|
+
*/
|
|
119
|
+
submitCandidateResume: {
|
|
120
|
+
name: "SubmitCandidateResume",
|
|
121
|
+
I: SubmitCandidateResumeRequest,
|
|
122
|
+
O: OnboardingStatusResponse,
|
|
123
|
+
kind: MethodKind.Unary,
|
|
124
|
+
},
|
|
125
|
+
/**
|
|
126
|
+
* @generated from rpc api.v1.CandidateService.SubmitCandidateSkills
|
|
127
|
+
*/
|
|
128
|
+
submitCandidateSkills: {
|
|
129
|
+
name: "SubmitCandidateSkills",
|
|
130
|
+
I: SubmitCandidateSkillsRequest,
|
|
131
|
+
O: OnboardingStatusResponse,
|
|
132
|
+
kind: MethodKind.Unary,
|
|
133
|
+
},
|
|
134
|
+
/**
|
|
135
|
+
* @generated from rpc api.v1.CandidateService.SubmitCandidateExperience
|
|
136
|
+
*/
|
|
137
|
+
submitCandidateExperience: {
|
|
138
|
+
name: "SubmitCandidateExperience",
|
|
139
|
+
I: SubmitCandidateExperienceRequest,
|
|
140
|
+
O: OnboardingStatusResponse,
|
|
141
|
+
kind: MethodKind.Unary,
|
|
142
|
+
},
|
|
143
|
+
/**
|
|
144
|
+
* @generated from rpc api.v1.CandidateService.SubmitCandidatePreferences
|
|
145
|
+
*/
|
|
146
|
+
submitCandidatePreferences: {
|
|
147
|
+
name: "SubmitCandidatePreferences",
|
|
148
|
+
I: SubmitCandidatePreferencesRequest,
|
|
149
|
+
O: OnboardingStatusResponse,
|
|
150
|
+
kind: MethodKind.Unary,
|
|
151
|
+
},
|
|
152
|
+
/**
|
|
153
|
+
* @generated from rpc api.v1.CandidateService.SkipCandidateOnboardingStep
|
|
154
|
+
*/
|
|
155
|
+
skipCandidateOnboardingStep: {
|
|
156
|
+
name: "SkipCandidateOnboardingStep",
|
|
157
|
+
I: SkipOnboardingStepRequest,
|
|
158
|
+
O: OnboardingStatusResponse,
|
|
159
|
+
kind: MethodKind.Unary,
|
|
160
|
+
},
|
|
161
|
+
/**
|
|
162
|
+
* @generated from rpc api.v1.CandidateService.CompleteCandidateOnboarding
|
|
163
|
+
*/
|
|
164
|
+
completeCandidateOnboarding: {
|
|
165
|
+
name: "CompleteCandidateOnboarding",
|
|
166
|
+
I: CompleteOnboardingRequest,
|
|
167
|
+
O: OnboardingStatusResponse,
|
|
168
|
+
kind: MethodKind.Unary,
|
|
169
|
+
},
|
|
170
|
+
}
|
|
171
|
+
} as const;
|
|
172
|
+
|