@forge/manifest 13.1.0-next.4 → 13.1.0-next.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 13.1.0-next.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 78097a6: Update manifest definitions
8
+
3
9
  ## 13.1.0-next.4
4
10
 
5
11
  ### Patch Changes
@@ -6901,6 +6901,85 @@
6901
6901
  },
6902
6902
  "minItems": 1
6903
6903
  },
6904
+ "jira:entityPropertySet": {
6905
+ "type": "array",
6906
+ "items": {
6907
+ "type": "object",
6908
+ "properties": {
6909
+ "properties": {
6910
+ "type": "array",
6911
+ "items": {
6912
+ "type": "object",
6913
+ "properties": {
6914
+ "propertyKey": {
6915
+ "minLength": 1,
6916
+ "maxLength": 255,
6917
+ "type": "string"
6918
+ },
6919
+ "entityType": {
6920
+ "default": "issue",
6921
+ "enum": [
6922
+ "issue",
6923
+ "project",
6924
+ "user"
6925
+ ],
6926
+ "type": "string"
6927
+ },
6928
+ "values": {
6929
+ "type": "array",
6930
+ "items": {
6931
+ "type": "object",
6932
+ "properties": {
6933
+ "path": {
6934
+ "minLength": 1,
6935
+ "maxLength": 255,
6936
+ "type": "string"
6937
+ },
6938
+ "type": {
6939
+ "type": "string",
6940
+ "enum": [
6941
+ "number",
6942
+ "string",
6943
+ "text",
6944
+ "user",
6945
+ "date"
6946
+ ]
6947
+ },
6948
+ "searchAlias": {
6949
+ "minLength": 1,
6950
+ "maxLength": 255,
6951
+ "pattern": "^[a-zA-Z0-9._-]+$",
6952
+ "type": "string"
6953
+ }
6954
+ },
6955
+ "required": [
6956
+ "path",
6957
+ "type"
6958
+ ]
6959
+ }
6960
+ }
6961
+ },
6962
+ "required": [
6963
+ "propertyKey",
6964
+ "values"
6965
+ ]
6966
+ }
6967
+ },
6968
+ "key": {
6969
+ "$ref": "#/definitions/ModuleKeySchema"
6970
+ }
6971
+ },
6972
+ "required": [
6973
+ "key"
6974
+ ],
6975
+ "not": {
6976
+ "required": [
6977
+ "unlicensedAccess"
6978
+ ]
6979
+ }
6980
+ },
6981
+ "minItems": 1
6982
+ },
6904
6983
  "jira:entityProperty": {
6905
6984
  "type": "array",
6906
6985
  "items": {
@@ -31610,13 +31689,22 @@
31610
31689
  "items": {
31611
31690
  "type": "object",
31612
31691
  "required": [
31613
- "path",
31692
+ "source",
31614
31693
  "key"
31615
31694
  ],
31616
31695
  "properties": {
31617
- "path": {
31618
- "type": "string",
31619
- "pattern": "^resource:[^;]+;.+$"
31696
+ "source": {
31697
+ "type": "object",
31698
+ "additionalProperties": false,
31699
+ "required": [
31700
+ "dir"
31701
+ ],
31702
+ "properties": {
31703
+ "dir": {
31704
+ "type": "string",
31705
+ "minLength": 1
31706
+ }
31707
+ }
31620
31708
  },
31621
31709
  "dependencies": {
31622
31710
  "type": "object",
@@ -14716,6 +14716,38 @@ export interface Modules {
14716
14716
  [k: string]: unknown;
14717
14717
  }[]
14718
14718
  ];
14719
+ 'jira:entityPropertySet'?: [
14720
+ {
14721
+ properties?: {
14722
+ propertyKey: string;
14723
+ entityType?: 'issue' | 'project' | 'user';
14724
+ values: {
14725
+ path: string;
14726
+ type: 'number' | 'string' | 'text' | 'user' | 'date';
14727
+ searchAlias?: string;
14728
+ [k: string]: unknown;
14729
+ }[];
14730
+ [k: string]: unknown;
14731
+ }[];
14732
+ key: ModuleKeySchema;
14733
+ [k: string]: unknown;
14734
+ },
14735
+ ...{
14736
+ properties?: {
14737
+ propertyKey: string;
14738
+ entityType?: 'issue' | 'project' | 'user';
14739
+ values: {
14740
+ path: string;
14741
+ type: 'number' | 'string' | 'text' | 'user' | 'date';
14742
+ searchAlias?: string;
14743
+ [k: string]: unknown;
14744
+ }[];
14745
+ [k: string]: unknown;
14746
+ }[];
14747
+ key: ModuleKeySchema;
14748
+ [k: string]: unknown;
14749
+ }[]
14750
+ ];
14719
14751
  'jira:entityProperty'?: [
14720
14752
  {
14721
14753
  propertyKey: string;
@@ -25948,7 +25980,9 @@ export interface Modules {
25948
25980
  ];
25949
25981
  'rovo:skill'?: [
25950
25982
  {
25951
- path: string;
25983
+ source: {
25984
+ dir: string;
25985
+ };
25952
25986
  dependencies?: {
25953
25987
  tools?: string[];
25954
25988
  [k: string]: unknown;
@@ -25957,7 +25991,9 @@ export interface Modules {
25957
25991
  [k: string]: unknown;
25958
25992
  },
25959
25993
  ...{
25960
- path: string;
25994
+ source: {
25995
+ dir: string;
25996
+ };
25961
25997
  dependencies?: {
25962
25998
  tools?: string[];
25963
25999
  [k: string]: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "13.1.0-next.4",
3
+ "version": "13.1.0-next.5",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {