From 47dd675dc8dcfc7d7475a470bd57f7c29f425f6b Mon Sep 17 00:00:00 2001 From: Andrey Goncharov Date: Mon, 28 Feb 2022 03:50:34 -0800 Subject: [PATCH] Update schema Reviewed By: mweststrate Differential Revision: D34169727 fbshipit-source-id: 4df1eeb17ff3894e60b7b857a571524dba7de085 --- desktop/pkg/schemas/plugin-package-v2.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/desktop/pkg/schemas/plugin-package-v2.json b/desktop/pkg/schemas/plugin-package-v2.json index ff6079121..9b71fc50f 100644 --- a/desktop/pkg/schemas/plugin-package-v2.json +++ b/desktop/pkg/schemas/plugin-package-v2.json @@ -20,6 +20,15 @@ "filePathExists": true, "description": "Points to the source entry point which will be used for the plugin code bundling. \"flipper-pkg\" takes the path specified in this property as source, transpiles and bundles it, and saves the output to the path specified in property \"main\"." }, + "serverAddOn": { + "type": "string", + "description": "Path to the bundled and ready-to-execute code of the server add-on." + }, + "flipperBundlerEntryServerAddOn": { + "type": "string", + "filePathExists": true, + "description": "Points to the source entry point which will be used for the server add-on code bundling. \"flipper-pkg\" takes the path specified in this property as source, transpiles and bundles it, and saves the output to the path specified in property \"serverAddOn\"." + }, "title": { "type": "string", "description": "Shown in the Flipper main sidebar as the human-readable name of the plugin. If omitted, \"id\" is used instead."