-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP : Implementation of basic message protocol wrapper Signed-off-by: Ankita Patidar <ankita.patidar@ayanworks.com> * feat: basic message Signed-off-by: tipusinghaw <tipu.singh@ayanworks.com> * changed response message Signed-off-by: tipusinghaw <tipu.singh@ayanworks.com> * fix: sonar lint Signed-off-by: tipusinghaw <tipu.singh@ayanworks.com> * fix: seperated URL creation logic Signed-off-by: tipusinghaw <tipu.singh@ayanworks.com> * fix: changed error message Signed-off-by: tipusinghaw <tipu.singh@ayanworks.com> --------- Signed-off-by: Ankita Patidar <ankita.patidar@ayanworks.com> Signed-off-by: tipusinghaw <tipu.singh@ayanworks.com> Co-authored-by: Ankita Patidar <ankita.patidar@ayanworks.com> Signed-off-by: KulkarniShashank <shashank.kulkarni@ayanworks.com>
- Loading branch information
1 parent
66ab468
commit c8e70cb
Showing
13 changed files
with
198 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
export interface IValidResponses { | ||
text: string; | ||
} | ||
|
||
export interface IQuestionPayload { | ||
detail: string; | ||
validResponses: IValidResponses[]; | ||
question: string; | ||
orgId?: string; | ||
connectionId?: string; | ||
tenantId?: string; | ||
} | ||
|
||
export interface IBasicMessage { | ||
content: string; | ||
orgId?: string; | ||
connectionId?: string; | ||
tenantId?: string; | ||
} |
11 changes: 0 additions & 11 deletions
11
apps/connection/src/interfaces/question-answer.interfaces.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters