From ecc173b691690d14f34379f4885e63a1b313b1f4 Mon Sep 17 00:00:00 2001 From: zhrenqiang Date: Wed, 12 Mar 2025 11:31:38 +0800 Subject: [PATCH] module.json abilitySrcEntryDelegator/abilityStageSrcEntryDelegator Signed-off-by: zhrenqiang --- modulecheck/module.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/modulecheck/module.json b/modulecheck/module.json index 380a9672..e3d199f4 100644 --- a/modulecheck/module.json +++ b/modulecheck/module.json @@ -30,6 +30,8 @@ "name", "type", "srcEntry", + "abilitySrcEntryDelegator", + "abilityStageSrcEntryDelegator", "description", "deliveryWithInstall", "deviceTypes", @@ -114,6 +116,8 @@ "type", "srcEntrance", "srcEntry", + "abilitySrcEntryDelegator", + "abilityStageSrcEntryDelegator", "description", "process", "mainElement", @@ -167,6 +171,8 @@ "type", "srcEntrance", "srcEntry", + "abilitySrcEntryDelegator", + "abilityStageSrcEntryDelegator", "description", "process", "mainElement", @@ -230,6 +236,18 @@ "type": "string", "maxLength": 127 }, + "abilitySrcEntryDelegator": { + "description": "This tag indicates the delegator for Ability", + "type": "string", + "pattern": "^[a-zA-Z][0-9a-zA-Z_.]*$", + "maxLength": 127 + }, + "abilityStageSrcEntryDelegator": { + "description": "This tag indicates the delegator for AbilityStage", + "type": "string", + "pattern": "^[a-zA-Z][0-9a-zA-Z_.]*$", + "maxLength": 128 + }, "description": { "description": "Indicates the description of the current .hap file.", "type": "string", -- Gitee