@forge/manifest 13.1.0-next.3 → 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 +12 -0
- package/out/schema/manifest-schema.json +79 -0
- package/out/schema/manifest.d.ts +32 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -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;
|