Commit from GitHub Actions (Publish APIs & Clients)

This commit is contained in:
asim
2021-09-22 10:47:55 +00:00
parent 81a68e4b15
commit a75181d100
9 changed files with 10 additions and 10 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 []Translation `json:"translations"` Translations []Interpretation `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

View File

@@ -59,7 +59,7 @@ func (t *UserService) ReadSession(request *ReadSessionRequest) (*ReadSessionResp
// The verification link will be injected in to the email as a template variable, $micro_verification_link. // The verification link will be injected in to the email as a template variable, $micro_verification_link.
// Example: 'Hi there, welcome onboard! Use the link below to verify your email: $micro_verification_link' // Example: 'Hi there, welcome onboard! Use the link below to verify your email: $micro_verification_link'
// The variable will be replaced with an actual url that will look similar to this: // The variable will be replaced with an actual url that will look similar to this:
// 'https://user.m3o.com/user/verify?token=a-verification-token&rediretUrl=your-redir-url' // 'https://user.m3o.com/user/verify?token=a-verification-token&redirectUrl=your-redir-url'
func (t *UserService) SendVerificationEmail(request *SendVerificationEmailRequest) (*SendVerificationEmailResponse, error) { func (t *UserService) SendVerificationEmail(request *SendVerificationEmailRequest) (*SendVerificationEmailResponse, error) {
rsp := &SendVerificationEmailResponse{} rsp := &SendVerificationEmailResponse{}
return rsp, t.client.Call("user", "SendVerificationEmail", request, rsp) return rsp, t.client.Call("user", "SendVerificationEmail", request, rsp)

View File

@@ -60,5 +60,5 @@
}, },
"type": "module", "type": "module",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"version": "1.0.524" "version": "1.0.525"
} }

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?: Translation[]; translations?: Interpretation[];
// 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
@@ -161,7 +161,7 @@ export interface Verse {
// The basic translation of the verse // The basic translation of the verse
translatedText?: string; translatedText?: string;
// The alternative translations for the verse // The alternative translations for the verse
translations?: Translation[]; translations?: Interpretation[];
// The phonetic transliteration from arabic // The phonetic transliteration from arabic
transliteration?: string; transliteration?: string;
// The individual words within the verse (Ayah) // The individual words within the verse (Ayah)

View File

@@ -53,7 +53,7 @@ export class UserService {
// The verification link will be injected in to the email as a template variable, $micro_verification_link. // The verification link will be injected in to the email as a template variable, $micro_verification_link.
// Example: 'Hi there, welcome onboard! Use the link below to verify your email: $micro_verification_link' // Example: 'Hi there, welcome onboard! Use the link below to verify your email: $micro_verification_link'
// The variable will be replaced with an actual url that will look similar to this: // The variable will be replaced with an actual url that will look similar to this:
// 'https://user.m3o.com/user/verify?token=a-verification-token&rediretUrl=your-redir-url' // 'https://user.m3o.com/user/verify?token=a-verification-token&redirectUrl=your-redir-url'
sendVerificationEmail( sendVerificationEmail(
request: SendVerificationEmailRequest request: SendVerificationEmailRequest
): Promise<SendVerificationEmailResponse> { ): Promise<SendVerificationEmailResponse> {

View File

@@ -11,10 +11,10 @@ func CreateArecord() {
dbService := db.NewDbService(os.Getenv("MICRO_API_TOKEN")) dbService := db.NewDbService(os.Getenv("MICRO_API_TOKEN"))
rsp, err := dbService.Create(&db.CreateRequest{ rsp, err := dbService.Create(&db.CreateRequest{
Record: map[string]interface{}{ Record: map[string]interface{}{
"isActive": true,
"id": "1", "id": "1",
"name": "Jane", "name": "Jane",
"age": 42, "age": 42,
"isActive": true,
}, },
Table: "users", Table: "users",
}) })

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",
}) })

View File

@@ -12,7 +12,7 @@ import (
// The verification link will be injected in to the email as a template variable, $micro_verification_link. // The verification link will be injected in to the email as a template variable, $micro_verification_link.
// Example: 'Hi there, welcome onboard! Use the link below to verify your email: $micro_verification_link' // Example: 'Hi there, welcome onboard! Use the link below to verify your email: $micro_verification_link'
// The variable will be replaced with an actual url that will look similar to this: // The variable will be replaced with an actual url that will look similar to this:
// 'https://user.m3o.com/user/verify?token=a-verification-token&rediretUrl=your-redir-url' // 'https://user.m3o.com/user/verify?token=a-verification-token&redirectUrl=your-redir-url'
func SendVerificationEmail() { func SendVerificationEmail() {
userService := user.NewUserService(os.Getenv("MICRO_API_TOKEN")) userService := user.NewUserService(os.Getenv("MICRO_API_TOKEN"))
rsp, err := userService.SendVerificationEmail(&user.SendVerificationEmailRequest{ rsp, err := userService.SendVerificationEmail(&user.SendVerificationEmailRequest{

View File

@@ -6,7 +6,7 @@ import * as user from "m3o/user";
// The verification link will be injected in to the email as a template variable, $micro_verification_link. // The verification link will be injected in to the email as a template variable, $micro_verification_link.
// Example: 'Hi there, welcome onboard! Use the link below to verify your email: $micro_verification_link' // Example: 'Hi there, welcome onboard! Use the link below to verify your email: $micro_verification_link'
// The variable will be replaced with an actual url that will look similar to this: // The variable will be replaced with an actual url that will look similar to this:
// 'https://user.m3o.com/user/verify?token=a-verification-token&rediretUrl=your-redir-url' // 'https://user.m3o.com/user/verify?token=a-verification-token&redirectUrl=your-redir-url'
async function SendVerificationEmail() { async function SendVerificationEmail() {
let userService = new user.UserService(process.env.MICRO_API_TOKEN); let userService = new user.UserService(process.env.MICRO_API_TOKEN);
let rsp = await userService.sendVerificationEmail({ let rsp = await userService.sendVerificationEmail({