@forge/manifest 4.20.3 → 4.20.4-next.1

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,22 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 4.20.4-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 1d53ee6b: Bumping dependencies via Renovate:
8
+
9
+ - typescript-json-schema
10
+
11
+ - Updated dependencies [b5342a9d]
12
+ - @forge/util@1.3.3-next.0
13
+
14
+ ## 4.20.4-next.0
15
+
16
+ ### Patch Changes
17
+
18
+ - 22dd431: Update manifest definitions
19
+
3
20
  ## 4.20.3
4
21
 
5
22
  ### Patch Changes
@@ -283,8 +283,8 @@
283
283
  },
284
284
  "EntityType": {
285
285
  "enum": [
286
- "content",
287
- "space"
286
+ "space",
287
+ "content"
288
288
  ],
289
289
  "type": "string"
290
290
  },
@@ -2799,6 +2799,9 @@
2799
2799
  "properties": {
2800
2800
  "expression": {
2801
2801
  "type": "string"
2802
+ },
2803
+ "export": {
2804
+ "type": "boolean"
2802
2805
  }
2803
2806
  },
2804
2807
  "required": [
@@ -2983,6 +2986,17 @@
2983
2986
  ],
2984
2987
  "type": "string"
2985
2988
  },
2989
+ "parser": {
2990
+ "type": "object",
2991
+ "properties": {
2992
+ "expression": {
2993
+ "type": "string"
2994
+ }
2995
+ },
2996
+ "required": [
2997
+ "expression"
2998
+ ]
2999
+ },
2986
3000
  "displayConditions": {
2987
3001
  "type": "object",
2988
3002
  "properties": {}
@@ -3011,6 +3025,9 @@
3011
3025
  "properties": {
3012
3026
  "expression": {
3013
3027
  "type": "string"
3028
+ },
3029
+ "export": {
3030
+ "type": "boolean"
3014
3031
  }
3015
3032
  },
3016
3033
  "required": [
@@ -3194,6 +3211,17 @@
3194
3211
  ],
3195
3212
  "type": "string"
3196
3213
  },
3214
+ "parser": {
3215
+ "type": "object",
3216
+ "properties": {
3217
+ "expression": {
3218
+ "type": "string"
3219
+ }
3220
+ },
3221
+ "required": [
3222
+ "expression"
3223
+ ]
3224
+ },
3197
3225
  "displayConditions": {
3198
3226
  "type": "object",
3199
3227
  "properties": {}
@@ -3231,6 +3259,9 @@
3231
3259
  "properties": {
3232
3260
  "expression": {
3233
3261
  "type": "string"
3262
+ },
3263
+ "export": {
3264
+ "type": "boolean"
3234
3265
  }
3235
3266
  },
3236
3267
  "required": [
@@ -3475,6 +3506,17 @@
3475
3506
  ],
3476
3507
  "type": "string"
3477
3508
  },
3509
+ "parser": {
3510
+ "type": "object",
3511
+ "properties": {
3512
+ "expression": {
3513
+ "type": "string"
3514
+ }
3515
+ },
3516
+ "required": [
3517
+ "expression"
3518
+ ]
3519
+ },
3478
3520
  "displayConditions": {
3479
3521
  "type": "object",
3480
3522
  "properties": {}
@@ -3503,6 +3545,9 @@
3503
3545
  "properties": {
3504
3546
  "expression": {
3505
3547
  "type": "string"
3548
+ },
3549
+ "export": {
3550
+ "type": "boolean"
3506
3551
  }
3507
3552
  },
3508
3553
  "required": [
@@ -3746,6 +3791,17 @@
3746
3791
  ],
3747
3792
  "type": "string"
3748
3793
  },
3794
+ "parser": {
3795
+ "type": "object",
3796
+ "properties": {
3797
+ "expression": {
3798
+ "type": "string"
3799
+ }
3800
+ },
3801
+ "required": [
3802
+ "expression"
3803
+ ]
3804
+ },
3749
3805
  "displayConditions": {
3750
3806
  "type": "object",
3751
3807
  "properties": {}
@@ -1644,6 +1644,7 @@ export interface Modules {
1644
1644
  | {
1645
1645
  formatter?: {
1646
1646
  expression: string;
1647
+ export?: boolean;
1647
1648
  [k: string]: unknown;
1648
1649
  };
1649
1650
  name: string;
@@ -1688,6 +1689,10 @@ export interface Modules {
1688
1689
  [k: string]: unknown;
1689
1690
  };
1690
1691
  render?: 'default' | 'native';
1692
+ parser?: {
1693
+ expression: string;
1694
+ [k: string]: unknown;
1695
+ };
1691
1696
  displayConditions?: {
1692
1697
  [k: string]: unknown;
1693
1698
  };
@@ -1697,6 +1702,7 @@ export interface Modules {
1697
1702
  | {
1698
1703
  formatter: {
1699
1704
  expression: string;
1705
+ export?: boolean;
1700
1706
  [k: string]: unknown;
1701
1707
  };
1702
1708
  schema?: {
@@ -1744,6 +1750,10 @@ export interface Modules {
1744
1750
  [k: string]: unknown;
1745
1751
  };
1746
1752
  render?: 'default' | 'native';
1753
+ parser?: {
1754
+ expression: string;
1755
+ [k: string]: unknown;
1756
+ };
1747
1757
  displayConditions?: {
1748
1758
  [k: string]: unknown;
1749
1759
  };
@@ -1755,6 +1765,7 @@ export interface Modules {
1755
1765
  | {
1756
1766
  formatter?: {
1757
1767
  expression: string;
1768
+ export?: boolean;
1758
1769
  [k: string]: unknown;
1759
1770
  };
1760
1771
  name: string;
@@ -1799,6 +1810,10 @@ export interface Modules {
1799
1810
  [k: string]: unknown;
1800
1811
  };
1801
1812
  render?: 'default' | 'native';
1813
+ parser?: {
1814
+ expression: string;
1815
+ [k: string]: unknown;
1816
+ };
1802
1817
  displayConditions?: {
1803
1818
  [k: string]: unknown;
1804
1819
  };
@@ -1808,6 +1823,7 @@ export interface Modules {
1808
1823
  | {
1809
1824
  formatter: {
1810
1825
  expression: string;
1826
+ export?: boolean;
1811
1827
  [k: string]: unknown;
1812
1828
  };
1813
1829
  schema?: {
@@ -1855,6 +1871,10 @@ export interface Modules {
1855
1871
  [k: string]: unknown;
1856
1872
  };
1857
1873
  render?: 'default' | 'native';
1874
+ parser?: {
1875
+ expression: string;
1876
+ [k: string]: unknown;
1877
+ };
1858
1878
  displayConditions?: {
1859
1879
  [k: string]: unknown;
1860
1880
  };
@@ -1868,6 +1888,7 @@ export interface Modules {
1868
1888
  | {
1869
1889
  formatter?: {
1870
1890
  expression: string;
1891
+ export?: boolean;
1871
1892
  [k: string]: unknown;
1872
1893
  };
1873
1894
  name: string;
@@ -1925,6 +1946,10 @@ export interface Modules {
1925
1946
  [k: string]: unknown;
1926
1947
  };
1927
1948
  render?: 'default' | 'native';
1949
+ parser?: {
1950
+ expression: string;
1951
+ [k: string]: unknown;
1952
+ };
1928
1953
  displayConditions?: {
1929
1954
  [k: string]: unknown;
1930
1955
  };
@@ -1934,6 +1959,7 @@ export interface Modules {
1934
1959
  | {
1935
1960
  formatter: {
1936
1961
  expression: string;
1962
+ export?: boolean;
1937
1963
  [k: string]: unknown;
1938
1964
  };
1939
1965
  schema?: {
@@ -1994,6 +2020,10 @@ export interface Modules {
1994
2020
  [k: string]: unknown;
1995
2021
  };
1996
2022
  render?: 'default' | 'native';
2023
+ parser?: {
2024
+ expression: string;
2025
+ [k: string]: unknown;
2026
+ };
1997
2027
  displayConditions?: {
1998
2028
  [k: string]: unknown;
1999
2029
  };
@@ -2005,6 +2035,7 @@ export interface Modules {
2005
2035
  | {
2006
2036
  formatter?: {
2007
2037
  expression: string;
2038
+ export?: boolean;
2008
2039
  [k: string]: unknown;
2009
2040
  };
2010
2041
  name: string;
@@ -2062,6 +2093,10 @@ export interface Modules {
2062
2093
  [k: string]: unknown;
2063
2094
  };
2064
2095
  render?: 'default' | 'native';
2096
+ parser?: {
2097
+ expression: string;
2098
+ [k: string]: unknown;
2099
+ };
2065
2100
  displayConditions?: {
2066
2101
  [k: string]: unknown;
2067
2102
  };
@@ -2071,6 +2106,7 @@ export interface Modules {
2071
2106
  | {
2072
2107
  formatter: {
2073
2108
  expression: string;
2109
+ export?: boolean;
2074
2110
  [k: string]: unknown;
2075
2111
  };
2076
2112
  schema?: {
@@ -2131,6 +2167,10 @@ export interface Modules {
2131
2167
  [k: string]: unknown;
2132
2168
  };
2133
2169
  render?: 'default' | 'native';
2170
+ parser?: {
2171
+ expression: string;
2172
+ [k: string]: unknown;
2173
+ };
2134
2174
  displayConditions?: {
2135
2175
  [k: string]: unknown;
2136
2176
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "4.20.3",
3
+ "version": "4.20.4-next.1",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {
@@ -23,14 +23,14 @@
23
23
  "author": "Atlassian",
24
24
  "license": "UNLICENSED",
25
25
  "dependencies": {
26
- "@forge/util": "1.3.2",
26
+ "@forge/util": "1.3.3-next.0",
27
27
  "ajv": "^8.12.0",
28
28
  "cheerio": "^0.22.0",
29
29
  "js-yaml": "^4.1.0",
30
30
  "json-schema-to-typescript": "^10.1.5",
31
31
  "lodash": "^4.17.21",
32
32
  "node-fetch": "2.7.0",
33
- "typescript-json-schema": "^0.61.0",
33
+ "typescript-json-schema": "^0.62.0",
34
34
  "ajv-formats": "2.1.1",
35
35
  "glob": "^10.3.10"
36
36
  }