UNPKG

yao-node-client

Version:

A node client for yao application development

13 lines (12 loc) 4.51 kB
export type YaoProcess = YaoEmbed | string; export type YaoEmbed = /** Ping服务器*/ "utils.app.Ping" /** 读取服务器的状态*/ | "utils.app.Inspect" /**输入输出 */ | "utils.fmt.Print" /**环境变量GET */ | "utils.env.Get" /**环境变量SET */ | "utils.env.Set" | "utils.env.GetMany" | "utils.env.SetMany" | "utils.flow.For" | "utils.flow.Each" | "utils.flow.Range" | "utils.flow.Case" | "utils.flow.IF" | "utils.flow.Return" | "utils.jwt.Make" | "utils.jwt.Verify" | "utils.pwd.Hash" | "utils.pwd.Verify" | "utils.captcha.Make" | "utils.captcha.Verify" | "utils.str.Concat" | "utils.str.Join" | "utils.str.JoinPath" | "utils.time.Sleep" | "utils.now.Timestamp" | "utils.now.Timestampms" | "utils.now.Date" | "utils.now.DateTime" | "utils.now.Time" | "utils.arr.Pluck" | "utils.arr.Split" | "utils.arr.Tree" | "utils.arr.Unique" | "utils.arr.Indexes" | "utils.arr.Get" | "utils.map.Get" | "utils.map.Set" | "utils.map.Del" | "utils.map.DelMany" | "utils.map.Keys" | "utils.map.Values" | "utils.map.Merge" | "ssl.Sign" | "ssl.Verify" | "schemas.<ID>.Create" | "schemas.<ID>.Drop" | "schemas.<ID>.Tables" | "schemas.<ID>.TableGet" | "schemas.<ID>.TableCreate" | "schemas.<ID>.TableSave" | "schemas.<ID>.TableDrop" | "schemas.<ID>.TableRename" | "schemas.<ID>.TableDiff" | "schemas.<ID>.ColumnAdd" | "schemas.<ID>.ColumnAlt" | "schemas.<ID>.ColumnDel" | "schemas.<ID>.IndexAdd" | "schemas.<ID>.IndexDel" | "http.Get" | "http.Post" | "http.Head" | "http.Put" | "http.Patch" | "http.Delete" | "http.Send" | "yao.table.Setting" | "yao.table.Xgen" | "yao.table.Search" | "yao.table.Get" | "yao.table.Find" | "yao.table.Save" | "yao.table.Create" | "yao.table.Delete" | "yao.table.Insert" | "yao.table.Update" | "yao.table.UpdateWhere" | "yao.table.UpdateIn" | "yao.table.DeleteWhere" | "yao.table.DeleteIn" | "yao.form.Setting" | "yao.form.Xgen" | "yao.form.Find" | "yao.form.Save" | "yao.form.Create" | "yao.form.Delete" | "yao.form.Update" | "yao.list.Setting" | "yao.list.Xgen" | "yao.list.Component" | "yao.list.Upload" | "yao.list.Download" | "yao.list.Save" | "yao.app.setting" | "yao.app.menu" | "yao.app.icons" | "yao.chart.Setting" | "yao.chart.Xgen" | "yao.chart.Component" | "yao.chart.Data" | "yao.component.SelectOptions" | "yao.login.Admin" | "fs.system.ReadFile " | "fs.system.ReadFileBuffer" | "fs.system.WirteFile" | "fs.system.WirteFileBuffer" | "fs.system.ReadDir" | "fs.system.Mkdir" | "fs.system.MkdirAll" | "fs.system.MkdirTemp" | "fs.system.Remove" | "fs.system.RemoveAll" | "fs.system.Exists" | "fs.system.IsDir" | "fs.system.IsFile" | "fs.system.IsLink" | "fs.system.Size" | "fs.system.Mode" | "fs.system.ModeTime" | "fs.system.Chmod" | "fs.system.BaseName" | "fs.system.DirName" | "fs.system.ExtName" | "fs.system.MimeType" | "fs.system.Move" | "fs.system.Copy" | "fs.system.Upload" | "fs.system.Download" | "encoding.base64.Encode" | "encoding.base64.Decode" | "encoding.hex.Encode" | "encoding.hex.Decode" | "encoding.json.Encode" | "encoding.json.Decode" | "crypto.Hash" | "crypto.Hmac" | "Get" | "Trim" | "Concat" | "Hide" | "Download" | "Upload" | "schema.default.Create" | "schema.default.Drop" | "schema.default.Tables" | "schema.default.TableGet" | "schema.default.TableCreate" | "schema.default.TableDrop" | "schema.default.TableRename" | "schema.default.TableDiff" | "schema.default.TableSave" | "schema.default.ColumnAdd" | "schema.default.ColumnAlt" | "schema.default.ColumnDel" | "schema.default.IndexAdd" | "schema.default.IndexDel" | "plugins.<ID>.<Operation>" | "flows.<ID>.<Operation>" | "scripts.<ID>.<Operation>" | "xiang.network.ip" | "xiang.network.FreePort" | "xiang.network.Get" | "xiang.network.Post" | "xiang.network.PostJSON" | "xiang.network.Put" | "xiang.network.PutJSON" | "xiang.network.Send" | "tasks.<ID>.Add" | "tasks.<ID>.Progress" | "tasks.<ID>.Get" | "schedules.<ID>.Start" | "schedules.<ID>.Stop" | "session.Start" | "session.ID" | "session.Get" | "session.Set" | "session.SetMany" | "session.Dump" | "stores.<ID>.Get" | "stores.<ID>.Set" | "stores.<ID>.Has" | "stores.<ID>.Del" | "stores.<ID>.GetDel" | "stores.<ID>.Len" | "stores.<ID>.Keys" | "stores.<ID>.Clear" | "models.<ID>.Find" | "models.<ID>.Get" | "models.<ID>.Paginate" | "models.<ID>.Create" | "models.<ID>.Update" | "models.<ID>.Save" | "models.<ID>.Delete" | "models.<ID>.Destroy" | "models.<ID>.Insert" | "models.<ID>.UpdateWhere" | "models.<ID>.DeleteWhere" | "models.<ID>.DestroyWhere" | "models.<ID>.EachSave" | "models.<ID>.EachSaveAfterDelete";