diff --git a/packages/bsky/proto/bsky.proto b/packages/bsky/proto/bsky.proto index c39c8d06314..17c96153579 100644 --- a/packages/bsky/proto/bsky.proto +++ b/packages/bsky/proto/bsky.proto @@ -226,12 +226,12 @@ message GetRelationshipsRequest { message Relationships { bool muted = 1; string muted_by_list = 2; - string blockedBy = 3; + string blocked_by = 3; string blocking = 4; - string blockedByList = 5; - string blockingByList = 6; + string blocked_by_list = 5; + string blocking_by_list = 6; string following = 7; - string followedBy = 8; + string followed_by = 8; } message GetRelationshipsResponse { diff --git a/packages/bsky/src/data-plane/gen/bsky_pb.ts b/packages/bsky/src/data-plane/gen/bsky_pb.ts index 1cbe00b6a35..58b9f30434d 100644 --- a/packages/bsky/src/data-plane/gen/bsky_pb.ts +++ b/packages/bsky/src/data-plane/gen/bsky_pb.ts @@ -1455,7 +1455,7 @@ export class Relationships extends Message { mutedByList = ""; /** - * @generated from field: string blockedBy = 3; + * @generated from field: string blocked_by = 3; */ blockedBy = ""; @@ -1465,12 +1465,12 @@ export class Relationships extends Message { blocking = ""; /** - * @generated from field: string blockedByList = 5; + * @generated from field: string blocked_by_list = 5; */ blockedByList = ""; /** - * @generated from field: string blockingByList = 6; + * @generated from field: string blocking_by_list = 6; */ blockingByList = ""; @@ -1480,7 +1480,7 @@ export class Relationships extends Message { following = ""; /** - * @generated from field: string followedBy = 8; + * @generated from field: string followed_by = 8; */ followedBy = ""; @@ -1494,12 +1494,12 @@ export class Relationships extends Message { static readonly fields: FieldList = proto3.util.newFieldList(() => [ { no: 1, name: "muted", kind: "scalar", T: 8 /* ScalarType.BOOL */ }, { no: 2, name: "muted_by_list", kind: "scalar", T: 9 /* ScalarType.STRING */ }, - { no: 3, name: "blockedBy", kind: "scalar", T: 9 /* ScalarType.STRING */ }, + { no: 3, name: "blocked_by", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 4, name: "blocking", kind: "scalar", T: 9 /* ScalarType.STRING */ }, - { no: 5, name: "blockedByList", kind: "scalar", T: 9 /* ScalarType.STRING */ }, - { no: 6, name: "blockingByList", kind: "scalar", T: 9 /* ScalarType.STRING */ }, + { no: 5, name: "blocked_by_list", kind: "scalar", T: 9 /* ScalarType.STRING */ }, + { no: 6, name: "blocking_by_list", kind: "scalar", T: 9 /* ScalarType.STRING */ }, { no: 7, name: "following", kind: "scalar", T: 9 /* ScalarType.STRING */ }, - { no: 8, name: "followedBy", kind: "scalar", T: 9 /* ScalarType.STRING */ }, + { no: 8, name: "followed_by", kind: "scalar", T: 9 /* ScalarType.STRING */ }, ]); static fromBinary(bytes: Uint8Array, options?: Partial): Relationships {