@forge/manifest 7.5.4-next.0-experimental-264fa0f → 7.5.4-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.
@@ -1041,9 +1041,19 @@ export interface Modules {
1041
1041
  macro?: [
1042
1042
  (
1043
1043
  | {
1044
- title: string;
1044
+ title:
1045
+ | {
1046
+ i18n: string;
1047
+ }
1048
+ | string;
1049
+ title__i18n?: string;
1045
1050
  function: string;
1046
- description?: string;
1051
+ description?:
1052
+ | {
1053
+ i18n: string;
1054
+ }
1055
+ | string;
1056
+ description__i18n?: string;
1047
1057
  refDataSchema?: {
1048
1058
  inputType: string;
1049
1059
  };
@@ -1061,7 +1071,12 @@ export interface Modules {
1061
1071
  [k: string]: unknown;
1062
1072
  }
1063
1073
  | {
1064
- title: string;
1074
+ title:
1075
+ | {
1076
+ i18n: string;
1077
+ }
1078
+ | string;
1079
+ title__i18n?: string;
1065
1080
  resolver?:
1066
1081
  | {
1067
1082
  function: string;
@@ -1071,7 +1086,12 @@ export interface Modules {
1071
1086
  };
1072
1087
  resource: string;
1073
1088
  resourceUploadId?: string;
1074
- description?: string;
1089
+ description?:
1090
+ | {
1091
+ i18n: string;
1092
+ }
1093
+ | string;
1094
+ description__i18n?: string;
1075
1095
  adfExport?: {
1076
1096
  function: string;
1077
1097
  };
@@ -1098,9 +1118,19 @@ export interface Modules {
1098
1118
  ),
1099
1119
  ...(
1100
1120
  | {
1101
- title: string;
1121
+ title:
1122
+ | {
1123
+ i18n: string;
1124
+ }
1125
+ | string;
1126
+ title__i18n?: string;
1102
1127
  function: string;
1103
- description?: string;
1128
+ description?:
1129
+ | {
1130
+ i18n: string;
1131
+ }
1132
+ | string;
1133
+ description__i18n?: string;
1104
1134
  refDataSchema?: {
1105
1135
  inputType: string;
1106
1136
  };
@@ -1118,7 +1148,12 @@ export interface Modules {
1118
1148
  [k: string]: unknown;
1119
1149
  }
1120
1150
  | {
1121
- title: string;
1151
+ title:
1152
+ | {
1153
+ i18n: string;
1154
+ }
1155
+ | string;
1156
+ title__i18n?: string;
1122
1157
  resolver?:
1123
1158
  | {
1124
1159
  function: string;
@@ -1128,7 +1163,12 @@ export interface Modules {
1128
1163
  };
1129
1164
  resource: string;
1130
1165
  resourceUploadId?: string;
1131
- description?: string;
1166
+ description?:
1167
+ | {
1168
+ i18n: string;
1169
+ }
1170
+ | string;
1171
+ description__i18n?: string;
1132
1172
  adfExport?: {
1133
1173
  function: string;
1134
1174
  };
@@ -1157,7 +1197,12 @@ export interface Modules {
1157
1197
  'confluence:contextMenu'?: [
1158
1198
  (
1159
1199
  | {
1160
- title: string;
1200
+ title:
1201
+ | {
1202
+ i18n: string;
1203
+ }
1204
+ | string;
1205
+ title__i18n?: string;
1161
1206
  function: string;
1162
1207
  displayConditions?: {
1163
1208
  [k: string]: unknown;
@@ -1167,13 +1212,23 @@ export interface Modules {
1167
1212
  * Keyboard key(s)/combination(s) used to trigger this module.
1168
1213
  */
1169
1214
  accelerator: string;
1170
- description?: string;
1215
+ description?:
1216
+ | {
1217
+ i18n: string;
1218
+ }
1219
+ | string;
1220
+ description__i18n?: string;
1171
1221
  };
1172
1222
  key: ModuleKeySchema;
1173
1223
  [k: string]: unknown;
1174
1224
  }
1175
1225
  | {
1176
- title: string;
1226
+ title:
1227
+ | {
1228
+ i18n: string;
1229
+ }
1230
+ | string;
1231
+ title__i18n?: string;
1177
1232
  resolver?:
1178
1233
  | {
1179
1234
  function: string;
@@ -1192,7 +1247,12 @@ export interface Modules {
1192
1247
  * Keyboard key(s)/combination(s) used to trigger this module.
1193
1248
  */
1194
1249
  accelerator: string;
1195
- description?: string;
1250
+ description?:
1251
+ | {
1252
+ i18n: string;
1253
+ }
1254
+ | string;
1255
+ description__i18n?: string;
1196
1256
  };
1197
1257
  render?: 'native' | 'default';
1198
1258
  key: ModuleKeySchema;
@@ -1201,7 +1261,12 @@ export interface Modules {
1201
1261
  ),
1202
1262
  ...(
1203
1263
  | {
1204
- title: string;
1264
+ title:
1265
+ | {
1266
+ i18n: string;
1267
+ }
1268
+ | string;
1269
+ title__i18n?: string;
1205
1270
  function: string;
1206
1271
  displayConditions?: {
1207
1272
  [k: string]: unknown;
@@ -1211,13 +1276,23 @@ export interface Modules {
1211
1276
  * Keyboard key(s)/combination(s) used to trigger this module.
1212
1277
  */
1213
1278
  accelerator: string;
1214
- description?: string;
1279
+ description?:
1280
+ | {
1281
+ i18n: string;
1282
+ }
1283
+ | string;
1284
+ description__i18n?: string;
1215
1285
  };
1216
1286
  key: ModuleKeySchema;
1217
1287
  [k: string]: unknown;
1218
1288
  }
1219
1289
  | {
1220
- title: string;
1290
+ title:
1291
+ | {
1292
+ i18n: string;
1293
+ }
1294
+ | string;
1295
+ title__i18n?: string;
1221
1296
  resolver?:
1222
1297
  | {
1223
1298
  function: string;
@@ -1236,7 +1311,12 @@ export interface Modules {
1236
1311
  * Keyboard key(s)/combination(s) used to trigger this module.
1237
1312
  */
1238
1313
  accelerator: string;
1239
- description?: string;
1314
+ description?:
1315
+ | {
1316
+ i18n: string;
1317
+ }
1318
+ | string;
1319
+ description__i18n?: string;
1240
1320
  };
1241
1321
  render?: 'native' | 'default';
1242
1322
  key: ModuleKeySchema;
@@ -1247,7 +1327,12 @@ export interface Modules {
1247
1327
  'confluence:contentAction'?: [
1248
1328
  (
1249
1329
  | {
1250
- title: string;
1330
+ title:
1331
+ | {
1332
+ i18n: string;
1333
+ }
1334
+ | string;
1335
+ title__i18n?: string;
1251
1336
  function: string;
1252
1337
  displayConditions?: {
1253
1338
  [k: string]: unknown;
@@ -1257,13 +1342,23 @@ export interface Modules {
1257
1342
  * Keyboard key(s)/combination(s) used to trigger this module.
1258
1343
  */
1259
1344
  accelerator: string;
1260
- description?: string;
1345
+ description?:
1346
+ | {
1347
+ i18n: string;
1348
+ }
1349
+ | string;
1350
+ description__i18n?: string;
1261
1351
  };
1262
1352
  key: ModuleKeySchema;
1263
1353
  [k: string]: unknown;
1264
1354
  }
1265
1355
  | {
1266
- title: string;
1356
+ title:
1357
+ | {
1358
+ i18n: string;
1359
+ }
1360
+ | string;
1361
+ title__i18n?: string;
1267
1362
  resolver?:
1268
1363
  | {
1269
1364
  function: string;
@@ -1282,7 +1377,12 @@ export interface Modules {
1282
1377
  * Keyboard key(s)/combination(s) used to trigger this module.
1283
1378
  */
1284
1379
  accelerator: string;
1285
- description?: string;
1380
+ description?:
1381
+ | {
1382
+ i18n: string;
1383
+ }
1384
+ | string;
1385
+ description__i18n?: string;
1286
1386
  };
1287
1387
  render?: 'native' | 'default';
1288
1388
  key: ModuleKeySchema;
@@ -1291,7 +1391,12 @@ export interface Modules {
1291
1391
  ),
1292
1392
  ...(
1293
1393
  | {
1294
- title: string;
1394
+ title:
1395
+ | {
1396
+ i18n: string;
1397
+ }
1398
+ | string;
1399
+ title__i18n?: string;
1295
1400
  function: string;
1296
1401
  displayConditions?: {
1297
1402
  [k: string]: unknown;
@@ -1301,13 +1406,23 @@ export interface Modules {
1301
1406
  * Keyboard key(s)/combination(s) used to trigger this module.
1302
1407
  */
1303
1408
  accelerator: string;
1304
- description?: string;
1409
+ description?:
1410
+ | {
1411
+ i18n: string;
1412
+ }
1413
+ | string;
1414
+ description__i18n?: string;
1305
1415
  };
1306
1416
  key: ModuleKeySchema;
1307
1417
  [k: string]: unknown;
1308
1418
  }
1309
1419
  | {
1310
- title: string;
1420
+ title:
1421
+ | {
1422
+ i18n: string;
1423
+ }
1424
+ | string;
1425
+ title__i18n?: string;
1311
1426
  resolver?:
1312
1427
  | {
1313
1428
  function: string;
@@ -1326,7 +1441,12 @@ export interface Modules {
1326
1441
  * Keyboard key(s)/combination(s) used to trigger this module.
1327
1442
  */
1328
1443
  accelerator: string;
1329
- description?: string;
1444
+ description?:
1445
+ | {
1446
+ i18n: string;
1447
+ }
1448
+ | string;
1449
+ description__i18n?: string;
1330
1450
  };
1331
1451
  render?: 'native' | 'default';
1332
1452
  key: ModuleKeySchema;
@@ -1337,10 +1457,25 @@ export interface Modules {
1337
1457
  'confluence:contentBylineItem'?: [
1338
1458
  (
1339
1459
  | {
1340
- title: string;
1341
- tooltip?: string;
1460
+ title:
1461
+ | {
1462
+ i18n: string;
1463
+ }
1464
+ | string;
1465
+ title__i18n?: string;
1466
+ tooltip?:
1467
+ | {
1468
+ i18n: string;
1469
+ }
1470
+ | string;
1471
+ tooltip__i18n?: string;
1342
1472
  icon?: string;
1343
- description?: string;
1473
+ description?:
1474
+ | {
1475
+ i18n: string;
1476
+ }
1477
+ | string;
1478
+ description__i18n?: string;
1344
1479
  function: string;
1345
1480
  dynamicProperties?: {
1346
1481
  function: string;
@@ -1353,15 +1488,35 @@ export interface Modules {
1353
1488
  * Keyboard key(s)/combination(s) used to trigger this module.
1354
1489
  */
1355
1490
  accelerator: string;
1356
- description?: string;
1491
+ description?:
1492
+ | {
1493
+ i18n: string;
1494
+ }
1495
+ | string;
1496
+ description__i18n?: string;
1357
1497
  };
1358
1498
  key: ModuleKeySchema;
1359
1499
  }
1360
1500
  | {
1361
- title: string;
1362
- tooltip?: string;
1501
+ title:
1502
+ | {
1503
+ i18n: string;
1504
+ }
1505
+ | string;
1506
+ title__i18n?: string;
1507
+ tooltip?:
1508
+ | {
1509
+ i18n: string;
1510
+ }
1511
+ | string;
1512
+ tooltip__i18n?: string;
1363
1513
  icon?: string;
1364
- description?: string;
1514
+ description?:
1515
+ | {
1516
+ i18n: string;
1517
+ }
1518
+ | string;
1519
+ description__i18n?: string;
1365
1520
  resolver?:
1366
1521
  | {
1367
1522
  function: string;
@@ -1383,7 +1538,12 @@ export interface Modules {
1383
1538
  * Keyboard key(s)/combination(s) used to trigger this module.
1384
1539
  */
1385
1540
  accelerator: string;
1386
- description?: string;
1541
+ description?:
1542
+ | {
1543
+ i18n: string;
1544
+ }
1545
+ | string;
1546
+ description__i18n?: string;
1387
1547
  };
1388
1548
  render?: 'native' | 'default';
1389
1549
  key: ModuleKeySchema;
@@ -1391,10 +1551,25 @@ export interface Modules {
1391
1551
  ),
1392
1552
  ...(
1393
1553
  | {
1394
- title: string;
1395
- tooltip?: string;
1554
+ title:
1555
+ | {
1556
+ i18n: string;
1557
+ }
1558
+ | string;
1559
+ title__i18n?: string;
1560
+ tooltip?:
1561
+ | {
1562
+ i18n: string;
1563
+ }
1564
+ | string;
1565
+ tooltip__i18n?: string;
1396
1566
  icon?: string;
1397
- description?: string;
1567
+ description?:
1568
+ | {
1569
+ i18n: string;
1570
+ }
1571
+ | string;
1572
+ description__i18n?: string;
1398
1573
  function: string;
1399
1574
  dynamicProperties?: {
1400
1575
  function: string;
@@ -1407,15 +1582,35 @@ export interface Modules {
1407
1582
  * Keyboard key(s)/combination(s) used to trigger this module.
1408
1583
  */
1409
1584
  accelerator: string;
1410
- description?: string;
1585
+ description?:
1586
+ | {
1587
+ i18n: string;
1588
+ }
1589
+ | string;
1590
+ description__i18n?: string;
1411
1591
  };
1412
1592
  key: ModuleKeySchema;
1413
1593
  }
1414
1594
  | {
1415
- title: string;
1416
- tooltip?: string;
1595
+ title:
1596
+ | {
1597
+ i18n: string;
1598
+ }
1599
+ | string;
1600
+ title__i18n?: string;
1601
+ tooltip?:
1602
+ | {
1603
+ i18n: string;
1604
+ }
1605
+ | string;
1606
+ tooltip__i18n?: string;
1417
1607
  icon?: string;
1418
- description?: string;
1608
+ description?:
1609
+ | {
1610
+ i18n: string;
1611
+ }
1612
+ | string;
1613
+ description__i18n?: string;
1419
1614
  resolver?:
1420
1615
  | {
1421
1616
  function: string;
@@ -1437,7 +1632,12 @@ export interface Modules {
1437
1632
  * Keyboard key(s)/combination(s) used to trigger this module.
1438
1633
  */
1439
1634
  accelerator: string;
1440
- description?: string;
1635
+ description?:
1636
+ | {
1637
+ i18n: string;
1638
+ }
1639
+ | string;
1640
+ description__i18n?: string;
1441
1641
  };
1442
1642
  render?: 'native' | 'default';
1443
1643
  key: ModuleKeySchema;
@@ -1447,7 +1647,12 @@ export interface Modules {
1447
1647
  'confluence:homepageFeed'?: [
1448
1648
  (
1449
1649
  | {
1450
- title: string;
1650
+ title:
1651
+ | {
1652
+ i18n: string;
1653
+ }
1654
+ | string;
1655
+ title__i18n?: string;
1451
1656
  function: string;
1452
1657
  displayConditions?: {
1453
1658
  [k: string]: unknown;
@@ -1457,13 +1662,23 @@ export interface Modules {
1457
1662
  * Keyboard key(s)/combination(s) used to trigger this module.
1458
1663
  */
1459
1664
  accelerator: string;
1460
- description?: string;
1665
+ description?:
1666
+ | {
1667
+ i18n: string;
1668
+ }
1669
+ | string;
1670
+ description__i18n?: string;
1461
1671
  };
1462
1672
  key: ModuleKeySchema;
1463
1673
  [k: string]: unknown;
1464
1674
  }
1465
1675
  | {
1466
- title: string;
1676
+ title:
1677
+ | {
1678
+ i18n: string;
1679
+ }
1680
+ | string;
1681
+ title__i18n?: string;
1467
1682
  resolver?:
1468
1683
  | {
1469
1684
  function: string;
@@ -1482,7 +1697,12 @@ export interface Modules {
1482
1697
  * Keyboard key(s)/combination(s) used to trigger this module.
1483
1698
  */
1484
1699
  accelerator: string;
1485
- description?: string;
1700
+ description?:
1701
+ | {
1702
+ i18n: string;
1703
+ }
1704
+ | string;
1705
+ description__i18n?: string;
1486
1706
  };
1487
1707
  render?: 'native' | 'default';
1488
1708
  key: ModuleKeySchema;
@@ -1491,7 +1711,12 @@ export interface Modules {
1491
1711
  ),
1492
1712
  ...(
1493
1713
  | {
1494
- title: string;
1714
+ title:
1715
+ | {
1716
+ i18n: string;
1717
+ }
1718
+ | string;
1719
+ title__i18n?: string;
1495
1720
  function: string;
1496
1721
  displayConditions?: {
1497
1722
  [k: string]: unknown;
@@ -1501,13 +1726,23 @@ export interface Modules {
1501
1726
  * Keyboard key(s)/combination(s) used to trigger this module.
1502
1727
  */
1503
1728
  accelerator: string;
1504
- description?: string;
1729
+ description?:
1730
+ | {
1731
+ i18n: string;
1732
+ }
1733
+ | string;
1734
+ description__i18n?: string;
1505
1735
  };
1506
1736
  key: ModuleKeySchema;
1507
1737
  [k: string]: unknown;
1508
1738
  }
1509
1739
  | {
1510
- title: string;
1740
+ title:
1741
+ | {
1742
+ i18n: string;
1743
+ }
1744
+ | string;
1745
+ title__i18n?: string;
1511
1746
  resolver?:
1512
1747
  | {
1513
1748
  function: string;
@@ -1526,7 +1761,12 @@ export interface Modules {
1526
1761
  * Keyboard key(s)/combination(s) used to trigger this module.
1527
1762
  */
1528
1763
  accelerator: string;
1529
- description?: string;
1764
+ description?:
1765
+ | {
1766
+ i18n: string;
1767
+ }
1768
+ | string;
1769
+ description__i18n?: string;
1530
1770
  };
1531
1771
  render?: 'native' | 'default';
1532
1772
  key: ModuleKeySchema;
@@ -1537,7 +1777,12 @@ export interface Modules {
1537
1777
  'confluence:spacePage'?: [
1538
1778
  (
1539
1779
  | {
1540
- title: string;
1780
+ title:
1781
+ | {
1782
+ i18n: string;
1783
+ }
1784
+ | string;
1785
+ title__i18n?: string;
1541
1786
  icon?: string;
1542
1787
  route: string;
1543
1788
  function: string;
@@ -1549,13 +1794,23 @@ export interface Modules {
1549
1794
  * Keyboard key(s)/combination(s) used to trigger this module.
1550
1795
  */
1551
1796
  accelerator: string;
1552
- description?: string;
1797
+ description?:
1798
+ | {
1799
+ i18n: string;
1800
+ }
1801
+ | string;
1802
+ description__i18n?: string;
1553
1803
  };
1554
1804
  key: ModuleKeySchema;
1555
1805
  [k: string]: unknown;
1556
1806
  }
1557
1807
  | {
1558
- title: string;
1808
+ title:
1809
+ | {
1810
+ i18n: string;
1811
+ }
1812
+ | string;
1813
+ title__i18n?: string;
1559
1814
  icon?: string;
1560
1815
  route: string;
1561
1816
  resolver?:
@@ -1575,7 +1830,12 @@ export interface Modules {
1575
1830
  * Keyboard key(s)/combination(s) used to trigger this module.
1576
1831
  */
1577
1832
  accelerator: string;
1578
- description?: string;
1833
+ description?:
1834
+ | {
1835
+ i18n: string;
1836
+ }
1837
+ | string;
1838
+ description__i18n?: string;
1579
1839
  };
1580
1840
  render?: 'native' | 'default';
1581
1841
  key: ModuleKeySchema;
@@ -1584,7 +1844,12 @@ export interface Modules {
1584
1844
  ),
1585
1845
  ...(
1586
1846
  | {
1587
- title: string;
1847
+ title:
1848
+ | {
1849
+ i18n: string;
1850
+ }
1851
+ | string;
1852
+ title__i18n?: string;
1588
1853
  icon?: string;
1589
1854
  route: string;
1590
1855
  function: string;
@@ -1596,13 +1861,23 @@ export interface Modules {
1596
1861
  * Keyboard key(s)/combination(s) used to trigger this module.
1597
1862
  */
1598
1863
  accelerator: string;
1599
- description?: string;
1864
+ description?:
1865
+ | {
1866
+ i18n: string;
1867
+ }
1868
+ | string;
1869
+ description__i18n?: string;
1600
1870
  };
1601
1871
  key: ModuleKeySchema;
1602
1872
  [k: string]: unknown;
1603
1873
  }
1604
1874
  | {
1605
- title: string;
1875
+ title:
1876
+ | {
1877
+ i18n: string;
1878
+ }
1879
+ | string;
1880
+ title__i18n?: string;
1606
1881
  icon?: string;
1607
1882
  route: string;
1608
1883
  resolver?:
@@ -1622,7 +1897,12 @@ export interface Modules {
1622
1897
  * Keyboard key(s)/combination(s) used to trigger this module.
1623
1898
  */
1624
1899
  accelerator: string;
1625
- description?: string;
1900
+ description?:
1901
+ | {
1902
+ i18n: string;
1903
+ }
1904
+ | string;
1905
+ description__i18n?: string;
1626
1906
  };
1627
1907
  render?: 'native' | 'default';
1628
1908
  key: ModuleKeySchema;
@@ -1633,7 +1913,12 @@ export interface Modules {
1633
1913
  'confluence:spaceSettings'?: [
1634
1914
  (
1635
1915
  | {
1636
- title: string;
1916
+ title:
1917
+ | {
1918
+ i18n: string;
1919
+ }
1920
+ | string;
1921
+ title__i18n?: string;
1637
1922
  route: string;
1638
1923
  function: string;
1639
1924
  displayConditions?: {
@@ -1644,13 +1929,23 @@ export interface Modules {
1644
1929
  * Keyboard key(s)/combination(s) used to trigger this module.
1645
1930
  */
1646
1931
  accelerator: string;
1647
- description?: string;
1932
+ description?:
1933
+ | {
1934
+ i18n: string;
1935
+ }
1936
+ | string;
1937
+ description__i18n?: string;
1648
1938
  };
1649
1939
  key: ModuleKeySchema;
1650
1940
  [k: string]: unknown;
1651
1941
  }
1652
1942
  | {
1653
- title: string;
1943
+ title:
1944
+ | {
1945
+ i18n: string;
1946
+ }
1947
+ | string;
1948
+ title__i18n?: string;
1654
1949
  route: string;
1655
1950
  resolver?:
1656
1951
  | {
@@ -1669,7 +1964,12 @@ export interface Modules {
1669
1964
  * Keyboard key(s)/combination(s) used to trigger this module.
1670
1965
  */
1671
1966
  accelerator: string;
1672
- description?: string;
1967
+ description?:
1968
+ | {
1969
+ i18n: string;
1970
+ }
1971
+ | string;
1972
+ description__i18n?: string;
1673
1973
  };
1674
1974
  render?: 'native' | 'default';
1675
1975
  key: ModuleKeySchema;
@@ -1678,7 +1978,12 @@ export interface Modules {
1678
1978
  ),
1679
1979
  ...(
1680
1980
  | {
1681
- title: string;
1981
+ title:
1982
+ | {
1983
+ i18n: string;
1984
+ }
1985
+ | string;
1986
+ title__i18n?: string;
1682
1987
  route: string;
1683
1988
  function: string;
1684
1989
  displayConditions?: {
@@ -1689,13 +1994,23 @@ export interface Modules {
1689
1994
  * Keyboard key(s)/combination(s) used to trigger this module.
1690
1995
  */
1691
1996
  accelerator: string;
1692
- description?: string;
1997
+ description?:
1998
+ | {
1999
+ i18n: string;
2000
+ }
2001
+ | string;
2002
+ description__i18n?: string;
1693
2003
  };
1694
2004
  key: ModuleKeySchema;
1695
2005
  [k: string]: unknown;
1696
2006
  }
1697
2007
  | {
1698
- title: string;
2008
+ title:
2009
+ | {
2010
+ i18n: string;
2011
+ }
2012
+ | string;
2013
+ title__i18n?: string;
1699
2014
  route: string;
1700
2015
  resolver?:
1701
2016
  | {
@@ -1714,7 +2029,12 @@ export interface Modules {
1714
2029
  * Keyboard key(s)/combination(s) used to trigger this module.
1715
2030
  */
1716
2031
  accelerator: string;
1717
- description?: string;
2032
+ description?:
2033
+ | {
2034
+ i18n: string;
2035
+ }
2036
+ | string;
2037
+ description__i18n?: string;
1718
2038
  };
1719
2039
  render?: 'native' | 'default';
1720
2040
  key: ModuleKeySchema;
@@ -1725,7 +2045,12 @@ export interface Modules {
1725
2045
  'confluence:globalSettings'?: [
1726
2046
  (
1727
2047
  | {
1728
- title: string;
2048
+ title:
2049
+ | {
2050
+ i18n: string;
2051
+ }
2052
+ | string;
2053
+ title__i18n?: string;
1729
2054
  function: string;
1730
2055
  displayConditions?: {
1731
2056
  [k: string]: unknown;
@@ -1743,13 +2068,23 @@ export interface Modules {
1743
2068
  * Keyboard key(s)/combination(s) used to trigger this module.
1744
2069
  */
1745
2070
  accelerator: string;
1746
- description?: string;
2071
+ description?:
2072
+ | {
2073
+ i18n: string;
2074
+ }
2075
+ | string;
2076
+ description__i18n?: string;
1747
2077
  };
1748
2078
  key: ModuleKeySchema;
1749
2079
  [k: string]: unknown;
1750
2080
  }
1751
2081
  | {
1752
- title: string;
2082
+ title:
2083
+ | {
2084
+ i18n: string;
2085
+ }
2086
+ | string;
2087
+ title__i18n?: string;
1753
2088
  resolver?:
1754
2089
  | {
1755
2090
  function: string;
@@ -1775,7 +2110,12 @@ export interface Modules {
1775
2110
  * Keyboard key(s)/combination(s) used to trigger this module.
1776
2111
  */
1777
2112
  accelerator: string;
1778
- description?: string;
2113
+ description?:
2114
+ | {
2115
+ i18n: string;
2116
+ }
2117
+ | string;
2118
+ description__i18n?: string;
1779
2119
  };
1780
2120
  render?: 'native' | 'default';
1781
2121
  key: ModuleKeySchema;
@@ -1784,7 +2124,12 @@ export interface Modules {
1784
2124
  ),
1785
2125
  ...(
1786
2126
  | {
1787
- title: string;
2127
+ title:
2128
+ | {
2129
+ i18n: string;
2130
+ }
2131
+ | string;
2132
+ title__i18n?: string;
1788
2133
  function: string;
1789
2134
  displayConditions?: {
1790
2135
  [k: string]: unknown;
@@ -1802,13 +2147,23 @@ export interface Modules {
1802
2147
  * Keyboard key(s)/combination(s) used to trigger this module.
1803
2148
  */
1804
2149
  accelerator: string;
1805
- description?: string;
2150
+ description?:
2151
+ | {
2152
+ i18n: string;
2153
+ }
2154
+ | string;
2155
+ description__i18n?: string;
1806
2156
  };
1807
2157
  key: ModuleKeySchema;
1808
2158
  [k: string]: unknown;
1809
2159
  }
1810
2160
  | {
1811
- title: string;
2161
+ title:
2162
+ | {
2163
+ i18n: string;
2164
+ }
2165
+ | string;
2166
+ title__i18n?: string;
1812
2167
  resolver?:
1813
2168
  | {
1814
2169
  function: string;
@@ -1834,7 +2189,12 @@ export interface Modules {
1834
2189
  * Keyboard key(s)/combination(s) used to trigger this module.
1835
2190
  */
1836
2191
  accelerator: string;
1837
- description?: string;
2192
+ description?:
2193
+ | {
2194
+ i18n: string;
2195
+ }
2196
+ | string;
2197
+ description__i18n?: string;
1838
2198
  };
1839
2199
  render?: 'native' | 'default';
1840
2200
  key: ModuleKeySchema;
@@ -1845,7 +2205,12 @@ export interface Modules {
1845
2205
  'confluence:globalPage'?: [
1846
2206
  (
1847
2207
  | {
1848
- title: string;
2208
+ title:
2209
+ | {
2210
+ i18n: string;
2211
+ }
2212
+ | string;
2213
+ title__i18n?: string;
1849
2214
  icon?: string;
1850
2215
  route: string;
1851
2216
  function: string;
@@ -1857,12 +2222,22 @@ export interface Modules {
1857
2222
  * Keyboard key(s)/combination(s) used to trigger this module.
1858
2223
  */
1859
2224
  accelerator: string;
1860
- description?: string;
2225
+ description?:
2226
+ | {
2227
+ i18n: string;
2228
+ }
2229
+ | string;
2230
+ description__i18n?: string;
1861
2231
  };
1862
2232
  key: ModuleKeySchema;
1863
2233
  }
1864
2234
  | {
1865
- title: string;
2235
+ title:
2236
+ | {
2237
+ i18n: string;
2238
+ }
2239
+ | string;
2240
+ title__i18n?: string;
1866
2241
  icon?: string;
1867
2242
  route: string;
1868
2243
  resolver?:
@@ -1882,7 +2257,12 @@ export interface Modules {
1882
2257
  * Keyboard key(s)/combination(s) used to trigger this module.
1883
2258
  */
1884
2259
  accelerator: string;
1885
- description?: string;
2260
+ description?:
2261
+ | {
2262
+ i18n: string;
2263
+ }
2264
+ | string;
2265
+ description__i18n?: string;
1886
2266
  };
1887
2267
  render?: 'native' | 'default';
1888
2268
  key: ModuleKeySchema;
@@ -1890,7 +2270,12 @@ export interface Modules {
1890
2270
  ),
1891
2271
  ...(
1892
2272
  | {
1893
- title: string;
2273
+ title:
2274
+ | {
2275
+ i18n: string;
2276
+ }
2277
+ | string;
2278
+ title__i18n?: string;
1894
2279
  icon?: string;
1895
2280
  route: string;
1896
2281
  function: string;
@@ -1902,12 +2287,22 @@ export interface Modules {
1902
2287
  * Keyboard key(s)/combination(s) used to trigger this module.
1903
2288
  */
1904
2289
  accelerator: string;
1905
- description?: string;
2290
+ description?:
2291
+ | {
2292
+ i18n: string;
2293
+ }
2294
+ | string;
2295
+ description__i18n?: string;
1906
2296
  };
1907
2297
  key: ModuleKeySchema;
1908
2298
  }
1909
2299
  | {
1910
- title: string;
2300
+ title:
2301
+ | {
2302
+ i18n: string;
2303
+ }
2304
+ | string;
2305
+ title__i18n?: string;
1911
2306
  icon?: string;
1912
2307
  route: string;
1913
2308
  resolver?:
@@ -1927,7 +2322,12 @@ export interface Modules {
1927
2322
  * Keyboard key(s)/combination(s) used to trigger this module.
1928
2323
  */
1929
2324
  accelerator: string;
1930
- description?: string;
2325
+ description?:
2326
+ | {
2327
+ i18n: string;
2328
+ }
2329
+ | string;
2330
+ description__i18n?: string;
1931
2331
  };
1932
2332
  render?: 'native' | 'default';
1933
2333
  key: ModuleKeySchema;
@@ -1937,8 +2337,18 @@ export interface Modules {
1937
2337
  'confluence:customContent'?: [
1938
2338
  (
1939
2339
  | {
1940
- title: string;
1941
- description?: string;
2340
+ title:
2341
+ | {
2342
+ i18n: string;
2343
+ }
2344
+ | string;
2345
+ title__i18n?: string;
2346
+ description?:
2347
+ | {
2348
+ i18n: string;
2349
+ }
2350
+ | string;
2351
+ description__i18n?: string;
1942
2352
  icon?: string;
1943
2353
  bodyType?: 'raw' | 'storage';
1944
2354
  supportedContainerTypes: [string, ...string[]];
@@ -1950,8 +2360,18 @@ export interface Modules {
1950
2360
  key: ModuleKeySchema;
1951
2361
  }
1952
2362
  | {
1953
- title: string;
1954
- description?: string;
2363
+ title:
2364
+ | {
2365
+ i18n: string;
2366
+ }
2367
+ | string;
2368
+ title__i18n?: string;
2369
+ description?:
2370
+ | {
2371
+ i18n: string;
2372
+ }
2373
+ | string;
2374
+ description__i18n?: string;
1955
2375
  icon?: string;
1956
2376
  bodyType?: 'raw' | 'storage';
1957
2377
  supportedContainerTypes: [string, ...string[]];
@@ -1970,8 +2390,18 @@ export interface Modules {
1970
2390
  ),
1971
2391
  ...(
1972
2392
  | {
1973
- title: string;
1974
- description?: string;
2393
+ title:
2394
+ | {
2395
+ i18n: string;
2396
+ }
2397
+ | string;
2398
+ title__i18n?: string;
2399
+ description?:
2400
+ | {
2401
+ i18n: string;
2402
+ }
2403
+ | string;
2404
+ description__i18n?: string;
1975
2405
  icon?: string;
1976
2406
  bodyType?: 'raw' | 'storage';
1977
2407
  supportedContainerTypes: [string, ...string[]];
@@ -1983,11 +2413,21 @@ export interface Modules {
1983
2413
  key: ModuleKeySchema;
1984
2414
  }
1985
2415
  | {
1986
- title: string;
1987
- description?: string;
1988
- icon?: string;
1989
- bodyType?: 'raw' | 'storage';
1990
- supportedContainerTypes: [string, ...string[]];
2416
+ title:
2417
+ | {
2418
+ i18n: string;
2419
+ }
2420
+ | string;
2421
+ title__i18n?: string;
2422
+ description?:
2423
+ | {
2424
+ i18n: string;
2425
+ }
2426
+ | string;
2427
+ description__i18n?: string;
2428
+ icon?: string;
2429
+ bodyType?: 'raw' | 'storage';
2430
+ supportedContainerTypes: [string, ...string[]];
1991
2431
  supportedChildTypes?: [string, ...string[]];
1992
2432
  supportedSpacePermissions?: ['read' | 'create' | 'delete', ...('read' | 'create' | 'delete')[]];
1993
2433
  indexing?: boolean;
@@ -4067,14 +4507,22 @@ export interface Modules {
4067
4507
  'compass:adminPage'?: [
4068
4508
  (
4069
4509
  | {
4070
- title: string;
4510
+ title:
4511
+ | {
4512
+ i18n: string;
4513
+ }
4514
+ | string;
4071
4515
  icon?: string;
4072
4516
  function: string;
4073
4517
  key: ModuleKeySchema;
4074
4518
  [k: string]: unknown;
4075
4519
  }
4076
4520
  | {
4077
- title: string;
4521
+ title:
4522
+ | {
4523
+ i18n: string;
4524
+ }
4525
+ | string;
4078
4526
  icon?: string;
4079
4527
  resolver?:
4080
4528
  | {
@@ -4090,14 +4538,22 @@ export interface Modules {
4090
4538
  ),
4091
4539
  ...(
4092
4540
  | {
4093
- title: string;
4541
+ title:
4542
+ | {
4543
+ i18n: string;
4544
+ }
4545
+ | string;
4094
4546
  icon?: string;
4095
4547
  function: string;
4096
4548
  key: ModuleKeySchema;
4097
4549
  [k: string]: unknown;
4098
4550
  }
4099
4551
  | {
4100
- title: string;
4552
+ title:
4553
+ | {
4554
+ i18n: string;
4555
+ }
4556
+ | string;
4101
4557
  icon?: string;
4102
4558
  resolver?:
4103
4559
  | {
@@ -4115,7 +4571,11 @@ export interface Modules {
4115
4571
  'compass:componentPage'?: [
4116
4572
  (
4117
4573
  | {
4118
- title: string;
4574
+ title:
4575
+ | {
4576
+ i18n: string;
4577
+ }
4578
+ | string;
4119
4579
  icon?: string;
4120
4580
  function: string;
4121
4581
  displayConditions?: DisplayConditions;
@@ -4123,7 +4583,11 @@ export interface Modules {
4123
4583
  [k: string]: unknown;
4124
4584
  }
4125
4585
  | {
4126
- title: string;
4586
+ title:
4587
+ | {
4588
+ i18n: string;
4589
+ }
4590
+ | string;
4127
4591
  icon?: string;
4128
4592
  resolver?:
4129
4593
  | {
@@ -4140,7 +4604,11 @@ export interface Modules {
4140
4604
  ),
4141
4605
  ...(
4142
4606
  | {
4143
- title: string;
4607
+ title:
4608
+ | {
4609
+ i18n: string;
4610
+ }
4611
+ | string;
4144
4612
  icon?: string;
4145
4613
  function: string;
4146
4614
  displayConditions?: DisplayConditions;
@@ -4148,7 +4616,11 @@ export interface Modules {
4148
4616
  [k: string]: unknown;
4149
4617
  }
4150
4618
  | {
4151
- title: string;
4619
+ title:
4620
+ | {
4621
+ i18n: string;
4622
+ }
4623
+ | string;
4152
4624
  icon?: string;
4153
4625
  resolver?:
4154
4626
  | {
@@ -4167,7 +4639,11 @@ export interface Modules {
4167
4639
  'compass:globalPage'?: [
4168
4640
  (
4169
4641
  | {
4170
- title: string;
4642
+ title:
4643
+ | {
4644
+ i18n: string;
4645
+ }
4646
+ | string;
4171
4647
  icon?: string;
4172
4648
  fullscreen?: boolean;
4173
4649
  function: string;
@@ -4175,7 +4651,11 @@ export interface Modules {
4175
4651
  [k: string]: unknown;
4176
4652
  }
4177
4653
  | {
4178
- title: string;
4654
+ title:
4655
+ | {
4656
+ i18n: string;
4657
+ }
4658
+ | string;
4179
4659
  icon?: string;
4180
4660
  fullscreen?: boolean;
4181
4661
  resolver?:
@@ -4192,7 +4672,11 @@ export interface Modules {
4192
4672
  ),
4193
4673
  ...(
4194
4674
  | {
4195
- title: string;
4675
+ title:
4676
+ | {
4677
+ i18n: string;
4678
+ }
4679
+ | string;
4196
4680
  icon?: string;
4197
4681
  fullscreen?: boolean;
4198
4682
  function: string;
@@ -4200,7 +4684,11 @@ export interface Modules {
4200
4684
  [k: string]: unknown;
4201
4685
  }
4202
4686
  | {
4203
- title: string;
4687
+ title:
4688
+ | {
4689
+ i18n: string;
4690
+ }
4691
+ | string;
4204
4692
  icon?: string;
4205
4693
  fullscreen?: boolean;
4206
4694
  resolver?:
@@ -4219,14 +4707,22 @@ export interface Modules {
4219
4707
  'compass:teamPage'?: [
4220
4708
  (
4221
4709
  | {
4222
- title: string;
4710
+ title:
4711
+ | {
4712
+ i18n: string;
4713
+ }
4714
+ | string;
4223
4715
  icon?: string;
4224
4716
  function: string;
4225
4717
  key: ModuleKeySchema;
4226
4718
  [k: string]: unknown;
4227
4719
  }
4228
4720
  | {
4229
- title: string;
4721
+ title:
4722
+ | {
4723
+ i18n: string;
4724
+ }
4725
+ | string;
4230
4726
  icon?: string;
4231
4727
  resolver?:
4232
4728
  | {
@@ -4242,14 +4738,22 @@ export interface Modules {
4242
4738
  ),
4243
4739
  ...(
4244
4740
  | {
4245
- title: string;
4741
+ title:
4742
+ | {
4743
+ i18n: string;
4744
+ }
4745
+ | string;
4246
4746
  icon?: string;
4247
4747
  function: string;
4248
4748
  key: ModuleKeySchema;
4249
4749
  [k: string]: unknown;
4250
4750
  }
4251
4751
  | {
4252
- title: string;
4752
+ title:
4753
+ | {
4754
+ i18n: string;
4755
+ }
4756
+ | string;
4253
4757
  icon?: string;
4254
4758
  resolver?:
4255
4759
  | {
@@ -4289,7 +4793,11 @@ export interface Modules {
4289
4793
  'jiraServiceManagement:queuePage'?: [
4290
4794
  (
4291
4795
  | {
4292
- title: string;
4796
+ title:
4797
+ | {
4798
+ i18n: string;
4799
+ }
4800
+ | string;
4293
4801
  icon?: string;
4294
4802
  layout?: 'native' | 'basic';
4295
4803
  function: string;
@@ -4297,7 +4805,11 @@ export interface Modules {
4297
4805
  [k: string]: unknown;
4298
4806
  }
4299
4807
  | {
4300
- title: string;
4808
+ title:
4809
+ | {
4810
+ i18n: string;
4811
+ }
4812
+ | string;
4301
4813
  icon?: string;
4302
4814
  layout?: 'native' | 'basic' | 'blank';
4303
4815
  resolver?:
@@ -4316,7 +4828,11 @@ export interface Modules {
4316
4828
  ),
4317
4829
  ...(
4318
4830
  | {
4319
- title: string;
4831
+ title:
4832
+ | {
4833
+ i18n: string;
4834
+ }
4835
+ | string;
4320
4836
  icon?: string;
4321
4837
  layout?: 'native' | 'basic';
4322
4838
  function: string;
@@ -4324,7 +4840,11 @@ export interface Modules {
4324
4840
  [k: string]: unknown;
4325
4841
  }
4326
4842
  | {
4327
- title: string;
4843
+ title:
4844
+ | {
4845
+ i18n: string;
4846
+ }
4847
+ | string;
4328
4848
  icon?: string;
4329
4849
  layout?: 'native' | 'basic' | 'blank';
4330
4850
  resolver?:
@@ -4345,7 +4865,11 @@ export interface Modules {
4345
4865
  'jiraServiceManagement:portalRequestDetail'?: [
4346
4866
  (
4347
4867
  | {
4348
- title: string;
4868
+ title:
4869
+ | {
4870
+ i18n: string;
4871
+ }
4872
+ | string;
4349
4873
  icon?: string;
4350
4874
  layout?: 'native' | 'basic';
4351
4875
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
@@ -4354,7 +4878,11 @@ export interface Modules {
4354
4878
  [k: string]: unknown;
4355
4879
  }
4356
4880
  | {
4357
- title: string;
4881
+ title:
4882
+ | {
4883
+ i18n: string;
4884
+ }
4885
+ | string;
4358
4886
  icon?: string;
4359
4887
  layout?: 'native' | 'basic';
4360
4888
  resolver?:
@@ -4373,7 +4901,11 @@ export interface Modules {
4373
4901
  ),
4374
4902
  ...(
4375
4903
  | {
4376
- title: string;
4904
+ title:
4905
+ | {
4906
+ i18n: string;
4907
+ }
4908
+ | string;
4377
4909
  icon?: string;
4378
4910
  layout?: 'native' | 'basic';
4379
4911
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
@@ -4382,7 +4914,11 @@ export interface Modules {
4382
4914
  [k: string]: unknown;
4383
4915
  }
4384
4916
  | {
4385
- title: string;
4917
+ title:
4918
+ | {
4919
+ i18n: string;
4920
+ }
4921
+ | string;
4386
4922
  icon?: string;
4387
4923
  layout?: 'native' | 'basic';
4388
4924
  resolver?:
@@ -4403,7 +4939,11 @@ export interface Modules {
4403
4939
  'jiraServiceManagement:portalRequestDetailPanel'?: [
4404
4940
  (
4405
4941
  | {
4406
- title: string;
4942
+ title:
4943
+ | {
4944
+ i18n: string;
4945
+ }
4946
+ | string;
4407
4947
  icon?: string;
4408
4948
  layout?: 'native' | 'basic';
4409
4949
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
@@ -4412,7 +4952,11 @@ export interface Modules {
4412
4952
  [k: string]: unknown;
4413
4953
  }
4414
4954
  | {
4415
- title: string;
4955
+ title:
4956
+ | {
4957
+ i18n: string;
4958
+ }
4959
+ | string;
4416
4960
  icon?: string;
4417
4961
  layout?: 'native' | 'basic';
4418
4962
  resolver?:
@@ -4431,7 +4975,11 @@ export interface Modules {
4431
4975
  ),
4432
4976
  ...(
4433
4977
  | {
4434
- title: string;
4978
+ title:
4979
+ | {
4980
+ i18n: string;
4981
+ }
4982
+ | string;
4435
4983
  icon?: string;
4436
4984
  layout?: 'native' | 'basic';
4437
4985
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
@@ -4440,7 +4988,11 @@ export interface Modules {
4440
4988
  [k: string]: unknown;
4441
4989
  }
4442
4990
  | {
4443
- title: string;
4991
+ title:
4992
+ | {
4993
+ i18n: string;
4994
+ }
4995
+ | string;
4444
4996
  icon?: string;
4445
4997
  layout?: 'native' | 'basic';
4446
4998
  resolver?:
@@ -4461,7 +5013,11 @@ export interface Modules {
4461
5013
  'jiraServiceManagement:organizationPanel'?: [
4462
5014
  (
4463
5015
  | {
4464
- title: string;
5016
+ title:
5017
+ | {
5018
+ i18n: string;
5019
+ }
5020
+ | string;
4465
5021
  icon?: string;
4466
5022
  layout?: 'native' | 'basic';
4467
5023
  function: string;
@@ -4469,7 +5025,11 @@ export interface Modules {
4469
5025
  [k: string]: unknown;
4470
5026
  }
4471
5027
  | {
4472
- title: string;
5028
+ title:
5029
+ | {
5030
+ i18n: string;
5031
+ }
5032
+ | string;
4473
5033
  icon?: string;
4474
5034
  layout?: 'native' | 'basic';
4475
5035
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
@@ -4489,7 +5049,11 @@ export interface Modules {
4489
5049
  ),
4490
5050
  ...(
4491
5051
  | {
4492
- title: string;
5052
+ title:
5053
+ | {
5054
+ i18n: string;
5055
+ }
5056
+ | string;
4493
5057
  icon?: string;
4494
5058
  layout?: 'native' | 'basic';
4495
5059
  function: string;
@@ -4497,7 +5061,11 @@ export interface Modules {
4497
5061
  [k: string]: unknown;
4498
5062
  }
4499
5063
  | {
4500
- title: string;
5064
+ title:
5065
+ | {
5066
+ i18n: string;
5067
+ }
5068
+ | string;
4501
5069
  icon?: string;
4502
5070
  layout?: 'native' | 'basic';
4503
5071
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
@@ -4773,7 +5341,11 @@ export interface Modules {
4773
5341
  'jiraServiceManagement:portalProfilePanel'?: [
4774
5342
  (
4775
5343
  | {
4776
- title: string;
5344
+ title:
5345
+ | {
5346
+ i18n: string;
5347
+ }
5348
+ | string;
4777
5349
  icon?: string;
4778
5350
  layout?: 'native' | 'basic';
4779
5351
  function: string;
@@ -4781,7 +5353,11 @@ export interface Modules {
4781
5353
  [k: string]: unknown;
4782
5354
  }
4783
5355
  | {
4784
- title: string;
5356
+ title:
5357
+ | {
5358
+ i18n: string;
5359
+ }
5360
+ | string;
4785
5361
  icon?: string;
4786
5362
  layout?: 'native' | 'basic';
4787
5363
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
@@ -4801,7 +5377,11 @@ export interface Modules {
4801
5377
  ),
4802
5378
  ...(
4803
5379
  | {
4804
- title: string;
5380
+ title:
5381
+ | {
5382
+ i18n: string;
5383
+ }
5384
+ | string;
4805
5385
  icon?: string;
4806
5386
  layout?: 'native' | 'basic';
4807
5387
  function: string;
@@ -4809,7 +5389,11 @@ export interface Modules {
4809
5389
  [k: string]: unknown;
4810
5390
  }
4811
5391
  | {
4812
- title: string;
5392
+ title:
5393
+ | {
5394
+ i18n: string;
5395
+ }
5396
+ | string;
4813
5397
  icon?: string;
4814
5398
  layout?: 'native' | 'basic';
4815
5399
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
@@ -4831,7 +5415,11 @@ export interface Modules {
4831
5415
  'jiraServiceManagement:portalUserMenuAction'?: [
4832
5416
  (
4833
5417
  | {
4834
- title: string;
5418
+ title:
5419
+ | {
5420
+ i18n: string;
5421
+ }
5422
+ | string;
4835
5423
  function: string;
4836
5424
  displayConditions?: {
4837
5425
  [k: string]: unknown;
@@ -4840,7 +5428,11 @@ export interface Modules {
4840
5428
  [k: string]: unknown;
4841
5429
  }
4842
5430
  | {
4843
- title: string;
5431
+ title:
5432
+ | {
5433
+ i18n: string;
5434
+ }
5435
+ | string;
4844
5436
  resolver?:
4845
5437
  | {
4846
5438
  function: string;
@@ -4861,7 +5453,11 @@ export interface Modules {
4861
5453
  ),
4862
5454
  ...(
4863
5455
  | {
4864
- title: string;
5456
+ title:
5457
+ | {
5458
+ i18n: string;
5459
+ }
5460
+ | string;
4865
5461
  function: string;
4866
5462
  displayConditions?: {
4867
5463
  [k: string]: unknown;
@@ -4870,7 +5466,11 @@ export interface Modules {
4870
5466
  [k: string]: unknown;
4871
5467
  }
4872
5468
  | {
4873
- title: string;
5469
+ title:
5470
+ | {
5471
+ i18n: string;
5472
+ }
5473
+ | string;
4874
5474
  resolver?:
4875
5475
  | {
4876
5476
  function: string;
@@ -4893,13 +5493,21 @@ export interface Modules {
4893
5493
  'jiraServiceManagement:portalRequestViewAction'?: [
4894
5494
  (
4895
5495
  | {
4896
- title: string;
5496
+ title:
5497
+ | {
5498
+ i18n: string;
5499
+ }
5500
+ | string;
4897
5501
  function: string;
4898
5502
  key: ModuleKeySchema;
4899
5503
  [k: string]: unknown;
4900
5504
  }
4901
5505
  | {
4902
- title: string;
5506
+ title:
5507
+ | {
5508
+ i18n: string;
5509
+ }
5510
+ | string;
4903
5511
  resolver?:
4904
5512
  | {
4905
5513
  function: string;
@@ -4917,13 +5525,21 @@ export interface Modules {
4917
5525
  ),
4918
5526
  ...(
4919
5527
  | {
4920
- title: string;
5528
+ title:
5529
+ | {
5530
+ i18n: string;
5531
+ }
5532
+ | string;
4921
5533
  function: string;
4922
5534
  key: ModuleKeySchema;
4923
5535
  [k: string]: unknown;
4924
5536
  }
4925
5537
  | {
4926
- title: string;
5538
+ title:
5539
+ | {
5540
+ i18n: string;
5541
+ }
5542
+ | string;
4927
5543
  resolver?:
4928
5544
  | {
4929
5545
  function: string;
@@ -4943,7 +5559,11 @@ export interface Modules {
4943
5559
  'jiraServiceManagement:portalRequestCreatePropertyPanel'?: [
4944
5560
  (
4945
5561
  | {
4946
- title?: string;
5562
+ title?:
5563
+ | {
5564
+ i18n: string;
5565
+ }
5566
+ | string;
4947
5567
  icon?: string;
4948
5568
  layout?: 'native' | 'basic';
4949
5569
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
@@ -4953,7 +5573,11 @@ export interface Modules {
4953
5573
  }
4954
5574
  | {
4955
5575
  viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
4956
- title?: string;
5576
+ title?:
5577
+ | {
5578
+ i18n: string;
5579
+ }
5580
+ | string;
4957
5581
  icon?: string;
4958
5582
  layout?: 'native' | 'basic';
4959
5583
  resolver?:
@@ -4972,7 +5596,11 @@ export interface Modules {
4972
5596
  ),
4973
5597
  ...(
4974
5598
  | {
4975
- title?: string;
5599
+ title?:
5600
+ | {
5601
+ i18n: string;
5602
+ }
5603
+ | string;
4976
5604
  icon?: string;
4977
5605
  layout?: 'native' | 'basic';
4978
5606
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
@@ -4982,7 +5610,11 @@ export interface Modules {
4982
5610
  }
4983
5611
  | {
4984
5612
  viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
4985
- title?: string;
5613
+ title?:
5614
+ | {
5615
+ i18n: string;
5616
+ }
5617
+ | string;
4986
5618
  icon?: string;
4987
5619
  layout?: 'native' | 'basic';
4988
5620
  resolver?:
@@ -5003,7 +5635,16 @@ export interface Modules {
5003
5635
  'jiraServiceManagement:assetsImportType'?: [
5004
5636
  (
5005
5637
  | {
5006
- title: string;
5638
+ title:
5639
+ | {
5640
+ i18n: string;
5641
+ }
5642
+ | string;
5643
+ description?:
5644
+ | {
5645
+ i18n: string;
5646
+ }
5647
+ | string;
5007
5648
  icon: string;
5008
5649
  function: string;
5009
5650
  onDeleteImport?: {
@@ -5026,7 +5667,16 @@ export interface Modules {
5026
5667
  [k: string]: unknown;
5027
5668
  }
5028
5669
  | {
5029
- title: string;
5670
+ title:
5671
+ | {
5672
+ i18n: string;
5673
+ }
5674
+ | string;
5675
+ description?:
5676
+ | {
5677
+ i18n: string;
5678
+ }
5679
+ | string;
5030
5680
  icon: string;
5031
5681
  resource: string;
5032
5682
  resolver?:
@@ -5059,7 +5709,16 @@ export interface Modules {
5059
5709
  ),
5060
5710
  ...(
5061
5711
  | {
5062
- title: string;
5712
+ title:
5713
+ | {
5714
+ i18n: string;
5715
+ }
5716
+ | string;
5717
+ description?:
5718
+ | {
5719
+ i18n: string;
5720
+ }
5721
+ | string;
5063
5722
  icon: string;
5064
5723
  function: string;
5065
5724
  onDeleteImport?: {
@@ -5082,7 +5741,16 @@ export interface Modules {
5082
5741
  [k: string]: unknown;
5083
5742
  }
5084
5743
  | {
5085
- title: string;
5744
+ title:
5745
+ | {
5746
+ i18n: string;
5747
+ }
5748
+ | string;
5749
+ description?:
5750
+ | {
5751
+ i18n: string;
5752
+ }
5753
+ | string;
5086
5754
  icon: string;
5087
5755
  resource: string;
5088
5756
  resolver?:
@@ -5114,26 +5782,14 @@ export interface Modules {
5114
5782
  }
5115
5783
  )[]
5116
5784
  ];
5117
- 'jiraServiceManagement:assetsSchemaPage'?: [
5118
- {
5119
- title: string;
5120
- icon: string;
5121
- function: string;
5122
- key: ModuleKeySchema;
5123
- [k: string]: unknown;
5124
- },
5125
- ...{
5126
- title: string;
5127
- icon: string;
5128
- function: string;
5129
- key: ModuleKeySchema;
5130
- [k: string]: unknown;
5131
- }[]
5132
- ];
5133
5785
  'bitbucket:repoPullRequestCard'?: [
5134
5786
  (
5135
5787
  | {
5136
- title: string;
5788
+ title:
5789
+ | {
5790
+ i18n: string;
5791
+ }
5792
+ | string;
5137
5793
  icon?: string;
5138
5794
  resource?: string;
5139
5795
  function: string;
@@ -5141,7 +5797,11 @@ export interface Modules {
5141
5797
  [k: string]: unknown;
5142
5798
  }
5143
5799
  | {
5144
- title: string;
5800
+ title:
5801
+ | {
5802
+ i18n: string;
5803
+ }
5804
+ | string;
5145
5805
  icon?: string;
5146
5806
  resolver?:
5147
5807
  | {
@@ -5157,7 +5817,11 @@ export interface Modules {
5157
5817
  ),
5158
5818
  ...(
5159
5819
  | {
5160
- title: string;
5820
+ title:
5821
+ | {
5822
+ i18n: string;
5823
+ }
5824
+ | string;
5161
5825
  icon?: string;
5162
5826
  resource?: string;
5163
5827
  function: string;
@@ -5165,7 +5829,11 @@ export interface Modules {
5165
5829
  [k: string]: unknown;
5166
5830
  }
5167
5831
  | {
5168
- title: string;
5832
+ title:
5833
+ | {
5834
+ i18n: string;
5835
+ }
5836
+ | string;
5169
5837
  icon?: string;
5170
5838
  resolver?:
5171
5839
  | {
@@ -5183,14 +5851,22 @@ export interface Modules {
5183
5851
  'bitbucket:repoPullRequestAction'?: [
5184
5852
  (
5185
5853
  | {
5186
- title: string;
5854
+ title:
5855
+ | {
5856
+ i18n: string;
5857
+ }
5858
+ | string;
5187
5859
  resource?: string;
5188
5860
  function: string;
5189
5861
  key: ModuleKeySchema;
5190
5862
  [k: string]: unknown;
5191
5863
  }
5192
5864
  | {
5193
- title: string;
5865
+ title:
5866
+ | {
5867
+ i18n: string;
5868
+ }
5869
+ | string;
5194
5870
  resolver?:
5195
5871
  | {
5196
5872
  function: string;
@@ -5205,14 +5881,22 @@ export interface Modules {
5205
5881
  ),
5206
5882
  ...(
5207
5883
  | {
5208
- title: string;
5884
+ title:
5885
+ | {
5886
+ i18n: string;
5887
+ }
5888
+ | string;
5209
5889
  resource?: string;
5210
5890
  function: string;
5211
5891
  key: ModuleKeySchema;
5212
5892
  [k: string]: unknown;
5213
5893
  }
5214
5894
  | {
5215
- title: string;
5895
+ title:
5896
+ | {
5897
+ i18n: string;
5898
+ }
5899
+ | string;
5216
5900
  resolver?:
5217
5901
  | {
5218
5902
  function: string;
@@ -5229,7 +5913,11 @@ export interface Modules {
5229
5913
  'bitbucket:repoCodeOverviewCard'?: [
5230
5914
  (
5231
5915
  | {
5232
- title: string;
5916
+ title:
5917
+ | {
5918
+ i18n: string;
5919
+ }
5920
+ | string;
5233
5921
  icon?: string;
5234
5922
  resource?: string;
5235
5923
  function: string;
@@ -5237,7 +5925,11 @@ export interface Modules {
5237
5925
  [k: string]: unknown;
5238
5926
  }
5239
5927
  | {
5240
- title: string;
5928
+ title:
5929
+ | {
5930
+ i18n: string;
5931
+ }
5932
+ | string;
5241
5933
  icon?: string;
5242
5934
  resolver?:
5243
5935
  | {
@@ -5253,7 +5945,11 @@ export interface Modules {
5253
5945
  ),
5254
5946
  ...(
5255
5947
  | {
5256
- title: string;
5948
+ title:
5949
+ | {
5950
+ i18n: string;
5951
+ }
5952
+ | string;
5257
5953
  icon?: string;
5258
5954
  resource?: string;
5259
5955
  function: string;
@@ -5261,7 +5957,11 @@ export interface Modules {
5261
5957
  [k: string]: unknown;
5262
5958
  }
5263
5959
  | {
5264
- title: string;
5960
+ title:
5961
+ | {
5962
+ i18n: string;
5963
+ }
5964
+ | string;
5265
5965
  icon?: string;
5266
5966
  resolver?:
5267
5967
  | {
@@ -5279,14 +5979,22 @@ export interface Modules {
5279
5979
  'bitbucket:repoCodeOverviewAction'?: [
5280
5980
  (
5281
5981
  | {
5282
- title: string;
5982
+ title:
5983
+ | {
5984
+ i18n: string;
5985
+ }
5986
+ | string;
5283
5987
  resource?: string;
5284
5988
  function: string;
5285
5989
  key: ModuleKeySchema;
5286
5990
  [k: string]: unknown;
5287
5991
  }
5288
5992
  | {
5289
- title: string;
5993
+ title:
5994
+ | {
5995
+ i18n: string;
5996
+ }
5997
+ | string;
5290
5998
  resolver?:
5291
5999
  | {
5292
6000
  function: string;
@@ -5301,14 +6009,22 @@ export interface Modules {
5301
6009
  ),
5302
6010
  ...(
5303
6011
  | {
5304
- title: string;
6012
+ title:
6013
+ | {
6014
+ i18n: string;
6015
+ }
6016
+ | string;
5305
6017
  resource?: string;
5306
6018
  function: string;
5307
6019
  key: ModuleKeySchema;
5308
6020
  [k: string]: unknown;
5309
6021
  }
5310
6022
  | {
5311
- title: string;
6023
+ title:
6024
+ | {
6025
+ i18n: string;
6026
+ }
6027
+ | string;
5312
6028
  resolver?:
5313
6029
  | {
5314
6030
  function: string;
@@ -5325,7 +6041,11 @@ export interface Modules {
5325
6041
  'bitbucket:repoMainMenuPage'?: [
5326
6042
  (
5327
6043
  | {
5328
- title: string;
6044
+ title:
6045
+ | {
6046
+ i18n: string;
6047
+ }
6048
+ | string;
5329
6049
  icon?: string;
5330
6050
  resource?: string;
5331
6051
  function: string;
@@ -5333,7 +6053,11 @@ export interface Modules {
5333
6053
  [k: string]: unknown;
5334
6054
  }
5335
6055
  | {
5336
- title: string;
6056
+ title:
6057
+ | {
6058
+ i18n: string;
6059
+ }
6060
+ | string;
5337
6061
  icon?: string;
5338
6062
  resolver?:
5339
6063
  | {
@@ -5349,7 +6073,11 @@ export interface Modules {
5349
6073
  ),
5350
6074
  ...(
5351
6075
  | {
5352
- title: string;
6076
+ title:
6077
+ | {
6078
+ i18n: string;
6079
+ }
6080
+ | string;
5353
6081
  icon?: string;
5354
6082
  resource?: string;
5355
6083
  function: string;
@@ -5357,7 +6085,11 @@ export interface Modules {
5357
6085
  [k: string]: unknown;
5358
6086
  }
5359
6087
  | {
5360
- title: string;
6088
+ title:
6089
+ | {
6090
+ i18n: string;
6091
+ }
6092
+ | string;
5361
6093
  icon?: string;
5362
6094
  resolver?:
5363
6095
  | {
@@ -5375,14 +6107,22 @@ export interface Modules {
5375
6107
  'bitbucket:repoSettingsMenuPage'?: [
5376
6108
  (
5377
6109
  | {
5378
- title: string;
6110
+ title:
6111
+ | {
6112
+ i18n: string;
6113
+ }
6114
+ | string;
5379
6115
  resource?: string;
5380
6116
  function: string;
5381
6117
  key: ModuleKeySchema;
5382
6118
  [k: string]: unknown;
5383
6119
  }
5384
6120
  | {
5385
- title: string;
6121
+ title:
6122
+ | {
6123
+ i18n: string;
6124
+ }
6125
+ | string;
5386
6126
  resolver?:
5387
6127
  | {
5388
6128
  function: string;
@@ -5397,14 +6137,22 @@ export interface Modules {
5397
6137
  ),
5398
6138
  ...(
5399
6139
  | {
5400
- title: string;
6140
+ title:
6141
+ | {
6142
+ i18n: string;
6143
+ }
6144
+ | string;
5401
6145
  resource?: string;
5402
6146
  function: string;
5403
6147
  key: ModuleKeySchema;
5404
6148
  [k: string]: unknown;
5405
6149
  }
5406
6150
  | {
5407
- title: string;
6151
+ title:
6152
+ | {
6153
+ i18n: string;
6154
+ }
6155
+ | string;
5408
6156
  resolver?:
5409
6157
  | {
5410
6158
  function: string;
@@ -5421,14 +6169,22 @@ export interface Modules {
5421
6169
  'bitbucket:workspaceSettingsMenuPage'?: [
5422
6170
  (
5423
6171
  | {
5424
- title: string;
6172
+ title:
6173
+ | {
6174
+ i18n: string;
6175
+ }
6176
+ | string;
5425
6177
  resource?: string;
5426
6178
  function: string;
5427
6179
  key: ModuleKeySchema;
5428
6180
  [k: string]: unknown;
5429
6181
  }
5430
6182
  | {
5431
- title: string;
6183
+ title:
6184
+ | {
6185
+ i18n: string;
6186
+ }
6187
+ | string;
5432
6188
  resolver?:
5433
6189
  | {
5434
6190
  function: string;
@@ -5443,14 +6199,22 @@ export interface Modules {
5443
6199
  ),
5444
6200
  ...(
5445
6201
  | {
5446
- title: string;
6202
+ title:
6203
+ | {
6204
+ i18n: string;
6205
+ }
6206
+ | string;
5447
6207
  resource?: string;
5448
6208
  function: string;
5449
6209
  key: ModuleKeySchema;
5450
6210
  [k: string]: unknown;
5451
6211
  }
5452
6212
  | {
5453
- title: string;
6213
+ title:
6214
+ | {
6215
+ i18n: string;
6216
+ }
6217
+ | string;
5454
6218
  resolver?:
5455
6219
  | {
5456
6220
  function: string;