chatkitty
Advanced tools
Comparing version 2.3.0 to 2.3.1
@@ -56,2 +56,3 @@ declare class ChatKittyFile { | ||
repliesCount?: number; | ||
reportCount?: number; | ||
properties: unknown; | ||
@@ -123,4 +124,6 @@ /** @internal */ | ||
repliesCount: string; | ||
reportCount: string; | ||
replies: string; | ||
reactions: string; | ||
reports: string; | ||
} | ||
@@ -135,2 +138,4 @@ declare class MessageActions { | ||
edit: string; | ||
report: string; | ||
removeReport: string; | ||
removeReaction: string; | ||
@@ -356,13 +361,18 @@ updateProperties: string; | ||
}; | ||
declare type Route = { | ||
declare type Route = DirectMessagesRoute | ChannelRoute | EventRoute; | ||
declare type NavigatableRoute = { | ||
name: string; | ||
allowNavigation?: boolean; | ||
} & (DirectMessagesRoute | ChannelRoute); | ||
}; | ||
declare type DirectMessagesRoute = { | ||
name: 'direct-messages'; | ||
users: string[]; | ||
}; | ||
} & NavigatableRoute; | ||
declare type ChannelRoute = { | ||
name: 'channel'; | ||
channel: string; | ||
} & NavigatableRoute; | ||
declare type EventRoute = { | ||
name: 'event'; | ||
event: string; | ||
}; | ||
@@ -369,0 +379,0 @@ declare type UserProfile = { |
{ | ||
"name": "chatkitty", | ||
"version": "2.3.0", | ||
"version": "2.3.1", | ||
"description": "ChatKitty is the first complete chat platform for your mobile and web apps. ChatKitty provides chat features that are easy to add to your new or existing app without having to build ui or a backend.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
415219
1953