@solidexpert/chat-api
Advanced tools
Comparing version 1.0.27 to 1.0.29
@@ -34,13 +34,13 @@ /** | ||
/** http://undefined/swagger/swagger-ui.html#!/Chat/GetMyChats */ | ||
getMyChats(params: GetMyChatsParams): Observable<__model.ChatViewModel[]>; | ||
GetMyChats(params: GetMyChatsParams): Observable<__model.ChatViewModel[]>; | ||
/** http://undefined/swagger/swagger-ui.html#!/Chat/CreateChat */ | ||
createChat(params: CreateChatParams): Observable<__model.Chat>; | ||
CreateChat(params: CreateChatParams): Observable<__model.Chat>; | ||
/** http://undefined/swagger/swagger-ui.html#!/Chat/GetChat */ | ||
getChat(params: GetChatParams): Observable<__model.Chat>; | ||
GetChat(params: GetChatParams): Observable<__model.Chat>; | ||
/** http://undefined/swagger/swagger-ui.html#!/Chat/UpdateChat */ | ||
updateChat(params: UpdateChatParams): Observable<void>; | ||
UpdateChat(params: UpdateChatParams): Observable<void>; | ||
/** http://undefined/swagger/swagger-ui.html#!/Chat/DeleteChat */ | ||
deleteChat(params: DeleteChatParams): Observable<void>; | ||
DeleteChat(params: DeleteChatParams): Observable<void>; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<ChatService, never>; | ||
static ɵprov: i0.ɵɵInjectableDeclaration<ChatService>; | ||
} |
@@ -18,3 +18,3 @@ /** | ||
} | ||
export interface ChatParams { | ||
export interface GetChatMessagesParams { | ||
/** format: uuid */ | ||
@@ -30,11 +30,11 @@ id: string; | ||
/** http://undefined/swagger/swagger-ui.html#!/Messages/GetMessage */ | ||
getMessage(params: GetMessageParams): Observable<__model.MessageViewModel>; | ||
GetMessage(params: GetMessageParams): Observable<__model.MessageViewModel>; | ||
/** http://undefined/swagger/swagger-ui.html#!/Messages/DeleteMessage */ | ||
deleteMessage(params: DeleteMessageParams): Observable<void>; | ||
DeleteMessage(params: DeleteMessageParams): Observable<void>; | ||
/** http://undefined/swagger/swagger-ui.html#!/Messages/GetChatMessages */ | ||
chat(params: ChatParams): Observable<__model.MessageViewModel[]>; | ||
GetChatMessages(params: GetChatMessagesParams): Observable<__model.MessageViewModel[]>; | ||
/** http://undefined/swagger/swagger-ui.html#!/Messages/SendMessage */ | ||
sendMessage(params: SendMessageParams): Observable<__model.Message>; | ||
SendMessage(params: SendMessageParams): Observable<__model.Message>; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<MessagesService, never>; | ||
static ɵprov: i0.ɵɵInjectableDeclaration<MessagesService>; | ||
} |
{ | ||
"name": "@solidexpert/chat-api", | ||
"version": "1.0.27", | ||
"version": "1.0.29", | ||
"peerDependencies": { | ||
@@ -5,0 +5,0 @@ "@angular/common": "*", |
@@ -13,10 +13,10 @@ export * from './lib/model'; | ||
export * from './lib/defs/MessageViewModel'; | ||
export * from './lib/store/chat/createChat/createChat.service'; | ||
export * from './lib/store/chat/deleteChat/deleteChat.service'; | ||
export * from './lib/store/chat/getChat/getChat.service'; | ||
export * from './lib/store/chat/getMyChats/getMyChats.service'; | ||
export * from './lib/store/chat/updateChat/updateChat.service'; | ||
export * from './lib/store/messages/chat/chat.service'; | ||
export * from './lib/store/messages/deleteMessage/deleteMessage.service'; | ||
export * from './lib/store/messages/getMessage/getMessage.service'; | ||
export * from './lib/store/messages/sendMessage/sendMessage.service'; | ||
export * from './lib/store/chat/CreateChat/CreateChat.service'; | ||
export * from './lib/store/chat/DeleteChat/DeleteChat.service'; | ||
export * from './lib/store/chat/GetChat/GetChat.service'; | ||
export * from './lib/store/chat/GetMyChats/GetMyChats.service'; | ||
export * from './lib/store/chat/UpdateChat/UpdateChat.service'; | ||
export * from './lib/store/messages/DeleteMessage/DeleteMessage.service'; | ||
export * from './lib/store/messages/GetChatMessages/GetChatMessages.service'; | ||
export * from './lib/store/messages/GetMessage/GetMessage.service'; | ||
export * from './lib/store/messages/SendMessage/SendMessage.service'; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
193091