@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.
@@ -0,0 +1,441 @@
1
+ // @generated by protoc-gen-es v1.10.1 with parameter "target=ts,import_extension=.js"
2
+ // @generated from file api/v1/common.proto (package api.v1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+
6
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
7
+ import { Message, proto3 } from "@bufbuild/protobuf";
8
+
9
+ /**
10
+ * RequestContext contains metadata about the client request.
11
+ * This is optional and can be used for idempotency, tracing, etc.
12
+ *
13
+ * @generated from message api.v1.RequestContext
14
+ */
15
+ export class RequestContext extends Message<RequestContext> {
16
+ /**
17
+ * @generated from field: string request_id = 1;
18
+ */
19
+ requestId = "";
20
+
21
+ /**
22
+ * @generated from field: string idempotency_key = 2;
23
+ */
24
+ idempotencyKey = "";
25
+
26
+ /**
27
+ * @generated from field: string client_version = 3;
28
+ */
29
+ clientVersion = "";
30
+
31
+ /**
32
+ * "mobile", "web", "desktop"
33
+ *
34
+ * @generated from field: string device_type = 4;
35
+ */
36
+ deviceType = "";
37
+
38
+ /**
39
+ * @generated from field: string device_id = 5;
40
+ */
41
+ deviceId = "";
42
+
43
+ /**
44
+ * @generated from field: map<string, string> metadata = 10;
45
+ */
46
+ metadata: { [key: string]: string } = {};
47
+
48
+ constructor(data?: PartialMessage<RequestContext>) {
49
+ super();
50
+ proto3.util.initPartial(data, this);
51
+ }
52
+
53
+ static readonly runtime: typeof proto3 = proto3;
54
+ static readonly typeName = "api.v1.RequestContext";
55
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
56
+ { no: 1, name: "request_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
57
+ { no: 2, name: "idempotency_key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
58
+ { no: 3, name: "client_version", kind: "scalar", T: 9 /* ScalarType.STRING */ },
59
+ { no: 4, name: "device_type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
60
+ { no: 5, name: "device_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
61
+ { no: 10, name: "metadata", kind: "map", K: 9 /* ScalarType.STRING */, V: {kind: "scalar", T: 9 /* ScalarType.STRING */} },
62
+ ]);
63
+
64
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RequestContext {
65
+ return new RequestContext().fromBinary(bytes, options);
66
+ }
67
+
68
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RequestContext {
69
+ return new RequestContext().fromJson(jsonValue, options);
70
+ }
71
+
72
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RequestContext {
73
+ return new RequestContext().fromJsonString(jsonString, options);
74
+ }
75
+
76
+ static equals(a: RequestContext | PlainMessage<RequestContext> | undefined, b: RequestContext | PlainMessage<RequestContext> | undefined): boolean {
77
+ return proto3.util.equals(RequestContext, a, b);
78
+ }
79
+ }
80
+
81
+ /**
82
+ * ProfileCompletion tracks how complete a user's profile is.
83
+ *
84
+ * @generated from message api.v1.ProfileCompletion
85
+ */
86
+ export class ProfileCompletion extends Message<ProfileCompletion> {
87
+ /**
88
+ * @generated from field: int32 completion_percentage = 1;
89
+ */
90
+ completionPercentage = 0;
91
+
92
+ /**
93
+ * @generated from field: bool can_apply_to_jobs = 2;
94
+ */
95
+ canApplyToJobs = false;
96
+
97
+ /**
98
+ * @generated from field: repeated string missing_for_application = 3;
99
+ */
100
+ missingForApplication: string[] = [];
101
+
102
+ /**
103
+ * @generated from field: string next_suggested_action = 4;
104
+ */
105
+ nextSuggestedAction = "";
106
+
107
+ constructor(data?: PartialMessage<ProfileCompletion>) {
108
+ super();
109
+ proto3.util.initPartial(data, this);
110
+ }
111
+
112
+ static readonly runtime: typeof proto3 = proto3;
113
+ static readonly typeName = "api.v1.ProfileCompletion";
114
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
115
+ { no: 1, name: "completion_percentage", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
116
+ { no: 2, name: "can_apply_to_jobs", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
117
+ { no: 3, name: "missing_for_application", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
118
+ { no: 4, name: "next_suggested_action", kind: "scalar", T: 9 /* ScalarType.STRING */ },
119
+ ]);
120
+
121
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ProfileCompletion {
122
+ return new ProfileCompletion().fromBinary(bytes, options);
123
+ }
124
+
125
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ProfileCompletion {
126
+ return new ProfileCompletion().fromJson(jsonValue, options);
127
+ }
128
+
129
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ProfileCompletion {
130
+ return new ProfileCompletion().fromJsonString(jsonString, options);
131
+ }
132
+
133
+ static equals(a: ProfileCompletion | PlainMessage<ProfileCompletion> | undefined, b: ProfileCompletion | PlainMessage<ProfileCompletion> | undefined): boolean {
134
+ return proto3.util.equals(ProfileCompletion, a, b);
135
+ }
136
+ }
137
+
138
+ /**
139
+ * SessionInfo represents an active user session.
140
+ *
141
+ * @generated from message api.v1.SessionInfo
142
+ */
143
+ export class SessionInfo extends Message<SessionInfo> {
144
+ /**
145
+ * @generated from field: string session_id = 1;
146
+ */
147
+ sessionId = "";
148
+
149
+ /**
150
+ * @generated from field: string ip_address = 2;
151
+ */
152
+ ipAddress = "";
153
+
154
+ /**
155
+ * @generated from field: string user_agent = 3;
156
+ */
157
+ userAgent = "";
158
+
159
+ /**
160
+ * @generated from field: string device_name = 4;
161
+ */
162
+ deviceName = "";
163
+
164
+ /**
165
+ * @generated from field: string location = 5;
166
+ */
167
+ location = "";
168
+
169
+ /**
170
+ * @generated from field: string last_used_at = 6;
171
+ */
172
+ lastUsedAt = "";
173
+
174
+ /**
175
+ * @generated from field: string created_at = 7;
176
+ */
177
+ createdAt = "";
178
+
179
+ /**
180
+ * @generated from field: bool is_current = 8;
181
+ */
182
+ isCurrent = false;
183
+
184
+ constructor(data?: PartialMessage<SessionInfo>) {
185
+ super();
186
+ proto3.util.initPartial(data, this);
187
+ }
188
+
189
+ static readonly runtime: typeof proto3 = proto3;
190
+ static readonly typeName = "api.v1.SessionInfo";
191
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
192
+ { no: 1, name: "session_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
193
+ { no: 2, name: "ip_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
194
+ { no: 3, name: "user_agent", kind: "scalar", T: 9 /* ScalarType.STRING */ },
195
+ { no: 4, name: "device_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
196
+ { no: 5, name: "location", kind: "scalar", T: 9 /* ScalarType.STRING */ },
197
+ { no: 6, name: "last_used_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
198
+ { no: 7, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
199
+ { no: 8, name: "is_current", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
200
+ ]);
201
+
202
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SessionInfo {
203
+ return new SessionInfo().fromBinary(bytes, options);
204
+ }
205
+
206
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SessionInfo {
207
+ return new SessionInfo().fromJson(jsonValue, options);
208
+ }
209
+
210
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SessionInfo {
211
+ return new SessionInfo().fromJsonString(jsonString, options);
212
+ }
213
+
214
+ static equals(a: SessionInfo | PlainMessage<SessionInfo> | undefined, b: SessionInfo | PlainMessage<SessionInfo> | undefined): boolean {
215
+ return proto3.util.equals(SessionInfo, a, b);
216
+ }
217
+ }
218
+
219
+ /**
220
+ * Empty is used for RPCs that don't return data (just success/failure).
221
+ *
222
+ * @generated from message api.v1.Empty
223
+ */
224
+ export class Empty extends Message<Empty> {
225
+ constructor(data?: PartialMessage<Empty>) {
226
+ super();
227
+ proto3.util.initPartial(data, this);
228
+ }
229
+
230
+ static readonly runtime: typeof proto3 = proto3;
231
+ static readonly typeName = "api.v1.Empty";
232
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
233
+ ]);
234
+
235
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Empty {
236
+ return new Empty().fromBinary(bytes, options);
237
+ }
238
+
239
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Empty {
240
+ return new Empty().fromJson(jsonValue, options);
241
+ }
242
+
243
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Empty {
244
+ return new Empty().fromJsonString(jsonString, options);
245
+ }
246
+
247
+ static equals(a: Empty | PlainMessage<Empty> | undefined, b: Empty | PlainMessage<Empty> | undefined): boolean {
248
+ return proto3.util.equals(Empty, a, b);
249
+ }
250
+ }
251
+
252
+ /**
253
+ * OnboardingStatusResponse is used by both company and candidate onboarding flows.
254
+ *
255
+ * @generated from message api.v1.OnboardingStatusResponse
256
+ */
257
+ export class OnboardingStatusResponse extends Message<OnboardingStatusResponse> {
258
+ /**
259
+ * @generated from field: string entity_id = 1;
260
+ */
261
+ entityId = "";
262
+
263
+ /**
264
+ * @generated from field: string current_step = 2;
265
+ */
266
+ currentStep = "";
267
+
268
+ /**
269
+ * @generated from field: bool onboarding_complete = 3;
270
+ */
271
+ onboardingComplete = false;
272
+
273
+ /**
274
+ * @generated from field: repeated api.v1.OnboardingStepDetail steps = 4;
275
+ */
276
+ steps: OnboardingStepDetail[] = [];
277
+
278
+ /**
279
+ * @generated from field: int32 profile_completion_percentage = 5;
280
+ */
281
+ profileCompletionPercentage = 0;
282
+
283
+ constructor(data?: PartialMessage<OnboardingStatusResponse>) {
284
+ super();
285
+ proto3.util.initPartial(data, this);
286
+ }
287
+
288
+ static readonly runtime: typeof proto3 = proto3;
289
+ static readonly typeName = "api.v1.OnboardingStatusResponse";
290
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
291
+ { no: 1, name: "entity_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
292
+ { no: 2, name: "current_step", kind: "scalar", T: 9 /* ScalarType.STRING */ },
293
+ { no: 3, name: "onboarding_complete", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
294
+ { no: 4, name: "steps", kind: "message", T: OnboardingStepDetail, repeated: true },
295
+ { no: 5, name: "profile_completion_percentage", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
296
+ ]);
297
+
298
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OnboardingStatusResponse {
299
+ return new OnboardingStatusResponse().fromBinary(bytes, options);
300
+ }
301
+
302
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OnboardingStatusResponse {
303
+ return new OnboardingStatusResponse().fromJson(jsonValue, options);
304
+ }
305
+
306
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OnboardingStatusResponse {
307
+ return new OnboardingStatusResponse().fromJsonString(jsonString, options);
308
+ }
309
+
310
+ static equals(a: OnboardingStatusResponse | PlainMessage<OnboardingStatusResponse> | undefined, b: OnboardingStatusResponse | PlainMessage<OnboardingStatusResponse> | undefined): boolean {
311
+ return proto3.util.equals(OnboardingStatusResponse, a, b);
312
+ }
313
+ }
314
+
315
+ /**
316
+ * @generated from message api.v1.OnboardingStepDetail
317
+ */
318
+ export class OnboardingStepDetail extends Message<OnboardingStepDetail> {
319
+ /**
320
+ * @generated from field: string step = 1;
321
+ */
322
+ step = "";
323
+
324
+ /**
325
+ * @generated from field: bool completed = 2;
326
+ */
327
+ completed = false;
328
+
329
+ /**
330
+ * @generated from field: bool skippable = 3;
331
+ */
332
+ skippable = false;
333
+
334
+ /**
335
+ * @generated from field: bool skipped = 4;
336
+ */
337
+ skipped = false;
338
+
339
+ constructor(data?: PartialMessage<OnboardingStepDetail>) {
340
+ super();
341
+ proto3.util.initPartial(data, this);
342
+ }
343
+
344
+ static readonly runtime: typeof proto3 = proto3;
345
+ static readonly typeName = "api.v1.OnboardingStepDetail";
346
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
347
+ { no: 1, name: "step", kind: "scalar", T: 9 /* ScalarType.STRING */ },
348
+ { no: 2, name: "completed", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
349
+ { no: 3, name: "skippable", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
350
+ { no: 4, name: "skipped", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
351
+ ]);
352
+
353
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OnboardingStepDetail {
354
+ return new OnboardingStepDetail().fromBinary(bytes, options);
355
+ }
356
+
357
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OnboardingStepDetail {
358
+ return new OnboardingStepDetail().fromJson(jsonValue, options);
359
+ }
360
+
361
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OnboardingStepDetail {
362
+ return new OnboardingStepDetail().fromJsonString(jsonString, options);
363
+ }
364
+
365
+ static equals(a: OnboardingStepDetail | PlainMessage<OnboardingStepDetail> | undefined, b: OnboardingStepDetail | PlainMessage<OnboardingStepDetail> | undefined): boolean {
366
+ return proto3.util.equals(OnboardingStepDetail, a, b);
367
+ }
368
+ }
369
+
370
+ /**
371
+ * @generated from message api.v1.SkipOnboardingStepRequest
372
+ */
373
+ export class SkipOnboardingStepRequest extends Message<SkipOnboardingStepRequest> {
374
+ /**
375
+ * User ID extracted from auth token
376
+ *
377
+ * @generated from field: string step = 1;
378
+ */
379
+ step = "";
380
+
381
+ constructor(data?: PartialMessage<SkipOnboardingStepRequest>) {
382
+ super();
383
+ proto3.util.initPartial(data, this);
384
+ }
385
+
386
+ static readonly runtime: typeof proto3 = proto3;
387
+ static readonly typeName = "api.v1.SkipOnboardingStepRequest";
388
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
389
+ { no: 1, name: "step", kind: "scalar", T: 9 /* ScalarType.STRING */ },
390
+ ]);
391
+
392
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SkipOnboardingStepRequest {
393
+ return new SkipOnboardingStepRequest().fromBinary(bytes, options);
394
+ }
395
+
396
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SkipOnboardingStepRequest {
397
+ return new SkipOnboardingStepRequest().fromJson(jsonValue, options);
398
+ }
399
+
400
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SkipOnboardingStepRequest {
401
+ return new SkipOnboardingStepRequest().fromJsonString(jsonString, options);
402
+ }
403
+
404
+ static equals(a: SkipOnboardingStepRequest | PlainMessage<SkipOnboardingStepRequest> | undefined, b: SkipOnboardingStepRequest | PlainMessage<SkipOnboardingStepRequest> | undefined): boolean {
405
+ return proto3.util.equals(SkipOnboardingStepRequest, a, b);
406
+ }
407
+ }
408
+
409
+ /**
410
+ * User ID extracted from auth token
411
+ *
412
+ * @generated from message api.v1.CompleteOnboardingRequest
413
+ */
414
+ export class CompleteOnboardingRequest extends Message<CompleteOnboardingRequest> {
415
+ constructor(data?: PartialMessage<CompleteOnboardingRequest>) {
416
+ super();
417
+ proto3.util.initPartial(data, this);
418
+ }
419
+
420
+ static readonly runtime: typeof proto3 = proto3;
421
+ static readonly typeName = "api.v1.CompleteOnboardingRequest";
422
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
423
+ ]);
424
+
425
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CompleteOnboardingRequest {
426
+ return new CompleteOnboardingRequest().fromBinary(bytes, options);
427
+ }
428
+
429
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CompleteOnboardingRequest {
430
+ return new CompleteOnboardingRequest().fromJson(jsonValue, options);
431
+ }
432
+
433
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CompleteOnboardingRequest {
434
+ return new CompleteOnboardingRequest().fromJsonString(jsonString, options);
435
+ }
436
+
437
+ static equals(a: CompleteOnboardingRequest | PlainMessage<CompleteOnboardingRequest> | undefined, b: CompleteOnboardingRequest | PlainMessage<CompleteOnboardingRequest> | undefined): boolean {
438
+ return proto3.util.equals(CompleteOnboardingRequest, a, b);
439
+ }
440
+ }
441
+
@@ -0,0 +1,170 @@
1
+ // @generated by protoc-gen-connect-es v1.7.0 with parameter "target=ts"
2
+ // @generated from file api/v1/company.proto (package api.v1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+
6
+ import { CompanyMemberInfo, CompanyProfileResponse, GetCompanyOnboardingStatusRequest, GetCompanyRequest, GetCompanyResponse, GetMyCompanyMembershipRequest, GetMyCompanyRequest, InviteCompanyMemberRequest, ListCompanyMembersRequest, ListCompanyMembersResponse, RemoveCompanyMemberRequest, SubmitAccountSetupRequest, SubmitCompanyBrandingRequest, SubmitCompanyDetailsRequest, SubmitCompanyInfoRequest, SubmitCompanyInviteTeamRequest, UpdateCompanyMemberRoleRequest, UpdateCompanyProfileRequest } from "./company_pb.js";
7
+ import { MethodKind } from "@bufbuild/protobuf";
8
+ import { CompleteOnboardingRequest, Empty, OnboardingStatusResponse, SkipOnboardingStepRequest } from "./common_pb.js";
9
+
10
+ /**
11
+ * CompanyService is the client-facing company management service.
12
+ *
13
+ * @generated from service api.v1.CompanyService
14
+ */
15
+ export const CompanyService = {
16
+ typeName: "api.v1.CompanyService",
17
+ methods: {
18
+ /**
19
+ * Company CRUD
20
+ *
21
+ * @generated from rpc api.v1.CompanyService.GetCompany
22
+ */
23
+ getCompany: {
24
+ name: "GetCompany",
25
+ I: GetCompanyRequest,
26
+ O: GetCompanyResponse,
27
+ kind: MethodKind.Unary,
28
+ },
29
+ /**
30
+ * @generated from rpc api.v1.CompanyService.GetMyCompany
31
+ */
32
+ getMyCompany: {
33
+ name: "GetMyCompany",
34
+ I: GetMyCompanyRequest,
35
+ O: GetCompanyResponse,
36
+ kind: MethodKind.Unary,
37
+ },
38
+ /**
39
+ * @generated from rpc api.v1.CompanyService.UpdateCompanyProfile
40
+ */
41
+ updateCompanyProfile: {
42
+ name: "UpdateCompanyProfile",
43
+ I: UpdateCompanyProfileRequest,
44
+ O: CompanyProfileResponse,
45
+ kind: MethodKind.Unary,
46
+ },
47
+ /**
48
+ * Company members
49
+ *
50
+ * @generated from rpc api.v1.CompanyService.GetMyCompanyMembership
51
+ */
52
+ getMyCompanyMembership: {
53
+ name: "GetMyCompanyMembership",
54
+ I: GetMyCompanyMembershipRequest,
55
+ O: CompanyMemberInfo,
56
+ kind: MethodKind.Unary,
57
+ },
58
+ /**
59
+ * @generated from rpc api.v1.CompanyService.ListCompanyMembers
60
+ */
61
+ listCompanyMembers: {
62
+ name: "ListCompanyMembers",
63
+ I: ListCompanyMembersRequest,
64
+ O: ListCompanyMembersResponse,
65
+ kind: MethodKind.Unary,
66
+ },
67
+ /**
68
+ * @generated from rpc api.v1.CompanyService.InviteCompanyMember
69
+ */
70
+ inviteCompanyMember: {
71
+ name: "InviteCompanyMember",
72
+ I: InviteCompanyMemberRequest,
73
+ O: Empty,
74
+ kind: MethodKind.Unary,
75
+ },
76
+ /**
77
+ * @generated from rpc api.v1.CompanyService.RemoveCompanyMember
78
+ */
79
+ removeCompanyMember: {
80
+ name: "RemoveCompanyMember",
81
+ I: RemoveCompanyMemberRequest,
82
+ O: Empty,
83
+ kind: MethodKind.Unary,
84
+ },
85
+ /**
86
+ * @generated from rpc api.v1.CompanyService.UpdateCompanyMemberRole
87
+ */
88
+ updateCompanyMemberRole: {
89
+ name: "UpdateCompanyMemberRole",
90
+ I: UpdateCompanyMemberRoleRequest,
91
+ O: Empty,
92
+ kind: MethodKind.Unary,
93
+ },
94
+ /**
95
+ * Company onboarding (step-by-step)
96
+ *
97
+ * @generated from rpc api.v1.CompanyService.GetCompanyOnboardingStatus
98
+ */
99
+ getCompanyOnboardingStatus: {
100
+ name: "GetCompanyOnboardingStatus",
101
+ I: GetCompanyOnboardingStatusRequest,
102
+ O: OnboardingStatusResponse,
103
+ kind: MethodKind.Unary,
104
+ },
105
+ /**
106
+ * @generated from rpc api.v1.CompanyService.SubmitAccountSetup
107
+ */
108
+ submitAccountSetup: {
109
+ name: "SubmitAccountSetup",
110
+ I: SubmitAccountSetupRequest,
111
+ O: OnboardingStatusResponse,
112
+ kind: MethodKind.Unary,
113
+ },
114
+ /**
115
+ * @generated from rpc api.v1.CompanyService.SubmitCompanyInfo
116
+ */
117
+ submitCompanyInfo: {
118
+ name: "SubmitCompanyInfo",
119
+ I: SubmitCompanyInfoRequest,
120
+ O: OnboardingStatusResponse,
121
+ kind: MethodKind.Unary,
122
+ },
123
+ /**
124
+ * @generated from rpc api.v1.CompanyService.SubmitCompanyDetails
125
+ */
126
+ submitCompanyDetails: {
127
+ name: "SubmitCompanyDetails",
128
+ I: SubmitCompanyDetailsRequest,
129
+ O: OnboardingStatusResponse,
130
+ kind: MethodKind.Unary,
131
+ },
132
+ /**
133
+ * @generated from rpc api.v1.CompanyService.SubmitCompanyBranding
134
+ */
135
+ submitCompanyBranding: {
136
+ name: "SubmitCompanyBranding",
137
+ I: SubmitCompanyBrandingRequest,
138
+ O: OnboardingStatusResponse,
139
+ kind: MethodKind.Unary,
140
+ },
141
+ /**
142
+ * @generated from rpc api.v1.CompanyService.SubmitCompanyInviteTeam
143
+ */
144
+ submitCompanyInviteTeam: {
145
+ name: "SubmitCompanyInviteTeam",
146
+ I: SubmitCompanyInviteTeamRequest,
147
+ O: OnboardingStatusResponse,
148
+ kind: MethodKind.Unary,
149
+ },
150
+ /**
151
+ * @generated from rpc api.v1.CompanyService.SkipCompanyOnboardingStep
152
+ */
153
+ skipCompanyOnboardingStep: {
154
+ name: "SkipCompanyOnboardingStep",
155
+ I: SkipOnboardingStepRequest,
156
+ O: OnboardingStatusResponse,
157
+ kind: MethodKind.Unary,
158
+ },
159
+ /**
160
+ * @generated from rpc api.v1.CompanyService.CompleteCompanyOnboarding
161
+ */
162
+ completeCompanyOnboarding: {
163
+ name: "CompleteCompanyOnboarding",
164
+ I: CompleteOnboardingRequest,
165
+ O: OnboardingStatusResponse,
166
+ kind: MethodKind.Unary,
167
+ },
168
+ }
169
+ } as const;
170
+