Skip to content

Commit

Permalink
remove message_activity_summary (#6567)
Browse files Browse the repository at this point in the history
  • Loading branch information
julianjelfs authored Oct 12, 2024
1 parent 0544d91 commit a45c3ab
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
7 changes: 0 additions & 7 deletions frontend/openchat-agent/src/services/user/candid/idl.js
Original file line number Diff line number Diff line change
Expand Up @@ -1216,11 +1216,6 @@ export const idlFactory = ({ IDL }) => {
const CommunitiesInitial = IDL.Record({
'summaries' : IDL.Vec(UserCanisterCommunitySummary),
});
const MessageActivitySummary = IDL.Record({
'read_up_to' : TimestampMillis,
'unread_count' : IDL.Nat32,
'latest_event' : TimestampMillis,
});
const Referral = IDL.Record({
'status' : ReferralStatus,
'user_id' : UserId,
Expand Down Expand Up @@ -1307,7 +1302,6 @@ export const idlFactory = ({ IDL }) => {
'communities' : CommunitiesInitial,
'total_chit_earned' : IDL.Int32,
'wallet_config' : WalletConfig,
'message_activity_summary' : MessageActivitySummary,
'blocked_users' : IDL.Vec(UserId),
'is_unique_person' : IDL.Bool,
'referrals' : IDL.Vec(Referral),
Expand Down Expand Up @@ -2019,7 +2013,6 @@ export const idlFactory = ({ IDL }) => {
'username' : IDL.Opt(IDL.Text),
'total_chit_earned' : IDL.Int32,
'wallet_config' : IDL.Opt(WalletConfig),
'message_activity_summary' : IDL.Opt(MessageActivitySummary),
'blocked_users' : IDL.Opt(IDL.Vec(UserId)),
'is_unique_person' : IDL.Opt(IDL.Bool),
'referrals' : IDL.Vec(Referral),
Expand Down
2 changes: 0 additions & 2 deletions frontend/openchat-agent/src/services/user/candid/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,6 @@ export type InitialStateResponse = {
'communities' : CommunitiesInitial,
'total_chit_earned' : number,
'wallet_config' : WalletConfig,
'message_activity_summary' : MessageActivitySummary,
'blocked_users' : Array<UserId>,
'is_unique_person' : boolean,
'referrals' : Array<Referral>,
Expand Down Expand Up @@ -2498,7 +2497,6 @@ export type UpdatesResponse = {
'username' : [] | [string],
'total_chit_earned' : number,
'wallet_config' : [] | [WalletConfig],
'message_activity_summary' : [] | [MessageActivitySummary],
'blocked_users' : [] | [Array<UserId>],
'is_unique_person' : [] | [boolean],
'referrals' : Array<Referral>,
Expand Down

0 comments on commit a45c3ab

Please sign in to comment.