@@ -112,6 +112,11 @@ class RpcApiType {
112112 return client . wshRpcCall ( "createsubblock" , data , opts ) ;
113113 }
114114
115+ // command "deleteappfile" [call]
116+ DeleteAppFileCommand ( client : WshClient , data : CommandDeleteAppFileData , opts ?: RpcOpts ) : Promise < void > {
117+ return client . wshRpcCall ( "deleteappfile" , data , opts ) ;
118+ }
119+
115120 // command "deleteblock" [call]
116121 DeleteBlockCommand ( client : WshClient , data : CommandDeleteBlockData , opts ?: RpcOpts ) : Promise < void > {
117122 return client . wshRpcCall ( "deleteblock" , data , opts ) ;
@@ -297,6 +302,16 @@ class RpcApiType {
297302 return client . wshRpcCall ( "getwaveairatelimit" , null , opts ) ;
298303 }
299304
305+ // command "listallappfiles" [call]
306+ ListAllAppFilesCommand ( client : WshClient , data : CommandListAllAppFilesData , opts ?: RpcOpts ) : Promise < CommandListAllAppFilesRtnData > {
307+ return client . wshRpcCall ( "listallappfiles" , data , opts ) ;
308+ }
309+
310+ // command "listalleditableapps" [call]
311+ ListAllEditableAppsCommand ( client : WshClient , opts ?: RpcOpts ) : Promise < string [ ] > {
312+ return client . wshRpcCall ( "listalleditableapps" , null , opts ) ;
313+ }
314+
300315 // command "message" [call]
301316 MessageCommand ( client : WshClient , data : CommandMessageData , opts ?: RpcOpts ) : Promise < void > {
302317 return client . wshRpcCall ( "message" , data , opts ) ;
@@ -312,6 +327,11 @@ class RpcApiType {
312327 return client . wshRpcCall ( "path" , data , opts ) ;
313328 }
314329
330+ // command "readappfile" [call]
331+ ReadAppFileCommand ( client : WshClient , data : CommandReadAppFileData , opts ?: RpcOpts ) : Promise < CommandReadAppFileRtnData > {
332+ return client . wshRpcCall ( "readappfile" , data , opts ) ;
333+ }
334+
315335 // command "recordtevent" [call]
316336 RecordTEventCommand ( client : WshClient , data : TEvent , opts ?: RpcOpts ) : Promise < void > {
317337 return client . wshRpcCall ( "recordtevent" , data , opts ) ;
@@ -387,6 +407,11 @@ class RpcApiType {
387407 return client . wshRpcCall ( "remotewritefile" , data , opts ) ;
388408 }
389409
410+ // command "renameappfile" [call]
411+ RenameAppFileCommand ( client : WshClient , data : CommandRenameAppFileData , opts ?: RpcOpts ) : Promise < void > {
412+ return client . wshRpcCall ( "renameappfile" , data , opts ) ;
413+ }
414+
390415 // command "resolveids" [call]
391416 ResolveIdsCommand ( client : WshClient , data : CommandResolveIdsData , opts ?: RpcOpts ) : Promise < CommandResolveIdsRtnData > {
392417 return client . wshRpcCall ( "resolveids" , data , opts ) ;
@@ -517,6 +542,11 @@ class RpcApiType {
517542 return client . wshRpcCall ( "workspacelist" , null , opts ) ;
518543 }
519544
545+ // command "writeappfile" [call]
546+ WriteAppFileCommand ( client : WshClient , data : CommandWriteAppFileData , opts ?: RpcOpts ) : Promise < void > {
547+ return client . wshRpcCall ( "writeappfile" , data , opts ) ;
548+ }
549+
520550 // command "wshactivity" [call]
521551 WshActivityCommand ( client : WshClient , data : { [ key : string ] : number } , opts ?: RpcOpts ) : Promise < void > {
522552 return client . wshRpcCall ( "wshactivity" , data , opts ) ;
0 commit comments