@forge/manifest 7.12.0-next.1 → 7.12.0-next.2
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 +7 -0
- package/out/schema/manifest-schema.json +236 -0
- package/out/schema/manifest.d.ts +92 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -12843,6 +12843,242 @@
|
|
|
12843
12843
|
},
|
|
12844
12844
|
"minItems": 1
|
|
12845
12845
|
},
|
|
12846
|
+
"jira:boardAction": {
|
|
12847
|
+
"type": "array",
|
|
12848
|
+
"items": {
|
|
12849
|
+
"additionalProperties": false,
|
|
12850
|
+
"type": "object",
|
|
12851
|
+
"properties": {
|
|
12852
|
+
"icon": {
|
|
12853
|
+
"type": "string",
|
|
12854
|
+
"minLength": 1,
|
|
12855
|
+
"maxLength": 255
|
|
12856
|
+
},
|
|
12857
|
+
"resource": {
|
|
12858
|
+
"type": "string",
|
|
12859
|
+
"minLength": 1,
|
|
12860
|
+
"maxLength": 23,
|
|
12861
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
12862
|
+
},
|
|
12863
|
+
"title": {
|
|
12864
|
+
"anyOf": [
|
|
12865
|
+
{
|
|
12866
|
+
"type": "string",
|
|
12867
|
+
"minLength": 1,
|
|
12868
|
+
"maxLength": 255
|
|
12869
|
+
},
|
|
12870
|
+
{
|
|
12871
|
+
"additionalProperties": false,
|
|
12872
|
+
"type": "object",
|
|
12873
|
+
"properties": {
|
|
12874
|
+
"i18n": {
|
|
12875
|
+
"type": "string",
|
|
12876
|
+
"minLength": 1,
|
|
12877
|
+
"maxLength": 300,
|
|
12878
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
12879
|
+
}
|
|
12880
|
+
},
|
|
12881
|
+
"required": [
|
|
12882
|
+
"i18n"
|
|
12883
|
+
]
|
|
12884
|
+
}
|
|
12885
|
+
]
|
|
12886
|
+
},
|
|
12887
|
+
"title__i18n": {
|
|
12888
|
+
"type": "string",
|
|
12889
|
+
"minLength": 1,
|
|
12890
|
+
"maxLength": 300,
|
|
12891
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
12892
|
+
},
|
|
12893
|
+
"tooltip": {
|
|
12894
|
+
"anyOf": [
|
|
12895
|
+
{
|
|
12896
|
+
"type": "string",
|
|
12897
|
+
"minLength": 1,
|
|
12898
|
+
"maxLength": 255
|
|
12899
|
+
},
|
|
12900
|
+
{
|
|
12901
|
+
"additionalProperties": false,
|
|
12902
|
+
"type": "object",
|
|
12903
|
+
"properties": {
|
|
12904
|
+
"i18n": {
|
|
12905
|
+
"type": "string",
|
|
12906
|
+
"minLength": 1,
|
|
12907
|
+
"maxLength": 300,
|
|
12908
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
12909
|
+
}
|
|
12910
|
+
},
|
|
12911
|
+
"required": [
|
|
12912
|
+
"i18n"
|
|
12913
|
+
]
|
|
12914
|
+
}
|
|
12915
|
+
]
|
|
12916
|
+
},
|
|
12917
|
+
"tooltip__i18n": {
|
|
12918
|
+
"type": "string",
|
|
12919
|
+
"minLength": 1,
|
|
12920
|
+
"maxLength": 300,
|
|
12921
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
12922
|
+
},
|
|
12923
|
+
"resolver": {
|
|
12924
|
+
"anyOf": [
|
|
12925
|
+
{
|
|
12926
|
+
"additionalProperties": false,
|
|
12927
|
+
"type": "object",
|
|
12928
|
+
"properties": {
|
|
12929
|
+
"function": {
|
|
12930
|
+
"type": "string",
|
|
12931
|
+
"minLength": 1,
|
|
12932
|
+
"maxLength": 255,
|
|
12933
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
12934
|
+
}
|
|
12935
|
+
},
|
|
12936
|
+
"required": [
|
|
12937
|
+
"function"
|
|
12938
|
+
]
|
|
12939
|
+
},
|
|
12940
|
+
{
|
|
12941
|
+
"additionalProperties": false,
|
|
12942
|
+
"type": "object",
|
|
12943
|
+
"properties": {
|
|
12944
|
+
"endpoint": {
|
|
12945
|
+
"type": "string",
|
|
12946
|
+
"minLength": 1,
|
|
12947
|
+
"maxLength": 255,
|
|
12948
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
12949
|
+
}
|
|
12950
|
+
},
|
|
12951
|
+
"required": [
|
|
12952
|
+
"endpoint"
|
|
12953
|
+
]
|
|
12954
|
+
}
|
|
12955
|
+
]
|
|
12956
|
+
},
|
|
12957
|
+
"resourceUploadId": {
|
|
12958
|
+
"type": "string",
|
|
12959
|
+
"minLength": 1,
|
|
12960
|
+
"maxLength": 255
|
|
12961
|
+
},
|
|
12962
|
+
"viewportSize": {
|
|
12963
|
+
"minLength": 1,
|
|
12964
|
+
"maxLength": 255,
|
|
12965
|
+
"enum": [
|
|
12966
|
+
"large",
|
|
12967
|
+
"max",
|
|
12968
|
+
"medium",
|
|
12969
|
+
"small",
|
|
12970
|
+
"xlarge"
|
|
12971
|
+
],
|
|
12972
|
+
"type": "string"
|
|
12973
|
+
},
|
|
12974
|
+
"actions": {
|
|
12975
|
+
"type": "array",
|
|
12976
|
+
"items": {
|
|
12977
|
+
"additionalProperties": false,
|
|
12978
|
+
"type": "object",
|
|
12979
|
+
"properties": {
|
|
12980
|
+
"key": {
|
|
12981
|
+
"type": "string",
|
|
12982
|
+
"minLength": 1,
|
|
12983
|
+
"maxLength": 23,
|
|
12984
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
12985
|
+
},
|
|
12986
|
+
"title": {
|
|
12987
|
+
"anyOf": [
|
|
12988
|
+
{
|
|
12989
|
+
"type": "string",
|
|
12990
|
+
"minLength": 1,
|
|
12991
|
+
"maxLength": 255
|
|
12992
|
+
},
|
|
12993
|
+
{
|
|
12994
|
+
"additionalProperties": false,
|
|
12995
|
+
"type": "object",
|
|
12996
|
+
"properties": {
|
|
12997
|
+
"i18n": {
|
|
12998
|
+
"type": "string",
|
|
12999
|
+
"minLength": 1,
|
|
13000
|
+
"maxLength": 300,
|
|
13001
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
13002
|
+
}
|
|
13003
|
+
},
|
|
13004
|
+
"required": [
|
|
13005
|
+
"i18n"
|
|
13006
|
+
]
|
|
13007
|
+
}
|
|
13008
|
+
]
|
|
13009
|
+
},
|
|
13010
|
+
"title__i18n": {
|
|
13011
|
+
"type": "string",
|
|
13012
|
+
"minLength": 1,
|
|
13013
|
+
"maxLength": 300,
|
|
13014
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
13015
|
+
},
|
|
13016
|
+
"tooltip": {
|
|
13017
|
+
"anyOf": [
|
|
13018
|
+
{
|
|
13019
|
+
"type": "string",
|
|
13020
|
+
"minLength": 1,
|
|
13021
|
+
"maxLength": 255
|
|
13022
|
+
},
|
|
13023
|
+
{
|
|
13024
|
+
"additionalProperties": false,
|
|
13025
|
+
"type": "object",
|
|
13026
|
+
"properties": {
|
|
13027
|
+
"i18n": {
|
|
13028
|
+
"type": "string",
|
|
13029
|
+
"minLength": 1,
|
|
13030
|
+
"maxLength": 300,
|
|
13031
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
13032
|
+
}
|
|
13033
|
+
},
|
|
13034
|
+
"required": [
|
|
13035
|
+
"i18n"
|
|
13036
|
+
]
|
|
13037
|
+
}
|
|
13038
|
+
]
|
|
13039
|
+
},
|
|
13040
|
+
"tooltip__i18n": {
|
|
13041
|
+
"type": "string",
|
|
13042
|
+
"minLength": 1,
|
|
13043
|
+
"maxLength": 300,
|
|
13044
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
13045
|
+
}
|
|
13046
|
+
},
|
|
13047
|
+
"required": [
|
|
13048
|
+
"key",
|
|
13049
|
+
"title"
|
|
13050
|
+
]
|
|
13051
|
+
}
|
|
13052
|
+
},
|
|
13053
|
+
"render": {
|
|
13054
|
+
"default": "default",
|
|
13055
|
+
"enum": [
|
|
13056
|
+
"default",
|
|
13057
|
+
"native"
|
|
13058
|
+
],
|
|
13059
|
+
"type": "string"
|
|
13060
|
+
},
|
|
13061
|
+
"displayConditions": {
|
|
13062
|
+
"type": "object",
|
|
13063
|
+
"properties": {}
|
|
13064
|
+
},
|
|
13065
|
+
"key": {
|
|
13066
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
13067
|
+
}
|
|
13068
|
+
},
|
|
13069
|
+
"required": [
|
|
13070
|
+
"resource",
|
|
13071
|
+
"title",
|
|
13072
|
+
"key"
|
|
13073
|
+
],
|
|
13074
|
+
"not": {
|
|
13075
|
+
"required": [
|
|
13076
|
+
"unlicensedAccess"
|
|
13077
|
+
]
|
|
13078
|
+
}
|
|
13079
|
+
},
|
|
13080
|
+
"minItems": 1
|
|
13081
|
+
},
|
|
12846
13082
|
"compass:adminPage": {
|
|
12847
13083
|
"type": "array",
|
|
12848
13084
|
"items": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -6632,6 +6632,98 @@ export interface Modules {
|
|
|
6632
6632
|
key: ModuleKeySchema;
|
|
6633
6633
|
}[]
|
|
6634
6634
|
];
|
|
6635
|
+
'jira:boardAction'?: [
|
|
6636
|
+
{
|
|
6637
|
+
icon?: string;
|
|
6638
|
+
resource: string;
|
|
6639
|
+
title:
|
|
6640
|
+
| string
|
|
6641
|
+
| {
|
|
6642
|
+
i18n: string;
|
|
6643
|
+
};
|
|
6644
|
+
title__i18n?: string;
|
|
6645
|
+
tooltip?:
|
|
6646
|
+
| string
|
|
6647
|
+
| {
|
|
6648
|
+
i18n: string;
|
|
6649
|
+
};
|
|
6650
|
+
tooltip__i18n?: string;
|
|
6651
|
+
resolver?:
|
|
6652
|
+
| {
|
|
6653
|
+
function: string;
|
|
6654
|
+
}
|
|
6655
|
+
| {
|
|
6656
|
+
endpoint: string;
|
|
6657
|
+
};
|
|
6658
|
+
resourceUploadId?: string;
|
|
6659
|
+
viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
|
|
6660
|
+
actions?: {
|
|
6661
|
+
key: string;
|
|
6662
|
+
title:
|
|
6663
|
+
| string
|
|
6664
|
+
| {
|
|
6665
|
+
i18n: string;
|
|
6666
|
+
};
|
|
6667
|
+
title__i18n?: string;
|
|
6668
|
+
tooltip?:
|
|
6669
|
+
| string
|
|
6670
|
+
| {
|
|
6671
|
+
i18n: string;
|
|
6672
|
+
};
|
|
6673
|
+
tooltip__i18n?: string;
|
|
6674
|
+
}[];
|
|
6675
|
+
render?: 'default' | 'native';
|
|
6676
|
+
displayConditions?: {
|
|
6677
|
+
[k: string]: unknown;
|
|
6678
|
+
};
|
|
6679
|
+
key: ModuleKeySchema;
|
|
6680
|
+
},
|
|
6681
|
+
...{
|
|
6682
|
+
icon?: string;
|
|
6683
|
+
resource: string;
|
|
6684
|
+
title:
|
|
6685
|
+
| string
|
|
6686
|
+
| {
|
|
6687
|
+
i18n: string;
|
|
6688
|
+
};
|
|
6689
|
+
title__i18n?: string;
|
|
6690
|
+
tooltip?:
|
|
6691
|
+
| string
|
|
6692
|
+
| {
|
|
6693
|
+
i18n: string;
|
|
6694
|
+
};
|
|
6695
|
+
tooltip__i18n?: string;
|
|
6696
|
+
resolver?:
|
|
6697
|
+
| {
|
|
6698
|
+
function: string;
|
|
6699
|
+
}
|
|
6700
|
+
| {
|
|
6701
|
+
endpoint: string;
|
|
6702
|
+
};
|
|
6703
|
+
resourceUploadId?: string;
|
|
6704
|
+
viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
|
|
6705
|
+
actions?: {
|
|
6706
|
+
key: string;
|
|
6707
|
+
title:
|
|
6708
|
+
| string
|
|
6709
|
+
| {
|
|
6710
|
+
i18n: string;
|
|
6711
|
+
};
|
|
6712
|
+
title__i18n?: string;
|
|
6713
|
+
tooltip?:
|
|
6714
|
+
| string
|
|
6715
|
+
| {
|
|
6716
|
+
i18n: string;
|
|
6717
|
+
};
|
|
6718
|
+
tooltip__i18n?: string;
|
|
6719
|
+
}[];
|
|
6720
|
+
render?: 'default' | 'native';
|
|
6721
|
+
displayConditions?: {
|
|
6722
|
+
[k: string]: unknown;
|
|
6723
|
+
};
|
|
6724
|
+
key: ModuleKeySchema;
|
|
6725
|
+
}[]
|
|
6726
|
+
];
|
|
6635
6727
|
'compass:adminPage'?: [
|
|
6636
6728
|
(
|
|
6637
6729
|
| {
|