@solidexpert/chat-api
Advanced tools
Comparing version 1.0.36 to 1.0.39
/** | ||
* Solidex.Chat | ||
* Solidex.Chat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null | ||
* 1.0 | ||
@@ -13,4 +13,14 @@ * undefined | ||
companyId?: string; | ||
/** | ||
* The requested API version | ||
* default: 1.0 | ||
*/ | ||
apiVersion?: string; | ||
} | ||
export interface CreateChatParams { | ||
/** | ||
* The requested API version | ||
* default: 1.0 | ||
*/ | ||
apiVersion?: string; | ||
model: __model.ChatViewModel; | ||
@@ -21,2 +31,7 @@ } | ||
id: string; | ||
/** | ||
* The requested API version | ||
* default: 1.0 | ||
*/ | ||
apiVersion?: string; | ||
} | ||
@@ -26,2 +41,7 @@ export interface UpdateChatParams { | ||
id: string; | ||
/** | ||
* The requested API version | ||
* default: 1.0 | ||
*/ | ||
apiVersion?: string; | ||
model: __model.ChatViewModel; | ||
@@ -32,2 +52,7 @@ } | ||
id: string; | ||
/** | ||
* The requested API version | ||
* default: 1.0 | ||
*/ | ||
apiVersion?: string; | ||
} | ||
@@ -40,5 +65,5 @@ export declare class ChatService { | ||
/** http://undefined/swagger/swagger-ui.html#!/Chat/CreateChat */ | ||
CreateChat(params: CreateChatParams): Observable<__model.Chat>; | ||
CreateChat(params: CreateChatParams): Observable<__model.ChatEntity>; | ||
/** http://undefined/swagger/swagger-ui.html#!/Chat/GetChat */ | ||
GetChat(params: GetChatParams): Observable<__model.Chat>; | ||
GetChat(params: GetChatParams): Observable<__model.ChatEntity>; | ||
/** http://undefined/swagger/swagger-ui.html#!/Chat/UpdateChat */ | ||
@@ -45,0 +70,0 @@ UpdateChat(params: UpdateChatParams): Observable<void>; |
/** | ||
* Solidex.Chat | ||
* Solidex.Chat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null | ||
* 1.0 | ||
@@ -13,2 +13,7 @@ * undefined | ||
id: string; | ||
/** | ||
* The requested API version | ||
* default: 1.0 | ||
*/ | ||
apiVersion?: string; | ||
} | ||
@@ -18,2 +23,7 @@ export interface DeleteMessageParams { | ||
id: string; | ||
/** | ||
* The requested API version | ||
* default: 1.0 | ||
*/ | ||
apiVersion?: string; | ||
} | ||
@@ -23,4 +33,14 @@ export interface GetChatMessagesParams { | ||
id: string; | ||
/** | ||
* The requested API version | ||
* default: 1.0 | ||
*/ | ||
apiVersion?: string; | ||
} | ||
export interface SendMessageParams { | ||
/** | ||
* The requested API version | ||
* default: 1.0 | ||
*/ | ||
apiVersion?: string; | ||
model: __model.MessageViewModel; | ||
@@ -38,5 +58,5 @@ } | ||
/** http://undefined/swagger/swagger-ui.html#!/Messages/SendMessage */ | ||
SendMessage(params: SendMessageParams): Observable<__model.Message>; | ||
SendMessage(params: SendMessageParams): Observable<__model.MessageEntity>; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<MessagesService, never>; | ||
static ɵprov: i0.ɵɵInjectableDeclaration<MessagesService>; | ||
} |
/** | ||
* Solidex.Chat | ||
* Solidex.Chat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null | ||
* 1.0 | ||
@@ -4,0 +4,0 @@ * undefined |
/** | ||
* Solidex.Chat | ||
* Solidex.Chat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null | ||
* 1.0 | ||
@@ -4,0 +4,0 @@ * undefined |
/** | ||
* Solidex.Chat | ||
* Solidex.Chat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null | ||
* 1.0 | ||
@@ -4,0 +4,0 @@ * undefined |
/** | ||
* Solidex.Chat | ||
* Solidex.Chat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null | ||
* 1.0 | ||
* undefined | ||
*/ | ||
export * from './defs/ApplicationUser'; | ||
export * from './defs/Chat'; | ||
export * from './defs/ApplicationUserEntity'; | ||
export * from './defs/ChatEntity'; | ||
export * from './defs/ChatType'; | ||
export * from './defs/ChatViewModel'; | ||
export * from './defs/Message'; | ||
export * from './defs/MessageEntity'; | ||
export * from './defs/MessageViewModel'; |
@@ -8,5 +8,5 @@ import { FormGroup } from '@angular/forms'; | ||
constructor(chatService: ChatService); | ||
submit(raw?: boolean): import("rxjs").Observable<import("@solidexpert/chat-api").Chat>; | ||
submit(raw?: boolean): import("rxjs").Observable<import("@solidexpert/chat-api").ChatEntity>; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<CreateChatFormService, never>; | ||
static ɵprov: i0.ɵɵInjectableDeclaration<CreateChatFormService>; | ||
} |
@@ -8,5 +8,5 @@ import { FormGroup } from '@angular/forms'; | ||
constructor(chatService: ChatService); | ||
submit(raw?: boolean): import("rxjs").Observable<import("@solidexpert/chat-api").Chat>; | ||
submit(raw?: boolean): import("rxjs").Observable<import("@solidexpert/chat-api").ChatEntity>; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<GetChatFormService, never>; | ||
static ɵprov: i0.ɵɵInjectableDeclaration<GetChatFormService>; | ||
} |
@@ -8,5 +8,5 @@ import { FormGroup } from '@angular/forms'; | ||
constructor(messagesService: MessagesService); | ||
submit(raw?: boolean): import("rxjs").Observable<import("@solidexpert/chat-api").Message>; | ||
submit(raw?: boolean): import("rxjs").Observable<import("@solidexpert/chat-api").MessageEntity>; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<SendMessageFormService, never>; | ||
static ɵprov: i0.ɵɵInjectableDeclaration<SendMessageFormService>; | ||
} |
{ | ||
"name": "@solidexpert/chat-api", | ||
"version": "1.0.36", | ||
"version": "1.0.39", | ||
"peerDependencies": { | ||
@@ -5,0 +5,0 @@ "@angular/common": "*", |
@@ -7,7 +7,7 @@ export * from './lib/model'; | ||
export * from './lib/controllers/Messages'; | ||
export * from './lib/defs/ApplicationUser'; | ||
export * from './lib/defs/Chat'; | ||
export * from './lib/defs/ApplicationUserEntity'; | ||
export * from './lib/defs/ChatEntity'; | ||
export * from './lib/defs/ChatType'; | ||
export * from './lib/defs/ChatViewModel'; | ||
export * from './lib/defs/Message'; | ||
export * from './lib/defs/MessageEntity'; | ||
export * from './lib/defs/MessageViewModel'; | ||
@@ -14,0 +14,0 @@ export * from './lib/store/chat/CreateChat/CreateChat.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
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
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
220733
2035