diff --git a/api/v1/authentication/service_pb.ts b/api/v1/authentication/service_pb.ts index 9cb4477..6c43781 100644 --- a/api/v1/authentication/service_pb.ts +++ b/api/v1/authentication/service_pb.ts @@ -80,6 +80,13 @@ export class SendVerificationEmailRequest extends Message { + /** + * The token used as accesstoken to verify the email. + * + * @generated from field: string token = 1; + */ + token = ""; + constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); @@ -88,6 +95,7 @@ export class SendVerificationEmailResponse extends Message [ + { no: 1, name: "token", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): SendVerificationEmailResponse { @@ -679,6 +687,13 @@ export class SendPasswordResetRequest extends Message * @generated from message api.v1.authentication.SendPasswordResetResponse */ export class SendPasswordResetResponse extends Message { + /** + * The token used as accesstoken to reset the password. + * + * @generated from field: string token = 1; + */ + token = ""; + constructor(data?: PartialMessage) { super(); proto3.util.initPartial(data, this); @@ -687,6 +702,7 @@ export class SendPasswordResetResponse extends Message [ + { no: 1, name: "token", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): SendPasswordResetResponse {