jsExecutor.models.ts 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. ///
  2. /// Copyright © 2016-2023 The Thingsboard Authors
  3. ///
  4. /// Licensed under the Apache License, Version 2.0 (the "License");
  5. /// you may not use this file except in compliance with the License.
  6. /// You may obtain a copy of the License at
  7. ///
  8. /// http://www.apache.org/licenses/LICENSE-2.0
  9. ///
  10. /// Unless required by applicable law or agreed to in writing, software
  11. /// distributed under the License is distributed on an "AS IS" BASIS,
  12. /// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. /// See the License for the specific language governing permissions and
  14. /// limitations under the License.
  15. ///
  16. export interface TbMessage {
  17. scriptIdMSB: string; // deprecated
  18. scriptIdLSB: string; // deprecated
  19. scriptHash: string;
  20. }
  21. export interface RemoteJsRequest {
  22. compileRequest?: JsCompileRequest;
  23. invokeRequest?: JsInvokeRequest;
  24. releaseRequest?: JsReleaseRequest;
  25. }
  26. export interface JsReleaseRequest extends TbMessage {
  27. functionName: string;
  28. }
  29. export interface JsInvokeRequest extends TbMessage {
  30. functionName: string;
  31. scriptBody: string;
  32. timeout: number;
  33. args: string[];
  34. }
  35. export interface JsCompileRequest extends TbMessage {
  36. functionName: string;
  37. scriptBody: string;
  38. }
  39. export interface JsReleaseResponse extends TbMessage {
  40. success: boolean;
  41. }
  42. export interface JsCompileResponse extends TbMessage {
  43. success: boolean;
  44. errorCode?: number;
  45. errorDetails?: string;
  46. }
  47. export interface JsInvokeResponse {
  48. success: boolean;
  49. result?: string;
  50. errorCode?: number;
  51. errorDetails?: string;
  52. }
  53. export interface RemoteJsResponse {
  54. requestIdMSB: string;
  55. requestIdLSB: string;
  56. compileResponse?: JsCompileResponse;
  57. invokeResponse?: JsInvokeResponse;
  58. releaseResponse?: JsReleaseResponse;
  59. }