@digi-frontend/dgate-api-documentation 1.0.70 → 1.0.72

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/dist/styles.css CHANGED
@@ -1402,6 +1402,160 @@ div.endBtnIcon {
1402
1402
  .tableSectionContainer .descArrow path,
1403
1403
  .tableSectionContainer .defaultSortArrow path {
1404
1404
  fill: var(--Gray-50);
1405
+ }.api-docs-api-tree {
1406
+ width: 100%;
1407
+ max-width: 12.5rem;
1408
+ padding: 3rem 1.25rem;
1409
+ box-sizing: border-box;
1410
+ }
1411
+ .api-docs-api-tree > * {
1412
+ box-sizing: border-box;
1413
+ }
1414
+ .api-docs-api-tree__section-header {
1415
+ display: flex;
1416
+ align-items: center;
1417
+ gap: 0.25rem;
1418
+ padding-inline: 0.5rem;
1419
+ cursor: pointer;
1420
+ user-select: none;
1421
+ height: 2.5rem;
1422
+ }
1423
+ .api-docs-api-tree__section-header:hover {
1424
+ background-color: #f3f4f6;
1425
+ }
1426
+ .api-docs-api-tree__section-header svg:first-child path {
1427
+ stroke: #bbbec5;
1428
+ }
1429
+ .api-docs-api-tree__section-title {
1430
+ font-size: 0.75rem;
1431
+ line-height: 0.875rem;
1432
+ font-weight: 500;
1433
+ color: #000;
1434
+ margin-left: 0.25rem;
1435
+ }
1436
+ .api-docs-api-tree__section__overview {
1437
+ display: flex;
1438
+ align-items: center;
1439
+ gap: 0.5rem;
1440
+ padding: 0.5rem 1.75rem;
1441
+ border-radius: 0.25rem;
1442
+ cursor: pointer;
1443
+ }
1444
+ .api-docs-api-tree__section__overview:hover {
1445
+ background-color: #f3f4f6;
1446
+ }
1447
+ .api-docs-api-tree__section__overview span {
1448
+ font-size: 0.75rem;
1449
+ line-height: 0.875rem;
1450
+ color: #000000;
1451
+ }
1452
+ .api-docs-api-tree__section__overview[data-active=true] {
1453
+ background-color: #f0f1f2;
1454
+ }
1455
+ .api-docs-api-tree__section__endpoints {
1456
+ display: flex;
1457
+ align-items: center;
1458
+ height: 1.5rem;
1459
+ gap: 0.5rem;
1460
+ border-radius: 0.25rem;
1461
+ padding-inline: 1.75rem;
1462
+ cursor: pointer;
1463
+ }
1464
+ .api-docs-api-tree__section__endpoints span {
1465
+ font-size: 0.75rem;
1466
+ line-height: 0.875rem;
1467
+ color: #000000;
1468
+ }
1469
+ .api-docs-api-tree__section__endpoints[data-active=true] {
1470
+ background-color: #f0f1f2;
1471
+ }
1472
+ .api-docs-api-tree__section[data-active=true] .api-docs-api-tree__section-title {
1473
+ color: #616874;
1474
+ }
1475
+ .api-docs-api-tree__endpoints {
1476
+ display: flex;
1477
+ flex-direction: column;
1478
+ align-items: start;
1479
+ gap: 0.5rem;
1480
+ border-radius: 0.25rem;
1481
+ cursor: pointer;
1482
+ }
1483
+ .api-docs-api-tree__endpoints span {
1484
+ font-size: 0.75rem;
1485
+ line-height: 0.875rem;
1486
+ color: #000000;
1487
+ }
1488
+ .api-docs-api-tree__endpoints[data-active=true] {
1489
+ background-color: #f0f1f2;
1490
+ }
1491
+ .api-docs-api-tree__subsection-header {
1492
+ height: 2rem;
1493
+ display: flex;
1494
+ align-items: center;
1495
+ gap: 0.875rem;
1496
+ padding-inline: 0.5rem;
1497
+ cursor: pointer;
1498
+ user-select: none;
1499
+ }
1500
+ .api-docs-api-tree__subsection-header svg {
1501
+ color: #6b7280;
1502
+ }
1503
+ .api-docs-api-tree__subsection-title {
1504
+ font-size: 0.75rem;
1505
+ line-height: 0.875rem;
1506
+ color: #616874;
1507
+ }
1508
+ .api-docs-api-tree__endpoint {
1509
+ display: flex;
1510
+ align-items: center;
1511
+ gap: 0.25rem;
1512
+ padding: 0.5rem 0.75rem;
1513
+ text-transform: capitalize;
1514
+ width: 100%;
1515
+ cursor: pointer;
1516
+ }
1517
+ .api-docs-api-tree__endpoint[data-active=true] {
1518
+ background-color: #f0f1f2;
1519
+ }
1520
+ .api-docs-api-tree__endpoint:hover {
1521
+ background-color: #f3f4f6;
1522
+ }
1523
+ .api-docs-api-tree__endpoint-method {
1524
+ font-size: 0.75rem;
1525
+ line-height: 0.875rem;
1526
+ font-weight: 400;
1527
+ text-align: start;
1528
+ }
1529
+ .api-docs-api-tree__endpoint-name {
1530
+ font-size: 0.75rem;
1531
+ line-height: 0.875rem;
1532
+ color: #3b3f46;
1533
+ display: -webkit-box;
1534
+ -webkit-box-orient: vertical;
1535
+ -webkit-line-clamp: 1;
1536
+ overflow: hidden;
1537
+ text-overflow: ellipsis;
1538
+ }
1539
+ .api-docs-api-tree__endpoint--get .api-docs-api-tree__endpoint-method {
1540
+ color: #3a6cd1;
1541
+ }
1542
+ .api-docs-api-tree__endpoint--post .api-docs-api-tree__endpoint-method {
1543
+ color: #3aaa35;
1544
+ }
1545
+ .api-docs-api-tree__endpoint--put .api-docs-api-tree__endpoint-method {
1546
+ color: #faad14;
1547
+ }
1548
+ .api-docs-api-tree__endpoint--delete .api-docs-api-tree__endpoint-method {
1549
+ color: #da3f3f;
1550
+ }
1551
+ .api-docs-api-tree__endpoint--option .api-docs-api-tree__endpoint-method {
1552
+ color: #495d97;
1553
+ }
1554
+ .api-docs-api-tree__endpoint--head .api-docs-api-tree__endpoint-method {
1555
+ color: #9461c9;
1556
+ }
1557
+ .api-docs-api-tree__endpoint--patch .api-docs-api-tree__endpoint-method {
1558
+ color: #58e2c2;
1405
1559
  }.api_docs_header {
1406
1560
  height: 2.625rem;
1407
1561
  background-color: #f0f1f2;
@@ -1640,160 +1794,42 @@ div.endBtnIcon {
1640
1794
  opacity: 1 !important;
1641
1795
  backdrop-filter: blur(0.5rem);
1642
1796
  background-color: rgba(0, 0, 0, 0.281) !important;
1643
- }.api-docs-api-tree {
1644
- width: 100%;
1645
- max-width: 12.5rem;
1646
- padding: 3rem 1.25rem;
1647
- box-sizing: border-box;
1648
- }
1649
- .api-docs-api-tree > * {
1650
- box-sizing: border-box;
1651
- }
1652
- .api-docs-api-tree__section-header {
1653
- display: flex;
1654
- align-items: center;
1655
- gap: 0.25rem;
1656
- padding-inline: 0.5rem;
1657
- cursor: pointer;
1658
- user-select: none;
1659
- height: 2.5rem;
1660
- }
1661
- .api-docs-api-tree__section-header:hover {
1662
- background-color: #f3f4f6;
1663
- }
1664
- .api-docs-api-tree__section-header svg:first-child path {
1665
- stroke: #bbbec5;
1666
- }
1667
- .api-docs-api-tree__section-title {
1668
- font-size: 0.75rem;
1669
- line-height: 0.875rem;
1670
- font-weight: 500;
1671
- color: #000;
1672
- margin-left: 0.25rem;
1673
- }
1674
- .api-docs-api-tree__section__overview {
1675
- display: flex;
1676
- align-items: center;
1677
- gap: 0.5rem;
1678
- padding: 0.5rem 1.75rem;
1797
+ }.codebox {
1679
1798
  border-radius: 0.25rem;
1680
- cursor: pointer;
1681
- }
1682
- .api-docs-api-tree__section__overview:hover {
1683
- background-color: #f3f4f6;
1684
- }
1685
- .api-docs-api-tree__section__overview span {
1686
- font-size: 0.75rem;
1687
- line-height: 0.875rem;
1688
- color: #000000;
1689
- }
1690
- .api-docs-api-tree__section__overview[data-active=true] {
1691
- background-color: #f0f1f2;
1799
+ overflow: hidden;
1692
1800
  }
1693
- .api-docs-api-tree__section__endpoints {
1801
+ .codebox_header {
1694
1802
  display: flex;
1695
1803
  align-items: center;
1696
- height: 1.5rem;
1697
- gap: 0.5rem;
1698
- border-radius: 0.25rem;
1699
- padding-inline: 1.75rem;
1700
- cursor: pointer;
1701
- }
1702
- .api-docs-api-tree__section__endpoints span {
1703
- font-size: 0.75rem;
1704
- line-height: 0.875rem;
1705
- color: #000000;
1706
- }
1707
- .api-docs-api-tree__section__endpoints[data-active=true] {
1708
- background-color: #f0f1f2;
1709
- }
1710
- .api-docs-api-tree__section[data-active=true] .api-docs-api-tree__section-title {
1711
- color: #616874;
1712
- }
1713
- .api-docs-api-tree__endpoints {
1714
- display: flex;
1715
- flex-direction: column;
1716
- align-items: start;
1717
- gap: 0.5rem;
1718
- border-radius: 0.25rem;
1719
- cursor: pointer;
1720
- }
1721
- .api-docs-api-tree__endpoints span {
1722
- font-size: 0.75rem;
1723
- line-height: 0.875rem;
1724
- color: #000000;
1725
- }
1726
- .api-docs-api-tree__endpoints[data-active=true] {
1727
- background-color: #f0f1f2;
1804
+ gap: 0.25rem;
1805
+ padding-left: 0.5rem;
1806
+ height: 1.75rem;
1807
+ border: 1px solid #bbbec5;
1808
+ border-top-right-radius: 0.25rem;
1809
+ border-top-left-radius: 0.25rem;
1728
1810
  }
1729
- .api-docs-api-tree__subsection-header {
1730
- height: 2rem;
1731
- display: flex;
1732
- align-items: center;
1733
- gap: 0.875rem;
1734
- padding-inline: 0.5rem;
1811
+ .codebox_header_themeToggle {
1812
+ width: 0.75rem;
1813
+ min-width: 0.75rem;
1814
+ aspect-ratio: 1/1;
1815
+ border: 1px solid transparent;
1816
+ border-radius: 100%;
1735
1817
  cursor: pointer;
1736
- user-select: none;
1737
1818
  }
1738
- .api-docs-api-tree__subsection-header svg {
1739
- color: #6b7280;
1819
+ .codebox_header_themeToggle_dark {
1820
+ background-color: #455162;
1821
+ border-color: #6b7280;
1740
1822
  }
1741
- .api-docs-api-tree__subsection-title {
1742
- font-size: 0.75rem;
1743
- line-height: 0.875rem;
1744
- color: #616874;
1823
+ .codebox_header_themeToggle_light {
1824
+ background-color: #edf1fb;
1825
+ border-color: #6b7280;
1745
1826
  }
1746
- .api-docs-api-tree__endpoint {
1747
- display: flex;
1748
- align-items: center;
1749
- gap: 0.25rem;
1750
- padding: 0.5rem 0.75rem;
1751
- text-transform: capitalize;
1752
- width: 100%;
1827
+ .codebox_header_copyIcon {
1753
1828
  cursor: pointer;
1754
1829
  }
1755
- .api-docs-api-tree__endpoint[data-active=true] {
1756
- background-color: #f0f1f2;
1757
- }
1758
- .api-docs-api-tree__endpoint:hover {
1759
- background-color: #f3f4f6;
1760
- }
1761
- .api-docs-api-tree__endpoint-method {
1762
- font-size: 0.75rem;
1763
- line-height: 0.875rem;
1764
- font-weight: 400;
1765
- text-align: start;
1766
- }
1767
- .api-docs-api-tree__endpoint-name {
1768
- font-size: 0.75rem;
1769
- line-height: 0.875rem;
1770
- color: #3b3f46;
1771
- display: -webkit-box;
1772
- -webkit-box-orient: vertical;
1773
- -webkit-line-clamp: 1;
1774
- overflow: hidden;
1775
- text-overflow: ellipsis;
1776
- }
1777
- .api-docs-api-tree__endpoint--get .api-docs-api-tree__endpoint-method {
1778
- color: #3a6cd1;
1779
- }
1780
- .api-docs-api-tree__endpoint--post .api-docs-api-tree__endpoint-method {
1781
- color: #3aaa35;
1782
- }
1783
- .api-docs-api-tree__endpoint--put .api-docs-api-tree__endpoint-method {
1784
- color: #faad14;
1785
- }
1786
- .api-docs-api-tree__endpoint--delete .api-docs-api-tree__endpoint-method {
1787
- color: #da3f3f;
1788
- }
1789
- .api-docs-api-tree__endpoint--option .api-docs-api-tree__endpoint-method {
1790
- color: #495d97;
1791
- }
1792
- .api-docs-api-tree__endpoint--head .api-docs-api-tree__endpoint-method {
1793
- color: #9461c9;
1794
- }
1795
- .api-docs-api-tree__endpoint--patch .api-docs-api-tree__endpoint-method {
1796
- color: #58e2c2;
1830
+ .codebox :global(.custom-code-line),
1831
+ .codebox :global(.custom-code-line span) {
1832
+ font-family: "Cascadia Code", sans-serif;
1797
1833
  }.apiDocsAside {
1798
1834
  width: 22.5rem;
1799
1835
  padding: 3rem 1.5rem;
@@ -1880,42 +1916,6 @@ div.endBtnIcon {
1880
1916
  }
1881
1917
  .apiDocsAside :global(.multiSelectGroup .selectDisplay .displayValueContainer .iconsContainer) {
1882
1918
  padding-right: 0.75rem !important;
1883
- }.codebox {
1884
- border-radius: 0.25rem;
1885
- overflow: hidden;
1886
- }
1887
- .codebox_header {
1888
- display: flex;
1889
- align-items: center;
1890
- gap: 0.25rem;
1891
- padding-left: 0.5rem;
1892
- height: 1.75rem;
1893
- border: 1px solid #bbbec5;
1894
- border-top-right-radius: 0.25rem;
1895
- border-top-left-radius: 0.25rem;
1896
- }
1897
- .codebox_header_themeToggle {
1898
- width: 0.75rem;
1899
- min-width: 0.75rem;
1900
- aspect-ratio: 1/1;
1901
- border: 1px solid transparent;
1902
- border-radius: 100%;
1903
- cursor: pointer;
1904
- }
1905
- .codebox_header_themeToggle_dark {
1906
- background-color: #455162;
1907
- border-color: #6b7280;
1908
- }
1909
- .codebox_header_themeToggle_light {
1910
- background-color: #edf1fb;
1911
- border-color: #6b7280;
1912
- }
1913
- .codebox_header_copyIcon {
1914
- cursor: pointer;
1915
- }
1916
- .codebox :global(.custom-code-line),
1917
- .codebox :global(.custom-code-line span) {
1918
- font-family: "Cascadia Code", sans-serif;
1919
1919
  }.api-details-page {
1920
1920
  padding: 2rem;
1921
1921
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digi-frontend/dgate-api-documentation",
3
- "version": "1.0.70",
3
+ "version": "1.0.72",
4
4
  "main": "dist/src/index.js",
5
5
  "module": "dist/src/index.js",
6
6
  "types": "dist/types/index.d.ts",
package/variables.txt CHANGED
@@ -1,4 +1,4 @@
1
- export APP_VERSION=1.0.69
2
- export ECR_IMAGE=650046438355.dkr.ecr.eu-central-1.amazonaws.com/dgate-api-documentation:1.0.69-31088-develop
3
- export IMAGE_TAG=1.0.69-31088-develop
1
+ export APP_VERSION=1.0.71
2
+ export ECR_IMAGE=650046438355.dkr.ecr.eu-central-1.amazonaws.com/dgate-api-documentation:1.0.71-31090-develop
3
+ export IMAGE_TAG=1.0.71-31090-develop
4
4
  export TARGET_ENV=dev