@forge/manifest 8.7.0-next.5 → 8.7.0-next.6-experimental-edac07a
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 +23 -0
- package/out/schema/manifest-schema.json +66 -6
- package/out/schema/manifest.d.ts +52 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 8.7.0-next.6-experimental-edac07a
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 48d2f56: add graph extension points
|
|
8
|
+
- dec434a: Don't produce extra error messages from conditional json schema snippets
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 6b8b6e2: rename `primaryProduct` to `requiredProduct`
|
|
13
|
+
- ba58c3a: allow app developer to configure lambda architecture
|
|
14
|
+
- 2086b3d: Remove node-fetch as a dependency
|
|
15
|
+
- 55df193: Update manifest definitions
|
|
16
|
+
- ddc0256: Update manifest definitions
|
|
17
|
+
- 4b050d8: Update manifest definitions
|
|
18
|
+
- de16df9: Update manifest definitions
|
|
19
|
+
|
|
20
|
+
## 8.7.0-next.6
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- ddc0256: Update manifest definitions
|
|
25
|
+
|
|
3
26
|
## 8.7.0-next.5
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|
|
@@ -1560,6 +1560,33 @@
|
|
|
1560
1560
|
}
|
|
1561
1561
|
}
|
|
1562
1562
|
},
|
|
1563
|
+
"autoConvert": {
|
|
1564
|
+
"type": "object",
|
|
1565
|
+
"additionalProperties": false,
|
|
1566
|
+
"properties": {
|
|
1567
|
+
"matchers": {
|
|
1568
|
+
"type": "array",
|
|
1569
|
+
"minItems": 1,
|
|
1570
|
+
"items": {
|
|
1571
|
+
"type": "object",
|
|
1572
|
+
"additionalProperties": false,
|
|
1573
|
+
"properties": {
|
|
1574
|
+
"pattern": {
|
|
1575
|
+
"type": "string",
|
|
1576
|
+
"minLength": 1,
|
|
1577
|
+
"maxLength": 1024
|
|
1578
|
+
}
|
|
1579
|
+
},
|
|
1580
|
+
"required": [
|
|
1581
|
+
"pattern"
|
|
1582
|
+
]
|
|
1583
|
+
}
|
|
1584
|
+
}
|
|
1585
|
+
},
|
|
1586
|
+
"required": [
|
|
1587
|
+
"matchers"
|
|
1588
|
+
]
|
|
1589
|
+
},
|
|
1563
1590
|
"data": {
|
|
1564
1591
|
"type": "object",
|
|
1565
1592
|
"properties": {
|
|
@@ -1823,6 +1850,33 @@
|
|
|
1823
1850
|
}
|
|
1824
1851
|
]
|
|
1825
1852
|
},
|
|
1853
|
+
"autoConvert": {
|
|
1854
|
+
"type": "object",
|
|
1855
|
+
"additionalProperties": false,
|
|
1856
|
+
"properties": {
|
|
1857
|
+
"matchers": {
|
|
1858
|
+
"type": "array",
|
|
1859
|
+
"minItems": 1,
|
|
1860
|
+
"items": {
|
|
1861
|
+
"type": "object",
|
|
1862
|
+
"additionalProperties": false,
|
|
1863
|
+
"properties": {
|
|
1864
|
+
"pattern": {
|
|
1865
|
+
"type": "string",
|
|
1866
|
+
"minLength": 1,
|
|
1867
|
+
"maxLength": 1024
|
|
1868
|
+
}
|
|
1869
|
+
},
|
|
1870
|
+
"required": [
|
|
1871
|
+
"pattern"
|
|
1872
|
+
]
|
|
1873
|
+
}
|
|
1874
|
+
}
|
|
1875
|
+
},
|
|
1876
|
+
"required": [
|
|
1877
|
+
"matchers"
|
|
1878
|
+
]
|
|
1879
|
+
},
|
|
1826
1880
|
"data": {
|
|
1827
1881
|
"type": "object",
|
|
1828
1882
|
"properties": {
|
|
@@ -5235,7 +5289,8 @@
|
|
|
5235
5289
|
"type": "string",
|
|
5236
5290
|
"enum": [
|
|
5237
5291
|
"issue-view",
|
|
5238
|
-
"issue-create"
|
|
5292
|
+
"issue-create",
|
|
5293
|
+
"portal-request"
|
|
5239
5294
|
]
|
|
5240
5295
|
}
|
|
5241
5296
|
},
|
|
@@ -5674,7 +5729,8 @@
|
|
|
5674
5729
|
"type": "string",
|
|
5675
5730
|
"enum": [
|
|
5676
5731
|
"issue-view",
|
|
5677
|
-
"issue-create"
|
|
5732
|
+
"issue-create",
|
|
5733
|
+
"portal-request"
|
|
5678
5734
|
]
|
|
5679
5735
|
}
|
|
5680
5736
|
},
|
|
@@ -6071,7 +6127,8 @@
|
|
|
6071
6127
|
"type": "string",
|
|
6072
6128
|
"enum": [
|
|
6073
6129
|
"issue-view",
|
|
6074
|
-
"issue-create"
|
|
6130
|
+
"issue-create",
|
|
6131
|
+
"portal-request"
|
|
6075
6132
|
]
|
|
6076
6133
|
}
|
|
6077
6134
|
},
|
|
@@ -6485,7 +6542,8 @@
|
|
|
6485
6542
|
"type": "string",
|
|
6486
6543
|
"enum": [
|
|
6487
6544
|
"issue-view",
|
|
6488
|
-
"issue-create"
|
|
6545
|
+
"issue-create",
|
|
6546
|
+
"portal-request"
|
|
6489
6547
|
]
|
|
6490
6548
|
}
|
|
6491
6549
|
},
|
|
@@ -7020,7 +7078,8 @@
|
|
|
7020
7078
|
"type": "string",
|
|
7021
7079
|
"enum": [
|
|
7022
7080
|
"issue-view",
|
|
7023
|
-
"issue-create"
|
|
7081
|
+
"issue-create",
|
|
7082
|
+
"portal-request"
|
|
7024
7083
|
]
|
|
7025
7084
|
}
|
|
7026
7085
|
},
|
|
@@ -7516,7 +7575,8 @@
|
|
|
7516
7575
|
"type": "string",
|
|
7517
7576
|
"enum": [
|
|
7518
7577
|
"issue-view",
|
|
7519
|
-
"issue-create"
|
|
7578
|
+
"issue-create",
|
|
7579
|
+
"portal-request"
|
|
7520
7580
|
]
|
|
7521
7581
|
}
|
|
7522
7582
|
},
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -1556,6 +1556,16 @@ export interface Modules {
|
|
|
1556
1556
|
function?: string;
|
|
1557
1557
|
[k: string]: unknown;
|
|
1558
1558
|
};
|
|
1559
|
+
autoConvert?: {
|
|
1560
|
+
matchers: [
|
|
1561
|
+
{
|
|
1562
|
+
pattern: string;
|
|
1563
|
+
},
|
|
1564
|
+
...{
|
|
1565
|
+
pattern: string;
|
|
1566
|
+
}[]
|
|
1567
|
+
];
|
|
1568
|
+
};
|
|
1559
1569
|
data?: {
|
|
1560
1570
|
function?: string;
|
|
1561
1571
|
schema?: 'confluence/macro_homepage';
|
|
@@ -1609,6 +1619,16 @@ export interface Modules {
|
|
|
1609
1619
|
render?: 'native' | 'default';
|
|
1610
1620
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
1611
1621
|
};
|
|
1622
|
+
autoConvert?: {
|
|
1623
|
+
matchers: [
|
|
1624
|
+
{
|
|
1625
|
+
pattern: string;
|
|
1626
|
+
},
|
|
1627
|
+
...{
|
|
1628
|
+
pattern: string;
|
|
1629
|
+
}[]
|
|
1630
|
+
];
|
|
1631
|
+
};
|
|
1612
1632
|
data?: {
|
|
1613
1633
|
function?: string;
|
|
1614
1634
|
schema?: string;
|
|
@@ -1642,6 +1662,16 @@ export interface Modules {
|
|
|
1642
1662
|
function?: string;
|
|
1643
1663
|
[k: string]: unknown;
|
|
1644
1664
|
};
|
|
1665
|
+
autoConvert?: {
|
|
1666
|
+
matchers: [
|
|
1667
|
+
{
|
|
1668
|
+
pattern: string;
|
|
1669
|
+
},
|
|
1670
|
+
...{
|
|
1671
|
+
pattern: string;
|
|
1672
|
+
}[]
|
|
1673
|
+
];
|
|
1674
|
+
};
|
|
1645
1675
|
data?: {
|
|
1646
1676
|
function?: string;
|
|
1647
1677
|
schema?: 'confluence/macro_homepage';
|
|
@@ -1695,6 +1725,16 @@ export interface Modules {
|
|
|
1695
1725
|
render?: 'native' | 'default';
|
|
1696
1726
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
1697
1727
|
};
|
|
1728
|
+
autoConvert?: {
|
|
1729
|
+
matchers: [
|
|
1730
|
+
{
|
|
1731
|
+
pattern: string;
|
|
1732
|
+
},
|
|
1733
|
+
...{
|
|
1734
|
+
pattern: string;
|
|
1735
|
+
}[]
|
|
1736
|
+
];
|
|
1737
|
+
};
|
|
1698
1738
|
data?: {
|
|
1699
1739
|
function?: string;
|
|
1700
1740
|
schema?: string;
|
|
@@ -3183,7 +3223,7 @@ export interface Modules {
|
|
|
3183
3223
|
expression: string;
|
|
3184
3224
|
[k: string]: unknown;
|
|
3185
3225
|
};
|
|
3186
|
-
experience?: ('issue-view' | 'issue-create')[];
|
|
3226
|
+
experience?: ('issue-view' | 'issue-create' | 'portal-request')[];
|
|
3187
3227
|
isInline?: boolean;
|
|
3188
3228
|
[k: string]: unknown;
|
|
3189
3229
|
};
|
|
@@ -3294,7 +3334,7 @@ export interface Modules {
|
|
|
3294
3334
|
expression: string;
|
|
3295
3335
|
[k: string]: unknown;
|
|
3296
3336
|
};
|
|
3297
|
-
experience?: ('issue-view' | 'issue-create')[];
|
|
3337
|
+
experience?: ('issue-view' | 'issue-create' | 'portal-request')[];
|
|
3298
3338
|
isInline?: boolean;
|
|
3299
3339
|
[k: string]: unknown;
|
|
3300
3340
|
};
|
|
@@ -3395,7 +3435,7 @@ export interface Modules {
|
|
|
3395
3435
|
expression: string;
|
|
3396
3436
|
[k: string]: unknown;
|
|
3397
3437
|
};
|
|
3398
|
-
experience?: ('issue-view' | 'issue-create')[];
|
|
3438
|
+
experience?: ('issue-view' | 'issue-create' | 'portal-request')[];
|
|
3399
3439
|
isInline?: boolean;
|
|
3400
3440
|
[k: string]: unknown;
|
|
3401
3441
|
};
|
|
@@ -3505,7 +3545,7 @@ export interface Modules {
|
|
|
3505
3545
|
expression: string;
|
|
3506
3546
|
[k: string]: unknown;
|
|
3507
3547
|
};
|
|
3508
|
-
experience?: ('issue-view' | 'issue-create')[];
|
|
3548
|
+
experience?: ('issue-view' | 'issue-create' | 'portal-request')[];
|
|
3509
3549
|
isInline?: boolean;
|
|
3510
3550
|
[k: string]: unknown;
|
|
3511
3551
|
};
|
|
@@ -3616,7 +3656,7 @@ export interface Modules {
|
|
|
3616
3656
|
expression: string;
|
|
3617
3657
|
[k: string]: unknown;
|
|
3618
3658
|
};
|
|
3619
|
-
experience?: ('issue-view' | 'issue-create')[];
|
|
3659
|
+
experience?: ('issue-view' | 'issue-create' | 'portal-request')[];
|
|
3620
3660
|
isInline?: boolean;
|
|
3621
3661
|
[k: string]: unknown;
|
|
3622
3662
|
};
|
|
@@ -3717,7 +3757,7 @@ export interface Modules {
|
|
|
3717
3757
|
expression: string;
|
|
3718
3758
|
[k: string]: unknown;
|
|
3719
3759
|
};
|
|
3720
|
-
experience?: ('issue-view' | 'issue-create')[];
|
|
3760
|
+
experience?: ('issue-view' | 'issue-create' | 'portal-request')[];
|
|
3721
3761
|
isInline?: boolean;
|
|
3722
3762
|
[k: string]: unknown;
|
|
3723
3763
|
};
|
|
@@ -3822,7 +3862,7 @@ export interface Modules {
|
|
|
3822
3862
|
expression: string;
|
|
3823
3863
|
[k: string]: unknown;
|
|
3824
3864
|
};
|
|
3825
|
-
experience?: ('issue-view' | 'issue-create')[];
|
|
3865
|
+
experience?: ('issue-view' | 'issue-create' | 'portal-request')[];
|
|
3826
3866
|
isInline?: boolean;
|
|
3827
3867
|
[k: string]: unknown;
|
|
3828
3868
|
};
|
|
@@ -3954,7 +3994,7 @@ export interface Modules {
|
|
|
3954
3994
|
expression: string;
|
|
3955
3995
|
[k: string]: unknown;
|
|
3956
3996
|
};
|
|
3957
|
-
experience?: ('issue-view' | 'issue-create')[];
|
|
3997
|
+
experience?: ('issue-view' | 'issue-create' | 'portal-request')[];
|
|
3958
3998
|
isInline?: boolean;
|
|
3959
3999
|
[k: string]: unknown;
|
|
3960
4000
|
};
|
|
@@ -4076,7 +4116,7 @@ export interface Modules {
|
|
|
4076
4116
|
expression: string;
|
|
4077
4117
|
[k: string]: unknown;
|
|
4078
4118
|
};
|
|
4079
|
-
experience?: ('issue-view' | 'issue-create')[];
|
|
4119
|
+
experience?: ('issue-view' | 'issue-create' | 'portal-request')[];
|
|
4080
4120
|
isInline?: boolean;
|
|
4081
4121
|
[k: string]: unknown;
|
|
4082
4122
|
};
|
|
@@ -4207,7 +4247,7 @@ export interface Modules {
|
|
|
4207
4247
|
expression: string;
|
|
4208
4248
|
[k: string]: unknown;
|
|
4209
4249
|
};
|
|
4210
|
-
experience?: ('issue-view' | 'issue-create')[];
|
|
4250
|
+
experience?: ('issue-view' | 'issue-create' | 'portal-request')[];
|
|
4211
4251
|
isInline?: boolean;
|
|
4212
4252
|
[k: string]: unknown;
|
|
4213
4253
|
};
|
|
@@ -4339,7 +4379,7 @@ export interface Modules {
|
|
|
4339
4379
|
expression: string;
|
|
4340
4380
|
[k: string]: unknown;
|
|
4341
4381
|
};
|
|
4342
|
-
experience?: ('issue-view' | 'issue-create')[];
|
|
4382
|
+
experience?: ('issue-view' | 'issue-create' | 'portal-request')[];
|
|
4343
4383
|
isInline?: boolean;
|
|
4344
4384
|
[k: string]: unknown;
|
|
4345
4385
|
};
|
|
@@ -4461,7 +4501,7 @@ export interface Modules {
|
|
|
4461
4501
|
expression: string;
|
|
4462
4502
|
[k: string]: unknown;
|
|
4463
4503
|
};
|
|
4464
|
-
experience?: ('issue-view' | 'issue-create')[];
|
|
4504
|
+
experience?: ('issue-view' | 'issue-create' | 'portal-request')[];
|
|
4465
4505
|
isInline?: boolean;
|
|
4466
4506
|
[k: string]: unknown;
|
|
4467
4507
|
};
|