@@ -1633,6 +1633,10 @@ export class PostgresEngineVersion {
1633
1633
public static readonly VER_13_17 = PostgresEngineVersion . of ( '13.17' , '13' , { s3Import : true , s3Export : true } ) ;
1634
1634
/** Version "13.18". */
1635
1635
public static readonly VER_13_18 = PostgresEngineVersion . of ( '13.18' , '13' , { s3Import : true , s3Export : true } ) ;
1636
+ /** Version "13.19". */
1637
+ public static readonly VER_13_19 = PostgresEngineVersion . of ( '13.19' , '13' , { s3Import : true , s3Export : true } ) ;
1638
+ /** Version "13.20". */
1639
+ public static readonly VER_13_20 = PostgresEngineVersion . of ( '13.20' , '13' , { s3Import : true , s3Export : true } ) ;
1636
1640
1637
1641
/** Version "14" (only a major version, without a specific minor version). */
1638
1642
public static readonly VER_14 = PostgresEngineVersion . of ( '14' , '14' , { s3Import : true , s3Export : true } ) ;
@@ -1690,6 +1694,10 @@ export class PostgresEngineVersion {
1690
1694
public static readonly VER_14_14 = PostgresEngineVersion . of ( '14.14' , '14' , { s3Import : true , s3Export : true } ) ;
1691
1695
/** Version "14.15". */
1692
1696
public static readonly VER_14_15 = PostgresEngineVersion . of ( '14.15' , '14' , { s3Import : true , s3Export : true } ) ;
1697
+ /** Version "14.16". */
1698
+ public static readonly VER_14_16 = PostgresEngineVersion . of ( '14.16' , '14' , { s3Import : true , s3Export : true } ) ;
1699
+ /** Version "14.17". */
1700
+ public static readonly VER_14_17 = PostgresEngineVersion . of ( '14.17' , '14' , { s3Import : true , s3Export : true } ) ;
1693
1701
1694
1702
/** Version "15" (only a major version, without a specific minor version). */
1695
1703
public static readonly VER_15 = PostgresEngineVersion . of ( '15' , '15' , { s3Import : true , s3Export : true } ) ;
@@ -1717,6 +1725,10 @@ export class PostgresEngineVersion {
1717
1725
public static readonly VER_15_9 = PostgresEngineVersion . of ( '15.9' , '15' , { s3Import : true , s3Export : true } ) ;
1718
1726
/** Version "15.10". */
1719
1727
public static readonly VER_15_10 = PostgresEngineVersion . of ( '15.10' , '15' , { s3Import : true , s3Export : true } ) ;
1728
+ /** Version "15.11". */
1729
+ public static readonly VER_15_11 = PostgresEngineVersion . of ( '15.11' , '15' , { s3Import : true , s3Export : true } ) ;
1730
+ /** Version "15.12". */
1731
+ public static readonly VER_15_12 = PostgresEngineVersion . of ( '15.12' , '15' , { s3Import : true , s3Export : true } ) ;
1720
1732
1721
1733
/** Version "16" (only a major version, without a specific minor version). */
1722
1734
public static readonly VER_16 = PostgresEngineVersion . of ( '16' , '16' , { s3Import : true , s3Export : true } ) ;
@@ -1734,13 +1746,19 @@ export class PostgresEngineVersion {
1734
1746
public static readonly VER_16_6 = PostgresEngineVersion . of ( '16.6' , '16' , { s3Import : true , s3Export : true } ) ;
1735
1747
/** Version "16.7" */
1736
1748
public static readonly VER_16_7 = PostgresEngineVersion . of ( '16.7' , '16' , { s3Import : true , s3Export : true } ) ;
1749
+ /** Version "16.8" */
1750
+ public static readonly VER_16_8 = PostgresEngineVersion . of ( '16.8' , '16' , { s3Import : true , s3Export : true } ) ;
1737
1751
1738
1752
/** Version "17" (only a major version, without a specific minor version). */
1739
1753
public static readonly VER_17 = PostgresEngineVersion . of ( '17' , '17' , { s3Import : true , s3Export : true } ) ;
1740
1754
/** Version "17.1". */
1741
1755
public static readonly VER_17_1 = PostgresEngineVersion . of ( '17.1' , '17' , { s3Import : true , s3Export : true } ) ;
1742
1756
/** Version "17.2". */
1743
1757
public static readonly VER_17_2 = PostgresEngineVersion . of ( '17.2' , '17' , { s3Import : true , s3Export : true } ) ;
1758
+ /** Version "17.3". */
1759
+ public static readonly VER_17_3 = PostgresEngineVersion . of ( '17.3' , '17' , { s3Import : true , s3Export : true } ) ;
1760
+ /** Version "17.4". */
1761
+ public static readonly VER_17_4 = PostgresEngineVersion . of ( '17.4' , '17' , { s3Import : true , s3Export : true } ) ;
1744
1762
1745
1763
/**
1746
1764
* Create a new PostgresEngineVersion with an arbitrary version.
0 commit comments