Commit from GitHub Actions (Publish APIs & Clients)

This commit is contained in:
asim
2021-09-21 09:18:58 +00:00
parent f2aa6f05e1
commit 45c7f5b0bf
4 changed files with 5 additions and 5 deletions

View File

@@ -87,7 +87,7 @@ type Result struct {
// The associated arabic text // The associated arabic text
Text string `json:"text"` Text string `json:"text"`
// The related translations to the text // The related translations to the text
Translations []Interpretation `json:"translations"` Translations []Translation `json:"translations"`
// The unique verse id across the Quran // The unique verse id across the Quran
VerseId int32 `json:"verseId"` VerseId int32 `json:"verseId"`
// The verse key e.g 1:1 // The verse key e.g 1:1
@@ -149,7 +149,7 @@ type Verse struct {
// The unique id of the verse in the whole book // The unique id of the verse in the whole book
Id int32 `json:"id"` Id int32 `json:"id"`
// The interpretations of the verse // The interpretations of the verse
Interpretations []Interpretation `json:"interpretations"` Interpretations []Translation `json:"interpretations"`
// The key of this verse (chapter:verse) e.g 1:1 // The key of this verse (chapter:verse) e.g 1:1
Key string `json:"key"` Key string `json:"key"`
// The verse number in this chapter // The verse number in this chapter

View File

@@ -58,5 +58,5 @@
}, },
"type": "module", "type": "module",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"version": "1.0.518" "version": "1.0.519"
} }

View File

@@ -87,7 +87,7 @@ export interface Result {
// The associated arabic text // The associated arabic text
text?: string; text?: string;
// The related translations to the text // The related translations to the text
translations?: Interpretation[]; translations?: Translation[];
// The unique verse id across the Quran // The unique verse id across the Quran
verseId?: number; verseId?: number;
// The verse key e.g 1:1 // The verse key e.g 1:1

View File

@@ -11,9 +11,9 @@ func PublishAmessage() {
streamService := stream.NewStreamService(os.Getenv("MICRO_API_TOKEN")) streamService := stream.NewStreamService(os.Getenv("MICRO_API_TOKEN"))
rsp, err := streamService.Publish(&stream.PublishRequest{ rsp, err := streamService.Publish(&stream.PublishRequest{
Message: map[string]interface{}{ Message: map[string]interface{}{
"user": "john",
"id": "1", "id": "1",
"type": "signup", "type": "signup",
"user": "john",
}, },
Topic: "events", Topic: "events",
}) })