Commit from GitHub Actions (Generate Clients & Examples)

This commit is contained in:
asim
2021-11-17 22:20:21 +00:00
parent ce58fd0fbe
commit ef70da5380
145 changed files with 145 additions and 145 deletions

View File

@@ -1,4 +1,4 @@
const { DbService } = require("m3o/db");
const { DbService } = require("micro-js-client/db");
// Count records in a table
async function countEntriesInAtable() {

View File

@@ -1,4 +1,4 @@
const { DbService } = require("m3o/db");
const { DbService } = require("micro-js-client/db");
// Create a record in the database. Optionally include an "id" field otherwise it's set automatically.
async function createArecord() {

View File

@@ -1,4 +1,4 @@
const { DbService } = require("m3o/db");
const { DbService } = require("micro-js-client/db");
// Delete a record in the database by id.
async function deleteArecord() {

View File

@@ -1,4 +1,4 @@
const { DbService } = require("m3o/db");
const { DbService } = require("micro-js-client/db");
// Drop a table in the DB
async function dropTable() {

View File

@@ -1,4 +1,4 @@
const { DbService } = require("m3o/db");
const { DbService } = require("micro-js-client/db");
// List tables in the DB
async function listTables() {

View File

@@ -1,4 +1,4 @@
const { DbService } = require("m3o/db");
const { DbService } = require("micro-js-client/db");
// Read data from a table. Lookup can be by ID or via querying any field in the record.
async function readRecords() {

View File

@@ -1,4 +1,4 @@
const { DbService } = require("m3o/db");
const { DbService } = require("micro-js-client/db");
// Rename a table
async function renameTable() {

View File

@@ -1,4 +1,4 @@
const { DbService } = require("m3o/db");
const { DbService } = require("micro-js-client/db");
// Truncate the records in a table
async function truncateTable() {

View File

@@ -1,4 +1,4 @@
const { DbService } = require("m3o/db");
const { DbService } = require("micro-js-client/db");
// Update a record in the database. Include an "id" in the record to update.
async function updateArecord() {