Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,224 changes: 740 additions & 484 deletions generated/go/chat/v2/chat_service.pb.go

Large diffs are not rendered by default.

213 changes: 213 additions & 0 deletions generated/go/chat/v2/chat_service.pb.validate.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 42 additions & 0 deletions generated/go/chat/v2/chat_service_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 12 additions & 2 deletions generated/protobuf-es/account/v1/account_service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// @generated by protoc-gen-es v1.4.2 with parameter "target=ts"
// @generated by protoc-gen-es v1.10.0 with parameter "target=ts"
// @generated from file account/v1/account_service.proto (package code.account.v1, syntax proto3)
/* eslint-disable */
// @ts-nocheck

import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
import { Message, proto3, protoInt64 } from "@bufbuild/protobuf";
import { Message, proto3, protoInt64, Timestamp } from "@bufbuild/protobuf";
import { AccountType, Relationship, Signature, SolanaAccountId } from "../../common/v1/model_pb";
import { ExchangeData } from "../../transaction/v2/transaction_service_pb";

Expand Down Expand Up @@ -490,6 +490,15 @@ export class TokenAccountInfo extends Message<TokenAccountInfo> {
*/
relationship?: Relationship;

/**
* Time the account was created, if available. For Code accounts, this is
* the time of intent submission. Otherwise, for external accounts, it is
* the tiem created on the blockchain.
*
* @generated from field: google.protobuf.Timestamp created_at = 17;
*/
createdAt?: Timestamp;

constructor(data?: PartialMessage<TokenAccountInfo>) {
super();
proto3.util.initPartial(data, this);
Expand All @@ -512,6 +521,7 @@ export class TokenAccountInfo extends Message<TokenAccountInfo> {
{ no: 12, name: "original_exchange_data", kind: "message", T: ExchangeData },
{ no: 13, name: "mint", kind: "message", T: SolanaAccountId },
{ no: 16, name: "relationship", kind: "message", T: Relationship },
{ no: 17, name: "created_at", kind: "message", T: Timestamp },
]);

static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TokenAccountInfo {
Expand Down
2 changes: 1 addition & 1 deletion generated/protobuf-es/badge/v1/badge_service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v1.4.2 with parameter "target=ts"
// @generated by protoc-gen-es v1.10.0 with parameter "target=ts"
// @generated from file badge/v1/badge_service.proto (package code.badge.v1, syntax proto3)
/* eslint-disable */
// @ts-nocheck
Expand Down
2 changes: 1 addition & 1 deletion generated/protobuf-es/badge/v1/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from './badge_service_connect';
export * from './badge_service_pb';
export * from './badge_service_connect';
2 changes: 2 additions & 0 deletions generated/protobuf-es/chat/v1/chat_service_connect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import { AdvancePointerRequest, AdvancePointerResponse, GetChatsRequest, GetChat
import { MethodKind } from "@bufbuild/protobuf";

/**
* Deprecated: Use the v2 service
*
* @generated from service code.chat.v1.Chat
*/
export const Chat = {
Expand Down
Loading