init
Some checks failed
check / check (push) Failing after 22s
bump / bump (push) Failing after 27s
vulnerable / flake (push) Failing after 32s
vulnerable / actions (push) Failing after 28s
update / renovate (push) Failing after 28s

This commit is contained in:
2026-03-26 16:34:22 -04:00
parent 24059f9660
commit 99dff7586e
156 changed files with 8152 additions and 45 deletions

View File

@@ -0,0 +1,68 @@
/* Automatically generated nanopb header */
/* Generated by nanopb-0.4.9 */
#ifndef PB_USER_AUTH_V1_USER_AUTH_V1_SIGNUP_PB_H_INCLUDED
#define PB_USER_AUTH_V1_USER_AUTH_V1_SIGNUP_PB_H_INCLUDED
#include <pb.h>
#include "buf/validate/validate.pb.h"
#if PB_PROTO_HEADER_VERSION != 40
#error Regenerate this file with the current version of nanopb generator.
#endif
/* Struct definitions */
typedef struct _user_auth_v1_SignUpRequest {
pb_callback_t username;
pb_callback_t password;
pb_callback_t confirm_password;
} user_auth_v1_SignUpRequest;
typedef struct _user_auth_v1_SignUpResponse {
char dummy_field;
} user_auth_v1_SignUpResponse;
#ifdef __cplusplus
extern "C" {
#endif
/* Initializer values for message structs */
#define user_auth_v1_SignUpRequest_init_default {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}}
#define user_auth_v1_SignUpResponse_init_default {0}
#define user_auth_v1_SignUpRequest_init_zero {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}}
#define user_auth_v1_SignUpResponse_init_zero {0}
/* Field tags (for use in manual encoding/decoding) */
#define user_auth_v1_SignUpRequest_username_tag 1
#define user_auth_v1_SignUpRequest_password_tag 2
#define user_auth_v1_SignUpRequest_confirm_password_tag 3
/* Struct field encoding specification for nanopb */
#define user_auth_v1_SignUpRequest_FIELDLIST(X, a) \
X(a, CALLBACK, SINGULAR, STRING, username, 1) \
X(a, CALLBACK, SINGULAR, STRING, password, 2) \
X(a, CALLBACK, SINGULAR, STRING, confirm_password, 3)
#define user_auth_v1_SignUpRequest_CALLBACK pb_default_field_callback
#define user_auth_v1_SignUpRequest_DEFAULT NULL
#define user_auth_v1_SignUpResponse_FIELDLIST(X, a) \
#define user_auth_v1_SignUpResponse_CALLBACK NULL
#define user_auth_v1_SignUpResponse_DEFAULT NULL
extern const pb_msgdesc_t user_auth_v1_SignUpRequest_msg;
extern const pb_msgdesc_t user_auth_v1_SignUpResponse_msg;
/* Defines for backwards compatibility with code written before nanopb-0.4.0 */
#define user_auth_v1_SignUpRequest_fields &user_auth_v1_SignUpRequest_msg
#define user_auth_v1_SignUpResponse_fields &user_auth_v1_SignUpResponse_msg
/* Maximum encoded size of messages (where known) */
/* user_auth_v1_SignUpRequest_size depends on runtime parameters */
#define user_auth_v1_SignUpResponse_size 0
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif