Commit from GitHub Actions (Generate Clients & Examples)

This commit is contained in:
asim
2021-11-02 19:12:26 +00:00
parent 1cf37ac98c
commit 06e7c0f242
5 changed files with 10 additions and 2 deletions

View File

@@ -32,6 +32,7 @@ import * as rss from "./rss";
import * as sentiment from "./sentiment";
import * as sms from "./sms";
import * as stock from "./stock";
import * as stream from "./stream";
import * as sunnah from "./sunnah";
import * as thumbnail from "./thumbnail";
import * as time from "./time";
@@ -78,6 +79,7 @@ export class Client {
this.sentimentService = new sentiment.SentimentService(token);
this.smsService = new sms.SmsService(token);
this.stockService = new stock.StockService(token);
this.streamService = new stream.StreamService(token);
this.sunnahService = new sunnah.SunnahService(token);
this.thumbnailService = new thumbnail.ThumbnailService(token);
this.timeService = new time.TimeService(token);
@@ -123,6 +125,7 @@ export class Client {
sentimentService: sentiment.SentimentService;
smsService: sms.SmsService;
stockService: stock.StockService;
streamService: stream.StreamService;
sunnahService: sunnah.SunnahService;
thumbnailService: thumbnail.ThumbnailService;
timeService: time.TimeService;