Skip to content

Commit

Permalink
[SCHEMA] - Update from schema
Browse files Browse the repository at this point in the history
  • Loading branch information
keegancraigcruickshank committed Jun 13, 2024
1 parent 393aff0 commit 3096207
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions users/v1/private/users_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,19 +239,19 @@ export declare class GetMeResponse extends Message<GetMeResponse> {
*/
export declare class UpdateMeRequest extends Message<UpdateMeRequest> {
/**
* @generated from field: string given_name = 1;
* @generated from field: optional string given_name = 1;
*/
givenName: string;
givenName?: string;

/**
* @generated from field: string family_name = 2;
* @generated from field: optional string family_name = 2;
*/
familyName: string;
familyName?: string;

/**
* @generated from field: string email = 3;
* @generated from field: optional string email = 3;
*/
email: string;
email?: string;

constructor(data?: PartialMessage<UpdateMeRequest>);

Expand Down
6 changes: 3 additions & 3 deletions users/v1/private/users_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ export const GetMeResponse = /*@__PURE__*/ proto3.makeMessageType(
export const UpdateMeRequest = /*@__PURE__*/ proto3.makeMessageType(
"users.v1.private.UpdateMeRequest",
() => [
{ no: 1, name: "given_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 2, name: "family_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 3, name: "email", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 1, name: "given_name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
{ no: 2, name: "family_name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
{ no: 3, name: "email", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
],
);

Expand Down

0 comments on commit 3096207

Please sign in to comment.