@togatherlabs/event-sdk 1.0.53 → 1.0.56

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 (47) hide show
  1. package/gen/ts/admin/v1/admin_account_created_pb.d.ts +48 -0
  2. package/gen/ts/admin/v1/admin_account_created_pb.js +19 -0
  3. package/gen/ts/admin/v1/admin_email_verification_requested_pb.d.ts +48 -0
  4. package/gen/ts/admin/v1/admin_email_verification_requested_pb.js +19 -0
  5. package/gen/ts/admin/v1/index.d.ts +2 -0
  6. package/gen/ts/admin/v1/index.js +2 -0
  7. package/gen/ts/common/v1/event_envelop_pb.d.ts +48 -0
  8. package/gen/ts/common/v1/event_envelop_pb.js +19 -0
  9. package/gen/ts/common/v1/index.d.ts +1 -0
  10. package/gen/ts/common/v1/index.js +1 -0
  11. package/gen/ts/experience/v1/category_pb.d.ts +43 -0
  12. package/gen/ts/experience/v1/category_pb.js +19 -0
  13. package/gen/ts/experience/v1/experience_created_pb.d.ts +272 -0
  14. package/gen/ts/experience/v1/experience_created_pb.js +47 -0
  15. package/gen/ts/experience/v1/index.d.ts +3 -0
  16. package/gen/ts/experience/v1/index.js +3 -0
  17. package/gen/ts/experience/v1/tag_pb.d.ts +53 -0
  18. package/gen/ts/experience/v1/tag_pb.js +19 -0
  19. package/gen/ts/feed/v1/index.d.ts +2 -0
  20. package/gen/ts/feed/v1/index.js +2 -0
  21. package/gen/ts/feed/v1/recommendation_feedback_pb.d.ts +454 -0
  22. package/gen/ts/feed/v1/recommendation_feedback_pb.js +133 -0
  23. package/gen/ts/feed/v1/recommendation_served_pb.d.ts +133 -0
  24. package/gen/ts/feed/v1/recommendation_served_pb.js +40 -0
  25. package/gen/ts/index.d.ts +6 -0
  26. package/gen/ts/index.js +6 -0
  27. package/gen/ts/partner/v1/index.d.ts +4 -0
  28. package/gen/ts/partner/v1/index.js +4 -0
  29. package/gen/ts/partner/v1/parter_account_created_pb.d.ts +43 -0
  30. package/gen/ts/partner/v1/parter_account_created_pb.js +19 -0
  31. package/gen/ts/partner/v1/partner_application_rejected_pb.d.ts +68 -0
  32. package/gen/ts/partner/v1/partner_application_rejected_pb.js +20 -0
  33. package/gen/ts/partner/v1/partner_emai_verification_requested_pb.d.ts +48 -0
  34. package/gen/ts/partner/v1/partner_emai_verification_requested_pb.js +19 -0
  35. package/gen/ts/partner/v1/partner_profile_created_pb.d.ts +340 -0
  36. package/gen/ts/partner/v1/partner_profile_created_pb.js +71 -0
  37. package/gen/ts/user/v1/index.d.ts +4 -0
  38. package/gen/ts/user/v1/index.js +4 -0
  39. package/gen/ts/user/v1/user_account_created_pb.d.ts +43 -0
  40. package/gen/ts/user/v1/user_account_created_pb.js +19 -0
  41. package/gen/ts/user/v1/user_email_verification_requested_pb.d.ts +48 -0
  42. package/gen/ts/user/v1/user_email_verification_requested_pb.js +19 -0
  43. package/gen/ts/user/v1/user_forgot_password_pb.d.ts +43 -0
  44. package/gen/ts/user/v1/user_forgot_password_pb.js +19 -0
  45. package/gen/ts/user/v1/user_profile_created_pb.d.ts +296 -0
  46. package/gen/ts/user/v1/user_profile_created_pb.js +76 -0
  47. package/package.json +2 -2
