@forge/manifest

13.0.013.1.0-next.0
out/schema/manifest.d.ts
~out/schema/manifest.d.tsModified
+30
Index: package/out/schema/manifest.d.ts
===================================================================
--- package/out/schema/manifest.d.ts
+++ package/out/schema/manifest.d.ts
@@ -14715,8 +14715,38 @@
       key: ModuleKeySchema;
       [k: string]: unknown;
     }[]
   ];
+  'jira:entityPropertySet'?: {
+    key: ModuleKeySchema;
+    /**
+     * Path to sidecar YAML file containing entity property definitions
+     */
+    resource?: string;
+    /**
+     * List of entity property definitions (populated from sidecar YAML by XLS at deploy time)
+     */
+    properties?: {
+      propertyKey: string;
+      entityType?: 'issue' | 'project' | 'user';
+      values: [
+        {
+          path: string;
+          type: 'number' | 'string' | 'text' | 'user' | 'date';
+          searchAlias?: string;
+          [k: string]: unknown;
+        },
+        ...{
+          path: string;
+          type: 'number' | 'string' | 'text' | 'user' | 'date';
+          searchAlias?: string;
+          [k: string]: unknown;
+        }[]
+      ];
+      [k: string]: unknown;
+    }[];
+    [k: string]: unknown;
+  }[];
   'jira:entityProperty'?: [
     {
       propertyKey: string;
       entityType?: 'issue' | 'project' | 'user';