@togatherlabs/event-sdk 1.0.36 → 1.0.38
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/gen/ts/user/v1/index.d.ts +1 -0
- package/gen/ts/user/v1/index.js +1 -0
- package/gen/ts/user/v1/user_forgot_password_pb.d.ts +2 -2
- package/gen/ts/user/v1/user_forgot_password_pb.js +1 -1
- package/gen/ts/user/v1/user_profile_created_pb.d.ts +344 -0
- package/gen/ts/user/v1/user_profile_created_pb.js +97 -0
- package/package.json +1 -1
package/gen/ts/user/v1/index.js
CHANGED
|
@@ -30,9 +30,9 @@ export declare type UserForgotPasswordPayload = Message<"user.v1.UserForgotPassw
|
|
|
30
30
|
userFullName: string;
|
|
31
31
|
|
|
32
32
|
/**
|
|
33
|
-
* @generated from field:
|
|
33
|
+
* @generated from field: int64 requested_at = 4;
|
|
34
34
|
*/
|
|
35
|
-
requestedAt:
|
|
35
|
+
requestedAt: bigint;
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
/**
|
|
@@ -8,7 +8,7 @@ import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
|
8
8
|
* Describes the file user/v1/user_forgot_password.proto.
|
|
9
9
|
*/
|
|
10
10
|
export const file_user_v1_user_forgot_password = /*@__PURE__*/
|
|
11
|
-
fileDesc("
|
|
11
|
+
fileDesc("CiJ1c2VyL3YxL3VzZXJfZm9yZ290X3Bhc3N3b3JkLnByb3RvEgd1c2VyLnYxInYKGVVzZXJGb3Jnb3RQYXNzd29yZFBheWxvYWQSHAoUcGFzc3dvcmRfcmVzZXRfdG9rZW4YASABKAkSDQoFZW1haWwYAiABKAkSFgoOdXNlcl9mdWxsX25hbWUYAyABKAkSFAoMcmVxdWVzdGVkX2F0GAQgASgDQmMKC2NvbS51c2VyLnYxQhdVc2VyRm9yZ290UGFzc3dvcmRQcm90b1ABogIDVVhYqgIHVXNlci5WMcoCB1VzZXJcVjHiAhNVc2VyXFYxXEdQQk1ldGFkYXRh6gIIVXNlcjo6VjFiBnByb3RvMw");
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Describes the message user.v1.UserForgotPasswordPayload.
|
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.1 with parameter "target=js+dts,import_extension=none"
|
|
2
|
+
// @generated from file user/v1/user_profile_created.proto (package user.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Describes the file user/v1/user_profile_created.proto.
|
|
10
|
+
*/
|
|
11
|
+
export declare const file_user_v1_user_profile_created: GenFile;
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* @generated from message user.v1.UserProfileCreated
|
|
15
|
+
*/
|
|
16
|
+
export declare type UserProfileCreated = Message<"user.v1.UserProfileCreated"> & {
|
|
17
|
+
/**
|
|
18
|
+
* @generated from field: string id = 1;
|
|
19
|
+
*/
|
|
20
|
+
id: string;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* @generated from field: string email = 2;
|
|
24
|
+
*/
|
|
25
|
+
email: string;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* @generated from field: string first_name = 3;
|
|
29
|
+
*/
|
|
30
|
+
firstName: string;
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* @generated from field: optional string last_name = 4;
|
|
34
|
+
*/
|
|
35
|
+
lastName?: string;
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* @generated from field: optional string phone = 5;
|
|
39
|
+
*/
|
|
40
|
+
phone?: string;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* @generated from field: optional string google_sub = 6;
|
|
44
|
+
*/
|
|
45
|
+
googleSub?: string;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @generated from field: user.v1.Address current_address = 7;
|
|
49
|
+
*/
|
|
50
|
+
currentAddress?: Address;
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* @generated from field: repeated user.v1.Interest interests = 8;
|
|
54
|
+
*/
|
|
55
|
+
interests: Interest[];
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* @generated from field: optional string display_name = 9;
|
|
59
|
+
*/
|
|
60
|
+
displayName?: string;
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* @generated from field: optional string avatar_key = 10;
|
|
64
|
+
*/
|
|
65
|
+
avatarKey?: string;
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* @generated from field: optional int64 dob = 11;
|
|
69
|
+
*/
|
|
70
|
+
dob?: bigint;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* @generated from field: optional user.v1.Gender gender = 12;
|
|
74
|
+
*/
|
|
75
|
+
gender?: Gender;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* @generated from field: optional int32 social_score = 13;
|
|
79
|
+
*/
|
|
80
|
+
socialScore?: number;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* @generated from field: optional user.v1.Status status = 14;
|
|
84
|
+
*/
|
|
85
|
+
status?: Status;
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* @generated from field: int64 created_at = 15;
|
|
89
|
+
*/
|
|
90
|
+
createdAt: bigint;
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* @generated from field: int64 updated_at = 16;
|
|
94
|
+
*/
|
|
95
|
+
updatedAt: bigint;
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* @generated from field: user.v1.OnBoardingStatus on_boarding_status = 18;
|
|
99
|
+
*/
|
|
100
|
+
onBoardingStatus?: OnBoardingStatus;
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* @generated from field: int64 on_boarded_at = 19;
|
|
104
|
+
*/
|
|
105
|
+
onBoardedAt: bigint;
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* Describes the message user.v1.UserProfileCreated.
|
|
110
|
+
* Use `create(UserProfileCreatedSchema)` to create a new message.
|
|
111
|
+
*/
|
|
112
|
+
export declare const UserProfileCreatedSchema: GenMessage<UserProfileCreated>;
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* @generated from message user.v1.Address
|
|
116
|
+
*/
|
|
117
|
+
export declare type Address = Message<"user.v1.Address"> & {
|
|
118
|
+
/**
|
|
119
|
+
* @generated from field: string id = 1;
|
|
120
|
+
*/
|
|
121
|
+
id: string;
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* @generated from field: string line1 = 2;
|
|
125
|
+
*/
|
|
126
|
+
line1: string;
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* @generated from field: optional string line2 = 3;
|
|
130
|
+
*/
|
|
131
|
+
line2?: string;
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* @generated from field: string city = 4;
|
|
135
|
+
*/
|
|
136
|
+
city: string;
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* @generated from field: int32 postal_code = 5;
|
|
140
|
+
*/
|
|
141
|
+
postalCode: number;
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* @generated from field: string country = 6;
|
|
145
|
+
*/
|
|
146
|
+
country: string;
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* @generated from field: user.v1.Coordinate coordinate = 7;
|
|
150
|
+
*/
|
|
151
|
+
coordinate?: Coordinate;
|
|
152
|
+
};
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Describes the message user.v1.Address.
|
|
156
|
+
* Use `create(AddressSchema)` to create a new message.
|
|
157
|
+
*/
|
|
158
|
+
export declare const AddressSchema: GenMessage<Address>;
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* @generated from message user.v1.Coordinate
|
|
162
|
+
*/
|
|
163
|
+
export declare type Coordinate = Message<"user.v1.Coordinate"> & {
|
|
164
|
+
/**
|
|
165
|
+
* @generated from field: double latitude = 1;
|
|
166
|
+
*/
|
|
167
|
+
latitude: number;
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* @generated from field: double longitude = 2;
|
|
171
|
+
*/
|
|
172
|
+
longitude: number;
|
|
173
|
+
};
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* Describes the message user.v1.Coordinate.
|
|
177
|
+
* Use `create(CoordinateSchema)` to create a new message.
|
|
178
|
+
*/
|
|
179
|
+
export declare const CoordinateSchema: GenMessage<Coordinate>;
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* @generated from message user.v1.Interest
|
|
183
|
+
*/
|
|
184
|
+
export declare type Interest = Message<"user.v1.Interest"> & {
|
|
185
|
+
/**
|
|
186
|
+
* @generated from field: string id = 1;
|
|
187
|
+
*/
|
|
188
|
+
id: string;
|
|
189
|
+
|
|
190
|
+
/**
|
|
191
|
+
* @generated from field: string name = 2;
|
|
192
|
+
*/
|
|
193
|
+
name: string;
|
|
194
|
+
};
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* Describes the message user.v1.Interest.
|
|
198
|
+
* Use `create(InterestSchema)` to create a new message.
|
|
199
|
+
*/
|
|
200
|
+
export declare const InterestSchema: GenMessage<Interest>;
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* @generated from message user.v1.Status
|
|
204
|
+
*/
|
|
205
|
+
export declare type Status = Message<"user.v1.Status"> & {
|
|
206
|
+
/**
|
|
207
|
+
* @generated from field: user.v1.Status.E value = 1;
|
|
208
|
+
*/
|
|
209
|
+
value: Status_E;
|
|
210
|
+
};
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* Describes the message user.v1.Status.
|
|
214
|
+
* Use `create(StatusSchema)` to create a new message.
|
|
215
|
+
*/
|
|
216
|
+
export declare const StatusSchema: GenMessage<Status>;
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* @generated from enum user.v1.Status.E
|
|
220
|
+
*/
|
|
221
|
+
export enum Status_E {
|
|
222
|
+
/**
|
|
223
|
+
* @generated from enum value: E_UNSPECIFIED = 0;
|
|
224
|
+
*/
|
|
225
|
+
UNSPECIFIED = 0,
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* @generated from enum value: E_ACTIVE = 1;
|
|
229
|
+
*/
|
|
230
|
+
ACTIVE = 1,
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* @generated from enum value: E_BLOCKED = 2;
|
|
234
|
+
*/
|
|
235
|
+
BLOCKED = 2,
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* @generated from enum value: E_DELETED = 3;
|
|
239
|
+
*/
|
|
240
|
+
DELETED = 3,
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* Describes the enum user.v1.Status.E.
|
|
245
|
+
*/
|
|
246
|
+
export declare const Status_ESchema: GenEnum<Status_E>;
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* @generated from message user.v1.Gender
|
|
250
|
+
*/
|
|
251
|
+
export declare type Gender = Message<"user.v1.Gender"> & {
|
|
252
|
+
/**
|
|
253
|
+
* @generated from field: user.v1.Gender.G value = 1;
|
|
254
|
+
*/
|
|
255
|
+
value: Gender_G;
|
|
256
|
+
};
|
|
257
|
+
|
|
258
|
+
/**
|
|
259
|
+
* Describes the message user.v1.Gender.
|
|
260
|
+
* Use `create(GenderSchema)` to create a new message.
|
|
261
|
+
*/
|
|
262
|
+
export declare const GenderSchema: GenMessage<Gender>;
|
|
263
|
+
|
|
264
|
+
/**
|
|
265
|
+
* @generated from enum user.v1.Gender.G
|
|
266
|
+
*/
|
|
267
|
+
export enum Gender_G {
|
|
268
|
+
/**
|
|
269
|
+
* @generated from enum value: G_UNSPECIFIED = 0;
|
|
270
|
+
*/
|
|
271
|
+
UNSPECIFIED = 0,
|
|
272
|
+
|
|
273
|
+
/**
|
|
274
|
+
* @generated from enum value: G_PREFER_NOT_TO_SAY = 1;
|
|
275
|
+
*/
|
|
276
|
+
PREFER_NOT_TO_SAY = 1,
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* @generated from enum value: G_MALE = 2;
|
|
280
|
+
*/
|
|
281
|
+
MALE = 2,
|
|
282
|
+
|
|
283
|
+
/**
|
|
284
|
+
* @generated from enum value: G_FEMALE = 3;
|
|
285
|
+
*/
|
|
286
|
+
FEMALE = 3,
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* @generated from enum value: G_OTHER = 4;
|
|
290
|
+
*/
|
|
291
|
+
OTHER = 4,
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
/**
|
|
295
|
+
* Describes the enum user.v1.Gender.G.
|
|
296
|
+
*/
|
|
297
|
+
export declare const Gender_GSchema: GenEnum<Gender_G>;
|
|
298
|
+
|
|
299
|
+
/**
|
|
300
|
+
* @generated from message user.v1.OnBoardingStatus
|
|
301
|
+
*/
|
|
302
|
+
export declare type OnBoardingStatus = Message<"user.v1.OnBoardingStatus"> & {
|
|
303
|
+
/**
|
|
304
|
+
* @generated from field: user.v1.OnBoardingStatus.S value = 1;
|
|
305
|
+
*/
|
|
306
|
+
value: OnBoardingStatus_S;
|
|
307
|
+
};
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* Describes the message user.v1.OnBoardingStatus.
|
|
311
|
+
* Use `create(OnBoardingStatusSchema)` to create a new message.
|
|
312
|
+
*/
|
|
313
|
+
export declare const OnBoardingStatusSchema: GenMessage<OnBoardingStatus>;
|
|
314
|
+
|
|
315
|
+
/**
|
|
316
|
+
* @generated from enum user.v1.OnBoardingStatus.S
|
|
317
|
+
*/
|
|
318
|
+
export enum OnBoardingStatus_S {
|
|
319
|
+
/**
|
|
320
|
+
* @generated from enum value: S_UNSPECIFIED = 0;
|
|
321
|
+
*/
|
|
322
|
+
UNSPECIFIED = 0,
|
|
323
|
+
|
|
324
|
+
/**
|
|
325
|
+
* @generated from enum value: S_STARTED = 1;
|
|
326
|
+
*/
|
|
327
|
+
STARTED = 1,
|
|
328
|
+
|
|
329
|
+
/**
|
|
330
|
+
* @generated from enum value: S_COMPLETED = 2;
|
|
331
|
+
*/
|
|
332
|
+
COMPLETED = 2,
|
|
333
|
+
|
|
334
|
+
/**
|
|
335
|
+
* @generated from enum value: S_SKIPPED = 3;
|
|
336
|
+
*/
|
|
337
|
+
SKIPPED = 3,
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* Describes the enum user.v1.OnBoardingStatus.S.
|
|
342
|
+
*/
|
|
343
|
+
export declare const OnBoardingStatus_SSchema: GenEnum<OnBoardingStatus_S>;
|
|
344
|
+
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.1 with parameter "target=js+dts,import_extension=none"
|
|
2
|
+
// @generated from file user/v1/user_profile_created.proto (package user.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { enumDesc, fileDesc, messageDesc, tsEnum } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Describes the file user/v1/user_profile_created.proto.
|
|
9
|
+
*/
|
|
10
|
+
export const file_user_v1_user_profile_created = /*@__PURE__*/
|
|
11
|
+
fileDesc("CiJ1c2VyL3YxL3VzZXJfcHJvZmlsZV9jcmVhdGVkLnByb3RvEgd1c2VyLnYxIvIEChJVc2VyUHJvZmlsZUNyZWF0ZWQSCgoCaWQYASABKAkSDQoFZW1haWwYAiABKAkSEgoKZmlyc3RfbmFtZRgDIAEoCRIWCglsYXN0X25hbWUYBCABKAlIAIgBARISCgVwaG9uZRgFIAEoCUgBiAEBEhcKCmdvb2dsZV9zdWIYBiABKAlIAogBARIpCg9jdXJyZW50X2FkZHJlc3MYByABKAsyEC51c2VyLnYxLkFkZHJlc3MSJAoJaW50ZXJlc3RzGAggAygLMhEudXNlci52MS5JbnRlcmVzdBIZCgxkaXNwbGF5X25hbWUYCSABKAlIA4gBARIXCgphdmF0YXJfa2V5GAogASgJSASIAQESEAoDZG9iGAsgASgDSAWIAQESJAoGZ2VuZGVyGAwgASgLMg8udXNlci52MS5HZW5kZXJIBogBARIZCgxzb2NpYWxfc2NvcmUYDSABKAVIB4gBARIkCgZzdGF0dXMYDiABKAsyDy51c2VyLnYxLlN0YXR1c0gIiAEBEhIKCmNyZWF0ZWRfYXQYDyABKAMSEgoKdXBkYXRlZF9hdBgQIAEoAxI1ChJvbl9ib2FyZGluZ19zdGF0dXMYEiABKAsyGS51c2VyLnYxLk9uQm9hcmRpbmdTdGF0dXMSFQoNb25fYm9hcmRlZF9hdBgTIAEoA0IMCgpfbGFzdF9uYW1lQggKBl9waG9uZUINCgtfZ29vZ2xlX3N1YkIPCg1fZGlzcGxheV9uYW1lQg0KC19hdmF0YXJfa2V5QgYKBF9kb2JCCQoHX2dlbmRlckIPCg1fc29jaWFsX3Njb3JlQgkKB19zdGF0dXMinwEKB0FkZHJlc3MSCgoCaWQYASABKAkSDQoFbGluZTEYAiABKAkSEgoFbGluZTIYAyABKAlIAIgBARIMCgRjaXR5GAQgASgJEhMKC3Bvc3RhbF9jb2RlGAUgASgFEg8KB2NvdW50cnkYBiABKAkSJwoKY29vcmRpbmF0ZRgHIAEoCzITLnVzZXIudjEuQ29vcmRpbmF0ZUIICgZfbGluZTIiMQoKQ29vcmRpbmF0ZRIQCghsYXRpdHVkZRgBIAEoARIRCglsb25naXR1ZGUYAiABKAEiJAoISW50ZXJlc3QSCgoCaWQYASABKAkSDAoEbmFtZRgCIAEoCSJuCgZTdGF0dXMSIAoFdmFsdWUYASABKA4yES51c2VyLnYxLlN0YXR1cy5FIkIKAUUSEQoNRV9VTlNQRUNJRklFRBAAEgwKCEVfQUNUSVZFEAESDQoJRV9CTE9DS0VEEAISDQoJRV9ERUxFVEVEEAMiggEKBkdlbmRlchIgCgV2YWx1ZRgBIAEoDjIRLnVzZXIudjEuR2VuZGVyLkciVgoBRxIRCg1HX1VOU1BFQ0lGSUVEEAASFwoTR19QUkVGRVJfTk9UX1RPX1NBWRABEgoKBkdfTUFMRRACEgwKCEdfRkVNQUxFEAMSCwoHR19PVEhFUhAEIoUBChBPbkJvYXJkaW5nU3RhdHVzEioKBXZhbHVlGAEgASgOMhsudXNlci52MS5PbkJvYXJkaW5nU3RhdHVzLlMiRQoBUxIRCg1TX1VOU1BFQ0lGSUVEEAASDQoJU19TVEFSVEVEEAESDwoLU19DT01QTEVURUQQAhINCglTX1NLSVBQRUQQA0JjCgtjb20udXNlci52MUIXVXNlclByb2ZpbGVDcmVhdGVkUHJvdG9QAaICA1VYWKoCB1VzZXIuVjHKAgdVc2VyXFYx4gITVXNlclxWMVxHUEJNZXRhZGF0YeoCCFVzZXI6OlYxYgZwcm90bzM");
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Describes the message user.v1.UserProfileCreated.
|
|
15
|
+
* Use `create(UserProfileCreatedSchema)` to create a new message.
|
|
16
|
+
*/
|
|
17
|
+
export const UserProfileCreatedSchema = /*@__PURE__*/
|
|
18
|
+
messageDesc(file_user_v1_user_profile_created, 0);
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Describes the message user.v1.Address.
|
|
22
|
+
* Use `create(AddressSchema)` to create a new message.
|
|
23
|
+
*/
|
|
24
|
+
export const AddressSchema = /*@__PURE__*/
|
|
25
|
+
messageDesc(file_user_v1_user_profile_created, 1);
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Describes the message user.v1.Coordinate.
|
|
29
|
+
* Use `create(CoordinateSchema)` to create a new message.
|
|
30
|
+
*/
|
|
31
|
+
export const CoordinateSchema = /*@__PURE__*/
|
|
32
|
+
messageDesc(file_user_v1_user_profile_created, 2);
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Describes the message user.v1.Interest.
|
|
36
|
+
* Use `create(InterestSchema)` to create a new message.
|
|
37
|
+
*/
|
|
38
|
+
export const InterestSchema = /*@__PURE__*/
|
|
39
|
+
messageDesc(file_user_v1_user_profile_created, 3);
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Describes the message user.v1.Status.
|
|
43
|
+
* Use `create(StatusSchema)` to create a new message.
|
|
44
|
+
*/
|
|
45
|
+
export const StatusSchema = /*@__PURE__*/
|
|
46
|
+
messageDesc(file_user_v1_user_profile_created, 4);
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Describes the enum user.v1.Status.E.
|
|
50
|
+
*/
|
|
51
|
+
export const Status_ESchema = /*@__PURE__*/
|
|
52
|
+
enumDesc(file_user_v1_user_profile_created, 4, 0);
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* @generated from enum user.v1.Status.E
|
|
56
|
+
*/
|
|
57
|
+
export const Status_E = /*@__PURE__*/
|
|
58
|
+
tsEnum(Status_ESchema);
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Describes the message user.v1.Gender.
|
|
62
|
+
* Use `create(GenderSchema)` to create a new message.
|
|
63
|
+
*/
|
|
64
|
+
export const GenderSchema = /*@__PURE__*/
|
|
65
|
+
messageDesc(file_user_v1_user_profile_created, 5);
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Describes the enum user.v1.Gender.G.
|
|
69
|
+
*/
|
|
70
|
+
export const Gender_GSchema = /*@__PURE__*/
|
|
71
|
+
enumDesc(file_user_v1_user_profile_created, 5, 0);
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* @generated from enum user.v1.Gender.G
|
|
75
|
+
*/
|
|
76
|
+
export const Gender_G = /*@__PURE__*/
|
|
77
|
+
tsEnum(Gender_GSchema);
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Describes the message user.v1.OnBoardingStatus.
|
|
81
|
+
* Use `create(OnBoardingStatusSchema)` to create a new message.
|
|
82
|
+
*/
|
|
83
|
+
export const OnBoardingStatusSchema = /*@__PURE__*/
|
|
84
|
+
messageDesc(file_user_v1_user_profile_created, 6);
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* Describes the enum user.v1.OnBoardingStatus.S.
|
|
88
|
+
*/
|
|
89
|
+
export const OnBoardingStatus_SSchema = /*@__PURE__*/
|
|
90
|
+
enumDesc(file_user_v1_user_profile_created, 6, 0);
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* @generated from enum user.v1.OnBoardingStatus.S
|
|
94
|
+
*/
|
|
95
|
+
export const OnBoardingStatus_S = /*@__PURE__*/
|
|
96
|
+
tsEnum(OnBoardingStatus_SSchema);
|
|
97
|
+
|