@forge/manifest 11.1.0-next.2 → 11.1.0-next.4
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 +13 -0
- package/out/schema/manifest-schema.json +168 -1
- package/out/schema/manifest.d.ts +70 -2
- package/out/scopes/shipyard-scopes.json +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 11.1.0-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 00eaa35: Fix failing test
|
|
8
|
+
|
|
9
|
+
## 11.1.0-next.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 2f0c3c2: Add missing entry in i18n test
|
|
14
|
+
- d317f2e: Update manifest definitions
|
|
15
|
+
|
|
3
16
|
## 11.1.0-next.2
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -3515,9 +3515,20 @@
|
|
|
3515
3515
|
"enum": [
|
|
3516
3516
|
"small",
|
|
3517
3517
|
"medium",
|
|
3518
|
-
"large"
|
|
3518
|
+
"large",
|
|
3519
|
+
"fullscreen"
|
|
3519
3520
|
]
|
|
3520
3521
|
},
|
|
3522
|
+
"viewportContainer": {
|
|
3523
|
+
"type": "string",
|
|
3524
|
+
"minLength": 1,
|
|
3525
|
+
"maxLength": 255,
|
|
3526
|
+
"enum": [
|
|
3527
|
+
"popup",
|
|
3528
|
+
"modal"
|
|
3529
|
+
],
|
|
3530
|
+
"default": "popup"
|
|
3531
|
+
},
|
|
3521
3532
|
"displayConditions": {
|
|
3522
3533
|
"type": "object"
|
|
3523
3534
|
},
|
|
@@ -19741,6 +19752,162 @@
|
|
|
19741
19752
|
},
|
|
19742
19753
|
"minItems": 1
|
|
19743
19754
|
},
|
|
19755
|
+
"bitbucket:projectSettingsMenuPage": {
|
|
19756
|
+
"type": "array",
|
|
19757
|
+
"items": {
|
|
19758
|
+
"oneOf": [
|
|
19759
|
+
{
|
|
19760
|
+
"type": "object",
|
|
19761
|
+
"properties": {
|
|
19762
|
+
"title": {
|
|
19763
|
+
"oneOf": [
|
|
19764
|
+
{
|
|
19765
|
+
"type": "object",
|
|
19766
|
+
"additionalProperties": false,
|
|
19767
|
+
"properties": {
|
|
19768
|
+
"i18n": {
|
|
19769
|
+
"type": "string",
|
|
19770
|
+
"minLength": 1,
|
|
19771
|
+
"maxLength": 300,
|
|
19772
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
19773
|
+
}
|
|
19774
|
+
},
|
|
19775
|
+
"required": [
|
|
19776
|
+
"i18n"
|
|
19777
|
+
]
|
|
19778
|
+
},
|
|
19779
|
+
{
|
|
19780
|
+
"type": "string",
|
|
19781
|
+
"minLength": 1,
|
|
19782
|
+
"maxLength": 255
|
|
19783
|
+
}
|
|
19784
|
+
]
|
|
19785
|
+
},
|
|
19786
|
+
"title__i18n": {
|
|
19787
|
+
"type": "string",
|
|
19788
|
+
"minLength": 1,
|
|
19789
|
+
"maxLength": 300,
|
|
19790
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
19791
|
+
},
|
|
19792
|
+
"resource": {
|
|
19793
|
+
"type": "string",
|
|
19794
|
+
"minLength": 1,
|
|
19795
|
+
"maxLength": 23,
|
|
19796
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
19797
|
+
},
|
|
19798
|
+
"function": {
|
|
19799
|
+
"type": "string",
|
|
19800
|
+
"minLength": 1,
|
|
19801
|
+
"maxLength": 255,
|
|
19802
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
19803
|
+
},
|
|
19804
|
+
"key": {
|
|
19805
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
19806
|
+
}
|
|
19807
|
+
},
|
|
19808
|
+
"required": [
|
|
19809
|
+
"title",
|
|
19810
|
+
"function",
|
|
19811
|
+
"key"
|
|
19812
|
+
],
|
|
19813
|
+
"not": {
|
|
19814
|
+
"required": [
|
|
19815
|
+
"unlicensedAccess"
|
|
19816
|
+
]
|
|
19817
|
+
}
|
|
19818
|
+
},
|
|
19819
|
+
{
|
|
19820
|
+
"type": "object",
|
|
19821
|
+
"properties": {
|
|
19822
|
+
"title": {
|
|
19823
|
+
"oneOf": [
|
|
19824
|
+
{
|
|
19825
|
+
"type": "object",
|
|
19826
|
+
"additionalProperties": false,
|
|
19827
|
+
"properties": {
|
|
19828
|
+
"i18n": {
|
|
19829
|
+
"type": "string",
|
|
19830
|
+
"minLength": 1,
|
|
19831
|
+
"maxLength": 300,
|
|
19832
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
19833
|
+
}
|
|
19834
|
+
},
|
|
19835
|
+
"required": [
|
|
19836
|
+
"i18n"
|
|
19837
|
+
]
|
|
19838
|
+
},
|
|
19839
|
+
{
|
|
19840
|
+
"type": "string",
|
|
19841
|
+
"minLength": 1,
|
|
19842
|
+
"maxLength": 255
|
|
19843
|
+
}
|
|
19844
|
+
]
|
|
19845
|
+
},
|
|
19846
|
+
"title__i18n": {
|
|
19847
|
+
"type": "string",
|
|
19848
|
+
"minLength": 1,
|
|
19849
|
+
"maxLength": 300,
|
|
19850
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
19851
|
+
},
|
|
19852
|
+
"resolver": {
|
|
19853
|
+
"oneOf": [
|
|
19854
|
+
{
|
|
19855
|
+
"additionalProperties": false,
|
|
19856
|
+
"type": "object",
|
|
19857
|
+
"properties": {
|
|
19858
|
+
"function": {
|
|
19859
|
+
"type": "string",
|
|
19860
|
+
"minLength": 1,
|
|
19861
|
+
"maxLength": 255,
|
|
19862
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
19863
|
+
}
|
|
19864
|
+
},
|
|
19865
|
+
"required": [
|
|
19866
|
+
"function"
|
|
19867
|
+
]
|
|
19868
|
+
},
|
|
19869
|
+
{
|
|
19870
|
+
"additionalProperties": false,
|
|
19871
|
+
"type": "object",
|
|
19872
|
+
"properties": {
|
|
19873
|
+
"endpoint": {
|
|
19874
|
+
"type": "string",
|
|
19875
|
+
"minLength": 1,
|
|
19876
|
+
"maxLength": 255,
|
|
19877
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
19878
|
+
}
|
|
19879
|
+
},
|
|
19880
|
+
"required": [
|
|
19881
|
+
"endpoint"
|
|
19882
|
+
]
|
|
19883
|
+
}
|
|
19884
|
+
]
|
|
19885
|
+
},
|
|
19886
|
+
"resource": {
|
|
19887
|
+
"type": "string",
|
|
19888
|
+
"minLength": 1,
|
|
19889
|
+
"maxLength": 23,
|
|
19890
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
19891
|
+
},
|
|
19892
|
+
"key": {
|
|
19893
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
19894
|
+
}
|
|
19895
|
+
},
|
|
19896
|
+
"required": [
|
|
19897
|
+
"title",
|
|
19898
|
+
"resource",
|
|
19899
|
+
"key"
|
|
19900
|
+
],
|
|
19901
|
+
"not": {
|
|
19902
|
+
"required": [
|
|
19903
|
+
"unlicensedAccess"
|
|
19904
|
+
]
|
|
19905
|
+
}
|
|
19906
|
+
}
|
|
19907
|
+
]
|
|
19908
|
+
},
|
|
19909
|
+
"minItems": 1
|
|
19910
|
+
},
|
|
19744
19911
|
"bitbucket:mergeCheck": {
|
|
19745
19912
|
"type": "array",
|
|
19746
19913
|
"items": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -13096,7 +13096,8 @@ export interface Modules {
|
|
|
13096
13096
|
contentPropertyKey?: string;
|
|
13097
13097
|
resource: string;
|
|
13098
13098
|
resourceUploadId?: string;
|
|
13099
|
-
viewportSize?: 'small' | 'medium' | 'large';
|
|
13099
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'fullscreen';
|
|
13100
|
+
viewportContainer?: 'popup' | 'modal';
|
|
13100
13101
|
displayConditions?: {
|
|
13101
13102
|
[k: string]: unknown;
|
|
13102
13103
|
};
|
|
@@ -13191,7 +13192,8 @@ export interface Modules {
|
|
|
13191
13192
|
contentPropertyKey?: string;
|
|
13192
13193
|
resource: string;
|
|
13193
13194
|
resourceUploadId?: string;
|
|
13194
|
-
viewportSize?: 'small' | 'medium' | 'large';
|
|
13195
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'fullscreen';
|
|
13196
|
+
viewportContainer?: 'popup' | 'modal';
|
|
13195
13197
|
displayConditions?: {
|
|
13196
13198
|
[k: string]: unknown;
|
|
13197
13199
|
};
|
|
@@ -20520,6 +20522,72 @@ export interface Modules {
|
|
|
20520
20522
|
}
|
|
20521
20523
|
)[]
|
|
20522
20524
|
];
|
|
20525
|
+
'bitbucket:projectSettingsMenuPage'?: [
|
|
20526
|
+
(
|
|
20527
|
+
| {
|
|
20528
|
+
title:
|
|
20529
|
+
| {
|
|
20530
|
+
i18n: string;
|
|
20531
|
+
}
|
|
20532
|
+
| string;
|
|
20533
|
+
title__i18n?: string;
|
|
20534
|
+
resource?: string;
|
|
20535
|
+
function: string;
|
|
20536
|
+
key: ModuleKeySchema;
|
|
20537
|
+
[k: string]: unknown;
|
|
20538
|
+
}
|
|
20539
|
+
| {
|
|
20540
|
+
title:
|
|
20541
|
+
| {
|
|
20542
|
+
i18n: string;
|
|
20543
|
+
}
|
|
20544
|
+
| string;
|
|
20545
|
+
title__i18n?: string;
|
|
20546
|
+
resolver?:
|
|
20547
|
+
| {
|
|
20548
|
+
function: string;
|
|
20549
|
+
}
|
|
20550
|
+
| {
|
|
20551
|
+
endpoint: string;
|
|
20552
|
+
};
|
|
20553
|
+
resource: string;
|
|
20554
|
+
key: ModuleKeySchema;
|
|
20555
|
+
[k: string]: unknown;
|
|
20556
|
+
}
|
|
20557
|
+
),
|
|
20558
|
+
...(
|
|
20559
|
+
| {
|
|
20560
|
+
title:
|
|
20561
|
+
| {
|
|
20562
|
+
i18n: string;
|
|
20563
|
+
}
|
|
20564
|
+
| string;
|
|
20565
|
+
title__i18n?: string;
|
|
20566
|
+
resource?: string;
|
|
20567
|
+
function: string;
|
|
20568
|
+
key: ModuleKeySchema;
|
|
20569
|
+
[k: string]: unknown;
|
|
20570
|
+
}
|
|
20571
|
+
| {
|
|
20572
|
+
title:
|
|
20573
|
+
| {
|
|
20574
|
+
i18n: string;
|
|
20575
|
+
}
|
|
20576
|
+
| string;
|
|
20577
|
+
title__i18n?: string;
|
|
20578
|
+
resolver?:
|
|
20579
|
+
| {
|
|
20580
|
+
function: string;
|
|
20581
|
+
}
|
|
20582
|
+
| {
|
|
20583
|
+
endpoint: string;
|
|
20584
|
+
};
|
|
20585
|
+
resource: string;
|
|
20586
|
+
key: ModuleKeySchema;
|
|
20587
|
+
[k: string]: unknown;
|
|
20588
|
+
}
|
|
20589
|
+
)[]
|
|
20590
|
+
];
|
|
20523
20591
|
'bitbucket:mergeCheck'?: [
|
|
20524
20592
|
(
|
|
20525
20593
|
| {
|