Commit from GitHub Actions (Generate Clients & Examples)

This commit is contained in:
asim
2021-11-02 13:52:03 +00:00
parent c1c6c1e08c
commit 6f69ef3fb3
13 changed files with 148 additions and 4 deletions

View File

@@ -34,6 +34,7 @@ id
image
ip
location
mq
notes
otp
pkg

View File

@@ -20,6 +20,7 @@ import * as id from "./id";
import * as image from "./image";
import * as ip from "./ip";
import * as location from "./location";
import * as mq from "./mq";
import * as notes from "./notes";
import * as otp from "./otp";
import * as postcode from "./postcode";
@@ -66,6 +67,7 @@ export class Client {
this.imageService = new image.ImageService(token);
this.ipService = new ip.IpService(token);
this.locationService = new location.LocationService(token);
this.mqService = new mq.MqService(token);
this.notesService = new notes.NotesService(token);
this.otpService = new otp.OtpService(token);
this.postcodeService = new postcode.PostcodeService(token);
@@ -111,6 +113,7 @@ export class Client {
imageService: image.ImageService;
ipService: ip.IpService;
locationService: location.LocationService;
mqService: mq.MqService;
notesService: notes.NotesService;
otpService: otp.OtpService;
postcodeService: postcode.PostcodeService;

View File

@@ -39,6 +39,7 @@
"image",
"ip",
"location",
"mq",
"notes",
"otp",
"pkg",
@@ -77,5 +78,5 @@
"prepare": "npm run build"
},
"types": "index.d.ts",
"version": "1.0.600"
"version": "1.0.601"
}