@@ -0,0 +1,340 @@
1
+ // @generated by protoc-gen-es v2.10.2 with parameter "target=js+dts,import_extension=none"
2
+ // @generated from file partner/v1/partner_profile_created.proto (package partner.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 partner/v1/partner_profile_created.proto.
10
+ */
11
+ export declare const file_partner_v1_partner_profile_created: GenFile;
12
+
13
+ /**
14
+ * @generated from message partner.v1.PartnerProfileCreated
15
+ */
16
+ export declare type PartnerProfileCreated = Message<"partner.v1.PartnerProfileCreated"> & {
17
+ /**
18
+ * Partner basic information
19
+ *
20
+ * @generated from field: string id = 1;
21
+ */
22
+ id: string;
23
+
24
+ /**
25
+ * @generated from field: string name = 2;
26
+ */
27
+ name: string;
28
+
29
+ /**
30
+ * @generated from field: string email = 3;
31
+ */
32
+ email: string;
33
+
34
+ /**
35
+ * @generated from field: partner.v1.PartnerStatus status = 4;
36
+ */
37
+ status: PartnerStatus;
38
+
39
+ /**
40
+ * @generated from field: partner.v1.PartnerOnboardStatus onboard_status = 5;
41
+ */
42
+ onboardStatus: PartnerOnboardStatus;
43
+
44
+ /**
45
+ * @generated from field: optional int64 onboarded_at = 6;
46
+ */
47
+ onboardedAt?: bigint;
48
+
49
+ /**
50
+ * @generated from field: int64 created_at = 7;
51
+ */
52
+ createdAt: bigint;
53
+
54
+ /**
55
+ * @generated from field: int64 updated_at = 8;
56
+ */
57
+ updatedAt: bigint;
58
+
59
+ /**
60
+ * Business information
61
+ *
62
+ * @generated from field: partner.v1.BusinessInfo business_info = 9;
63
+ */
64
+ businessInfo?: BusinessInfo;
65
+
66
+ /**
67
+ * Business addresses
68
+ *
69
+ * @generated from field: partner.v1.BusinessAddress business_address = 10;
70
+ */
71
+ businessAddress?: BusinessAddress;
72
+
73
+ /**
74
+ * Owner information
75
+ *
76
+ * @generated from field: partner.v1.OwnerInfo owner_info = 11;
77
+ */
78
+ ownerInfo?: OwnerInfo;
79
+ };
80
+
81
+ /**
82
+ * Describes the message partner.v1.PartnerProfileCreated.
83
+ * Use `create(PartnerProfileCreatedSchema)` to create a new message.
84
+ */
85
+ export declare const PartnerProfileCreatedSchema: GenMessage<PartnerProfileCreated>;
86
+
87
+ /**
88
+ * @generated from message partner.v1.BusinessInfo
89
+ */
90
+ export declare type BusinessInfo = Message<"partner.v1.BusinessInfo"> & {
91
+ /**
92
+ * @generated from field: string business_name = 1;
93
+ */
94
+ businessName: string;
95
+
96
+ /**
97
+ * @generated from field: string incorporation_date = 2;
98
+ */
99
+ incorporationDate: string;
100
+
101
+ /**
102
+ * @generated from field: string industry = 3;
103
+ */
104
+ industry: string;
105
+
106
+ /**
107
+ * @generated from field: string trade_name = 4;
108
+ */
109
+ tradeName: string;
110
+
111
+ /**
112
+ * @generated from field: string business_type = 5;
113
+ */
114
+ businessType: string;
115
+
116
+ /**
117
+ * @generated from field: optional string business_type_other = 6;
118
+ */
119
+ businessTypeOther?: string;
120
+
121
+ /**
122
+ * @generated from field: optional string gst_number = 7;
123
+ */
124
+ gstNumber?: string;
125
+ };
126
+
127
+ /**
128
+ * Describes the message partner.v1.BusinessInfo.
129
+ * Use `create(BusinessInfoSchema)` to create a new message.
130
+ */
131
+ export declare const BusinessInfoSchema: GenMessage<BusinessInfo>;
132
+
133
+ /**
134
+ * @generated from message partner.v1.BusinessAddress
135
+ */
136
+ export declare type BusinessAddress = Message<"partner.v1.BusinessAddress"> & {
137
+ /**
138
+ * @generated from field: string registered_address_line1 = 1;
139
+ */
140
+ registeredAddressLine1: string;
141
+
142
+ /**
143
+ * @generated from field: optional string registered_address_line2 = 2;
144
+ */
145
+ registeredAddressLine2?: string;
146
+
147
+ /**
148
+ * @generated from field: string registered_city = 3;
149
+ */
150
+ registeredCity: string;
151
+
152
+ /**
153
+ * @generated from field: string registered_state = 4;
154
+ */
155
+ registeredState: string;
156
+
157
+ /**
158
+ * @generated from field: string registered_postal_code = 5;
159
+ */
160
+ registeredPostalCode: string;
161
+
162
+ /**
163
+ * @generated from field: string registered_country = 6;
164
+ */
165
+ registeredCountry: string;
166
+
167
+ /**
168
+ * @generated from field: bool same_operational_address = 7;
169
+ */
170
+ sameOperationalAddress: boolean;
171
+
172
+ /**
173
+ * @generated from field: optional string operational_address_line1 = 8;
174
+ */
175
+ operationalAddressLine1?: string;
176
+
177
+ /**
178
+ * @generated from field: optional string operational_address_line2 = 9;
179
+ */
180
+ operationalAddressLine2?: string;
181
+
182
+ /**
183
+ * @generated from field: optional string operational_city = 10;
184
+ */
185
+ operationalCity?: string;
186
+
187
+ /**
188
+ * @generated from field: optional string operational_state = 11;
189
+ */
190
+ operationalState?: string;
191
+
192
+ /**
193
+ * @generated from field: optional string operational_postal_code = 12;
194
+ */
195
+ operationalPostalCode?: string;
196
+
197
+ /**
198
+ * @generated from field: optional string operational_country = 13;
199
+ */
200
+ operationalCountry?: string;
201
+
202
+ /**
203
+ * @generated from field: partner.v1.Coordinate coordinate = 14;
204
+ */
205
+ coordinate?: Coordinate;
206
+ };
207
+
208
+ /**
209
+ * Describes the message partner.v1.BusinessAddress.
210
+ * Use `create(BusinessAddressSchema)` to create a new message.
211
+ */
212
+ export declare const BusinessAddressSchema: GenMessage<BusinessAddress>;
213
+
214
+ /**
215
+ * @generated from message partner.v1.OwnerInfo
216
+ */
217
+ export declare type OwnerInfo = Message<"partner.v1.OwnerInfo"> & {
218
+ /**
219
+ * @generated from field: string owner_name = 1;
220
+ */
221
+ ownerName: string;
222
+
223
+ /**
224
+ * @generated from field: string owner_email = 2;
225
+ */
226
+ ownerEmail: string;
227
+
228
+ /**
229
+ * @generated from field: string phone_number = 3;
230
+ */
231
+ phoneNumber: string;
232
+
233
+ /**
234
+ * @generated from field: string id_type = 4;
235
+ */
236
+ idType: string;
237
+
238
+ /**
239
+ * @generated from field: string designation = 5;
240
+ */
241
+ designation: string;
242
+
243
+ /**
244
+ * @generated from field: optional string designation_other = 6;
245
+ */
246
+ designationOther?: string;
247
+ };
248
+
249
+ /**
250
+ * Describes the message partner.v1.OwnerInfo.
251
+ * Use `create(OwnerInfoSchema)` to create a new message.
252
+ */
253
+ export declare const OwnerInfoSchema: GenMessage<OwnerInfo>;
254
+
255
+ /**
256
+ * @generated from message partner.v1.Coordinate
257
+ */
258
+ export declare type Coordinate = Message<"partner.v1.Coordinate"> & {
259
+ /**
260
+ * @generated from field: double latitude = 1;
261
+ */
262
+ latitude: number;
263
+
264
+ /**
265
+ * @generated from field: double longitude = 2;
266
+ */
267
+ longitude: number;
268
+ };
269
+
270
+ /**
271
+ * Describes the message partner.v1.Coordinate.
272
+ * Use `create(CoordinateSchema)` to create a new message.
273
+ */
274
+ export declare const CoordinateSchema: GenMessage<Coordinate>;
275
+
276
+ /**
277
+ * @generated from enum partner.v1.PartnerStatus
278
+ */
279
+ export enum PartnerStatus {
280
+ /**
281
+ * @generated from enum value: PARTNER_STATUS_UNSPECIFIED = 0;
282
+ */
283
+ UNSPECIFIED = 0,
284
+
285
+ /**
286
+ * @generated from enum value: PARTNER_STATUS_ACTIVE = 1;
287
+ */
288
+ ACTIVE = 1,
289
+
290
+ /**
291
+ * @generated from enum value: PARTNER_STATUS_BLOCKED = 2;
292
+ */
293
+ BLOCKED = 2,
294
+
295
+ /**
296
+ * @generated from enum value: PARTNER_STATUS_DELETED = 3;
297
+ */
298
+ DELETED = 3,
299
+ }
300
+
301
+ /**
302
+ * Describes the enum partner.v1.PartnerStatus.
303
+ */
304
+ export declare const PartnerStatusSchema: GenEnum<PartnerStatus>;
305
+
306
+ /**
307
+ * @generated from enum partner.v1.PartnerOnboardStatus
308
+ */
309
+ export enum PartnerOnboardStatus {
310
+ /**
311
+ * @generated from enum value: PARTNER_ONBOARD_STATUS_UNSPECIFIED = 0;
312
+ */
313
+ UNSPECIFIED = 0,
314
+
315
+ /**
316
+ * @generated from enum value: PARTNER_ONBOARD_STATUS_PENDING = 1;
317
+ */
318
+ PENDING = 1,
319
+
320
+ /**
321
+ * @generated from enum value: PARTNER_ONBOARD_STATUS_COMPLETED = 2;
322
+ */
323
+ COMPLETED = 2,
324
+
325
+ /**
326
+ * @generated from enum value: PARTNER_ONBOARD_STATUS_REJECTED = 3;
327
+ */
328
+ REJECTED = 3,
329
+
330
+ /**
331
+ * @generated from enum value: PARTNER_ONBOARD_STATUS_WAITING_SYNC = 4;
332
+ */
333
+ WAITING_SYNC = 4,
334
+ }
335
+
336
+ /**
337
+ * Describes the enum partner.v1.PartnerOnboardStatus.
338
+ */
339
+ export declare const PartnerOnboardStatusSchema: GenEnum<PartnerOnboardStatus>;
340
+
@@ -0,0 +1,71 @@
1
+ // @generated by protoc-gen-es v2.10.2 with parameter "target=js+dts,import_extension=none"
2
+ // @generated from file partner/v1/partner_profile_created.proto (package partner.v1, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import { enumDesc, fileDesc, messageDesc, tsEnum } from "@bufbuild/protobuf/codegenv2";
6
+
7
+ /**
8
+ * Describes the file partner/v1/partner_profile_created.proto.
9
+ */
10
+ export const file_partner_v1_partner_profile_created = /*@__PURE__*/
11
+ fileDesc("CihwYXJ0bmVyL3YxL3BhcnRuZXJfcHJvZmlsZV9jcmVhdGVkLnByb3RvEgpwYXJ0bmVyLnYxIowDChVQYXJ0bmVyUHJvZmlsZUNyZWF0ZWQSCgoCaWQYASABKAkSDAoEbmFtZRgCIAEoCRINCgVlbWFpbBgDIAEoCRIpCgZzdGF0dXMYBCABKA4yGS5wYXJ0bmVyLnYxLlBhcnRuZXJTdGF0dXMSOAoOb25ib2FyZF9zdGF0dXMYBSABKA4yIC5wYXJ0bmVyLnYxLlBhcnRuZXJPbmJvYXJkU3RhdHVzEhkKDG9uYm9hcmRlZF9hdBgGIAEoA0gAiAEBEhIKCmNyZWF0ZWRfYXQYByABKAMSEgoKdXBkYXRlZF9hdBgIIAEoAxIvCg1idXNpbmVzc19pbmZvGAkgASgLMhgucGFydG5lci52MS5CdXNpbmVzc0luZm8SNQoQYnVzaW5lc3NfYWRkcmVzcxgKIAEoCzIbLnBhcnRuZXIudjEuQnVzaW5lc3NBZGRyZXNzEikKCm93bmVyX2luZm8YCyABKAsyFS5wYXJ0bmVyLnYxLk93bmVySW5mb0IPCg1fb25ib2FyZGVkX2F0IuABCgxCdXNpbmVzc0luZm8SFQoNYnVzaW5lc3NfbmFtZRgBIAEoCRIaChJpbmNvcnBvcmF0aW9uX2RhdGUYAiABKAkSEAoIaW5kdXN0cnkYAyABKAkSEgoKdHJhZGVfbmFtZRgEIAEoCRIVCg1idXNpbmVzc190eXBlGAUgASgJEiAKE2J1c2luZXNzX3R5cGVfb3RoZXIYBiABKAlIAIgBARIXCgpnc3RfbnVtYmVyGAcgASgJSAGIAQFCFgoUX2J1c2luZXNzX3R5cGVfb3RoZXJCDQoLX2dzdF9udW1iZXIipgUKD0J1c2luZXNzQWRkcmVzcxIgChhyZWdpc3RlcmVkX2FkZHJlc3NfbGluZTEYASABKAkSJQoYcmVnaXN0ZXJlZF9hZGRyZXNzX2xpbmUyGAIgASgJSACIAQESFwoPcmVnaXN0ZXJlZF9jaXR5GAMgASgJEhgKEHJlZ2lzdGVyZWRfc3RhdGUYBCABKAkSHgoWcmVnaXN0ZXJlZF9wb3N0YWxfY29kZRgFIAEoCRIaChJyZWdpc3RlcmVkX2NvdW50cnkYBiABKAkSIAoYc2FtZV9vcGVyYXRpb25hbF9hZGRyZXNzGAcgASgIEiYKGW9wZXJhdGlvbmFsX2FkZHJlc3NfbGluZTEYCCABKAlIAYgBARImChlvcGVyYXRpb25hbF9hZGRyZXNzX2xpbmUyGAkgASgJSAKIAQESHQoQb3BlcmF0aW9uYWxfY2l0eRgKIAEoCUgDiAEBEh4KEW9wZXJhdGlvbmFsX3N0YXRlGAsgASgJSASIAQESJAoXb3BlcmF0aW9uYWxfcG9zdGFsX2NvZGUYDCABKAlIBYgBARIgChNvcGVyYXRpb25hbF9jb3VudHJ5GA0gASgJSAaIAQESKgoKY29vcmRpbmF0ZRgOIAEoCzIWLnBhcnRuZXIudjEuQ29vcmRpbmF0ZUIbChlfcmVnaXN0ZXJlZF9hZGRyZXNzX2xpbmUyQhwKGl9vcGVyYXRpb25hbF9hZGRyZXNzX2xpbmUxQhwKGl9vcGVyYXRpb25hbF9hZGRyZXNzX2xpbmUyQhMKEV9vcGVyYXRpb25hbF9jaXR5QhQKEl9vcGVyYXRpb25hbF9zdGF0ZUIaChhfb3BlcmF0aW9uYWxfcG9zdGFsX2NvZGVCFgoUX29wZXJhdGlvbmFsX2NvdW50cnkipgEKCU93bmVySW5mbxISCgpvd25lcl9uYW1lGAEgASgJEhMKC293bmVyX2VtYWlsGAIgASgJEhQKDHBob25lX251bWJlchgDIAEoCRIPCgdpZF90eXBlGAQgASgJEhMKC2Rlc2lnbmF0aW9uGAUgASgJEh4KEWRlc2lnbmF0aW9uX290aGVyGAYgASgJSACIAQFCFAoSX2Rlc2lnbmF0aW9uX290aGVyIjEKCkNvb3JkaW5hdGUSEAoIbGF0aXR1ZGUYASABKAESEQoJbG9uZ2l0dWRlGAIgASgBKoIBCg1QYXJ0bmVyU3RhdHVzEh4KGlBBUlRORVJfU1RBVFVTX1VOU1BFQ0lGSUVEEAASGQoVUEFSVE5FUl9TVEFUVVNfQUNUSVZFEAESGgoWUEFSVE5FUl9TVEFUVVNfQkxPQ0tFRBACEhoKFlBBUlRORVJfU1RBVFVTX0RFTEVURUQQAyrWAQoUUGFydG5lck9uYm9hcmRTdGF0dXMSJgoiUEFSVE5FUl9PTkJPQVJEX1NUQVRVU19VTlNQRUNJRklFRBAAEiIKHlBBUlRORVJfT05CT0FSRF9TVEFUVVNfUEVORElORxABEiQKIFBBUlRORVJfT05CT0FSRF9TVEFUVVNfQ09NUExFVEVEEAISIwofUEFSVE5FUl9PTkJPQVJEX1NUQVRVU19SRUpFQ1RFRBADEicKI1BBUlRORVJfT05CT0FSRF9TVEFUVVNfV0FJVElOR19TWU5DEARCdQoOY29tLnBhcnRuZXIudjFCGlBhcnRuZXJQcm9maWxlQ3JlYXRlZFByb3RvUAGiAgNQWFiqAgpQYXJ0bmVyLlYxygIKUGFydG5lclxWMeICFlBhcnRuZXJcVjFcR1BCTWV0YWRhdGHqAgtQYXJ0bmVyOjpWMWIGcHJvdG8z");
12
+
13
+ /**
14
+ * Describes the message partner.v1.PartnerProfileCreated.
15
+ * Use `create(PartnerProfileCreatedSchema)` to create a new message.
16
+ */
17
+ export const PartnerProfileCreatedSchema = /*@__PURE__*/
18
+ messageDesc(file_partner_v1_partner_profile_created, 0);
19
+
20
+ /**
21
+ * Describes the message partner.v1.BusinessInfo.
22
+ * Use `create(BusinessInfoSchema)` to create a new message.
23
+ */
24
+ export const BusinessInfoSchema = /*@__PURE__*/
25
+ messageDesc(file_partner_v1_partner_profile_created, 1);
26
+
27
+ /**
28
+ * Describes the message partner.v1.BusinessAddress.
29
+ * Use `create(BusinessAddressSchema)` to create a new message.
30
+ */
31
+ export const BusinessAddressSchema = /*@__PURE__*/
32
+ messageDesc(file_partner_v1_partner_profile_created, 2);
33
+
34
+ /**
35
+ * Describes the message partner.v1.OwnerInfo.
36
+ * Use `create(OwnerInfoSchema)` to create a new message.
37
+ */
38
+ export const OwnerInfoSchema = /*@__PURE__*/
39
+ messageDesc(file_partner_v1_partner_profile_created, 3);
40
+
41
+ /**
42
+ * Describes the message partner.v1.Coordinate.
43
+ * Use `create(CoordinateSchema)` to create a new message.
44
+ */
45
+ export const CoordinateSchema = /*@__PURE__*/
46
+ messageDesc(file_partner_v1_partner_profile_created, 4);
47
+
48
+ /**
49
+ * Describes the enum partner.v1.PartnerStatus.
50
+ */
51
+ export const PartnerStatusSchema = /*@__PURE__*/
52
+ enumDesc(file_partner_v1_partner_profile_created, 0);
53
+
54
+ /**
55
+ * @generated from enum partner.v1.PartnerStatus
56
+ */
57
+ export const PartnerStatus = /*@__PURE__*/
58
+ tsEnum(PartnerStatusSchema);
59
+
60
+ /**
61
+ * Describes the enum partner.v1.PartnerOnboardStatus.
62
+ */
63
+ export const PartnerOnboardStatusSchema = /*@__PURE__*/
64
+ enumDesc(file_partner_v1_partner_profile_created, 1);
65
+
66
+ /**
67
+ * @generated from enum partner.v1.PartnerOnboardStatus
68
+ */
69
+ export const PartnerOnboardStatus = /*@__PURE__*/
70
+ tsEnum(PartnerOnboardStatusSchema);
71
+
@@ -0,0 +1,4 @@
1
+ export * from './user_account_created_pb';
2
+ export * from './user_email_verification_requested_pb';
3
+ export * from './user_forgot_password_pb';
4
+ export * from './user_profile_created_pb';
@@ -0,0 +1,4 @@
1
+ export * from './user_account_created_pb';
2
+ export * from './user_email_verification_requested_pb';
3
+ export * from './user_forgot_password_pb';
4
+ export * from './user_profile_created_pb';
@@ -0,0 +1,43 @@
1
+ // @generated by protoc-gen-es v2.10.2 with parameter "target=js+dts,import_extension=none"
2
+ // @generated from file user/v1/user_account_created.proto (package user.v1, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
6
+ import type { Message } from "@bufbuild/protobuf";
7
+
8
+ /**
9
+ * Describes the file user/v1/user_account_created.proto.
10
+ */
11
+ export declare const file_user_v1_user_account_created: GenFile;
12
+
13
+ /**
14
+ * @generated from message user.v1.UserAccountCreated
15
+ */
16
+ export declare type UserAccountCreated = Message<"user.v1.UserAccountCreated"> & {
17
+ /**
18
+ * @generated from field: string id = 1;
19
+ */
20
+ id: string;
21
+
22
+ /**
23
+ * @generated from field: string first_name = 2;
24
+ */
25
+ firstName: string;
26
+
27
+ /**
28
+ * @generated from field: string last_name = 3;
29
+ */
30
+ lastName: string;
31
+
32
+ /**
33
+ * @generated from field: string email = 4;
34
+ */
35
+ email: string;
36
+ };
37
+
38
+ /**
39
+ * Describes the message user.v1.UserAccountCreated.
40
+ * Use `create(UserAccountCreatedSchema)` to create a new message.
41
+ */
42
+ export declare const UserAccountCreatedSchema: GenMessage<UserAccountCreated>;
43
+
@@ -0,0 +1,19 @@
1
+ // @generated by protoc-gen-es v2.10.2 with parameter "target=js+dts,import_extension=none"
2
+ // @generated from file user/v1/user_account_created.proto (package user.v1, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
6
+
7
+ /**
8
+ * Describes the file user/v1/user_account_created.proto.
9
+ */
10
+ export const file_user_v1_user_account_created = /*@__PURE__*/
11
+ fileDesc("CiJ1c2VyL3YxL3VzZXJfYWNjb3VudF9jcmVhdGVkLnByb3RvEgd1c2VyLnYxIlYKElVzZXJBY2NvdW50Q3JlYXRlZBIKCgJpZBgBIAEoCRISCgpmaXJzdF9uYW1lGAIgASgJEhEKCWxhc3RfbmFtZRgDIAEoCRINCgVlbWFpbBgEIAEoCUJjCgtjb20udXNlci52MUIXVXNlckFjY291bnRDcmVhdGVkUHJvdG9QAaICA1VYWKoCB1VzZXIuVjHKAgdVc2VyXFYx4gITVXNlclxWMVxHUEJNZXRhZGF0YeoCCFVzZXI6OlYxYgZwcm90bzM");
12
+
13
+ /**
14
+ * Describes the message user.v1.UserAccountCreated.
15
+ * Use `create(UserAccountCreatedSchema)` to create a new message.
16
+ */
17
+ export const UserAccountCreatedSchema = /*@__PURE__*/
18
+ messageDesc(file_user_v1_user_account_created, 0);
19
+
@@ -0,0 +1,48 @@
1
+ // @generated by protoc-gen-es v2.10.2 with parameter "target=js+dts,import_extension=none"
2
+ // @generated from file user/v1/user_email_verification_requested.proto (package user.v1, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
6
+ import type { Message } from "@bufbuild/protobuf";
7
+
8
+ /**
9
+ * Describes the file user/v1/user_email_verification_requested.proto.
10
+ */
11
+ export declare const file_user_v1_user_email_verification_requested: GenFile;
12
+
13
+ /**
14
+ * @generated from message user.v1.UserEmailVerificationRequestedPayload
15
+ */
16
+ export declare type UserEmailVerificationRequestedPayload = Message<"user.v1.UserEmailVerificationRequestedPayload"> & {
17
+ /**
18
+ * @generated from field: string id = 10;
19
+ */
20
+ id: string;
21
+
22
+ /**
23
+ * @generated from field: string email = 11;
24
+ */
25
+ email: string;
26
+
27
+ /**
28
+ * @generated from field: string fullname = 12;
29
+ */
30
+ fullname: string;
31
+
32
+ /**
33
+ * @generated from field: string verification_token = 13;
34
+ */
35
+ verificationToken: string;
36
+
37
+ /**
38
+ * @generated from field: int64 created_at = 14;
39
+ */
40
+ createdAt: bigint;
41
+ };
42
+
43
+ /**
44
+ * Describes the message user.v1.UserEmailVerificationRequestedPayload.
45
+ * Use `create(UserEmailVerificationRequestedPayloadSchema)` to create a new message.
46
+ */
47
+ export declare const UserEmailVerificationRequestedPayloadSchema: GenMessage<UserEmailVerificationRequestedPayload>;
48
+
@@ -0,0 +1,19 @@
1
+ // @generated by protoc-gen-es v2.10.2 with parameter "target=js+dts,import_extension=none"
2
+ // @generated from file user/v1/user_email_verification_requested.proto (package user.v1, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
6
+
7
+ /**
8
+ * Describes the file user/v1/user_email_verification_requested.proto.
9
+ */
10
+ export const file_user_v1_user_email_verification_requested = /*@__PURE__*/
11
+ fileDesc("Ci91c2VyL3YxL3VzZXJfZW1haWxfdmVyaWZpY2F0aW9uX3JlcXVlc3RlZC5wcm90bxIHdXNlci52MSKEAQolVXNlckVtYWlsVmVyaWZpY2F0aW9uUmVxdWVzdGVkUGF5bG9hZBIKCgJpZBgKIAEoCRINCgVlbWFpbBgLIAEoCRIQCghmdWxsbmFtZRgMIAEoCRIaChJ2ZXJpZmljYXRpb25fdG9rZW4YDSABKAkSEgoKY3JlYXRlZF9hdBgOIAEoA0JvCgtjb20udXNlci52MUIjVXNlckVtYWlsVmVyaWZpY2F0aW9uUmVxdWVzdGVkUHJvdG9QAaICA1VYWKoCB1VzZXIuVjHKAgdVc2VyXFYx4gITVXNlclxWMVxHUEJNZXRhZGF0YeoCCFVzZXI6OlYxYgZwcm90bzM");
12
+
13
+ /**
14
+ * Describes the message user.v1.UserEmailVerificationRequestedPayload.
15
+ * Use `create(UserEmailVerificationRequestedPayloadSchema)` to create a new message.
16
+ */
17
+ export const UserEmailVerificationRequestedPayloadSchema = /*@__PURE__*/
18
+ messageDesc(file_user_v1_user_email_verification_requested, 0);
19
+
@@ -0,0 +1,43 @@
1
+ // @generated by protoc-gen-es v2.10.2 with parameter "target=js+dts,import_extension=none"
2
+ // @generated from file user/v1/user_forgot_password.proto (package user.v1, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
6
+ import type { Message } from "@bufbuild/protobuf";
7
+
8
+ /**
9
+ * Describes the file user/v1/user_forgot_password.proto.
10
+ */
11
+ export declare const file_user_v1_user_forgot_password: GenFile;
12
+
13
+ /**
14
+ * @generated from message user.v1.UserForgotPasswordPayload
15
+ */
16
+ export declare type UserForgotPasswordPayload = Message<"user.v1.UserForgotPasswordPayload"> & {
17
+ /**
18
+ * @generated from field: string password_reset_token = 1;
19
+ */
20
+ passwordResetToken: string;
21
+
22
+ /**
23
+ * @generated from field: string email = 2;
24
+ */
25
+ email: string;
26
+
27
+ /**
28
+ * @generated from field: string user_full_name = 3;
29
+ */
30
+ userFullName: string;
31
+
32
+ /**
33
+ * @generated from field: int64 requested_at = 4;
34
+ */
35
+ requestedAt: bigint;
36
+ };
37
+
38
+ /**
39
+ * Describes the message user.v1.UserForgotPasswordPayload.
40
+ * Use `create(UserForgotPasswordPayloadSchema)` to create a new message.
41
+ */
42
+ export declare const UserForgotPasswordPayloadSchema: GenMessage<UserForgotPasswordPayload>;
43
+
@@ -0,0 +1,19 @@
1
+ // @generated by protoc-gen-es v2.10.2 with parameter "target=js+dts,import_extension=none"
2
+ // @generated from file user/v1/user_forgot_password.proto (package user.v1, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
6
+
7
+ /**
8
+ * Describes the file user/v1/user_forgot_password.proto.
9
+ */
10
+ export const file_user_v1_user_forgot_password = /*@__PURE__*/
11
+ fileDesc("CiJ1c2VyL3YxL3VzZXJfZm9yZ290X3Bhc3N3b3JkLnByb3RvEgd1c2VyLnYxInYKGVVzZXJGb3Jnb3RQYXNzd29yZFBheWxvYWQSHAoUcGFzc3dvcmRfcmVzZXRfdG9rZW4YASABKAkSDQoFZW1haWwYAiABKAkSFgoOdXNlcl9mdWxsX25hbWUYAyABKAkSFAoMcmVxdWVzdGVkX2F0GAQgASgDQmMKC2NvbS51c2VyLnYxQhdVc2VyRm9yZ290UGFzc3dvcmRQcm90b1ABogIDVVhYqgIHVXNlci5WMcoCB1VzZXJcVjHiAhNVc2VyXFYxXEdQQk1ldGFkYXRh6gIIVXNlcjo6VjFiBnByb3RvMw");
12
+
13
+ /**
14
+ * Describes the message user.v1.UserForgotPasswordPayload.
15
+ * Use `create(UserForgotPasswordPayloadSchema)` to create a new message.
16
+ */
17
+ export const UserForgotPasswordPayloadSchema = /*@__PURE__*/
18
+ messageDesc(file_user_v1_user_forgot_password, 0);
19
+