@@ -931,6 +931,8 @@ export class PostgresEngineVersion {
931
931
public static readonly VER_10_21 = PostgresEngineVersion . of ( '10.21' , '10' , { s3Import : true , s3Export : true } ) ;
932
932
/** Version "10.22". */
933
933
public static readonly VER_10_22 = PostgresEngineVersion . of ( '10.22' , '10' , { s3Import : true , s3Export : true } ) ;
934
+ /** Version "10.23". */
935
+ public static readonly VER_10_23 = PostgresEngineVersion . of ( '10.23' , '10' , { s3Import : true , s3Export : true } ) ;
934
936
935
937
/** Version "11" (only a major version, without a specific minor version). */
936
938
public static readonly VER_11 = PostgresEngineVersion . of ( '11' , '11' , { s3Import : true } ) ;
@@ -966,6 +968,8 @@ export class PostgresEngineVersion {
966
968
public static readonly VER_11_16 = PostgresEngineVersion . of ( '11.16' , '11' , { s3Import : true , s3Export : true } ) ;
967
969
/** Version "11.17". */
968
970
public static readonly VER_11_17 = PostgresEngineVersion . of ( '11.17' , '11' , { s3Import : true , s3Export : true } ) ;
971
+ /** Version "11.18". */
972
+ public static readonly VER_11_18 = PostgresEngineVersion . of ( '11.18' , '11' , { s3Import : true , s3Export : true } ) ;
969
973
970
974
/** Version "12" (only a major version, without a specific minor version). */
971
975
public static readonly VER_12 = PostgresEngineVersion . of ( '12' , '12' , { s3Import : true } ) ;
@@ -991,6 +995,8 @@ export class PostgresEngineVersion {
991
995
public static readonly VER_12_11 = PostgresEngineVersion . of ( '12.11' , '12' , { s3Import : true , s3Export : true } ) ;
992
996
/** Version "12.12". */
993
997
public static readonly VER_12_12 = PostgresEngineVersion . of ( '12.12' , '12' , { s3Import : true , s3Export : true } ) ;
998
+ /** Version "12.13". */
999
+ public static readonly VER_12_13 = PostgresEngineVersion . of ( '12.13' , '12' , { s3Import : true , s3Export : true } ) ;
994
1000
995
1001
/** Version "13" (only a major version, without a specific minor version). */
996
1002
public static readonly VER_13 = PostgresEngineVersion . of ( '13' , '13' , { s3Import : true , s3Export : true } ) ;
@@ -1010,6 +1016,8 @@ export class PostgresEngineVersion {
1010
1016
public static readonly VER_13_7 = PostgresEngineVersion . of ( '13.7' , '13' , { s3Import : true , s3Export : true } ) ;
1011
1017
/** Version "13.8". */
1012
1018
public static readonly VER_13_8 = PostgresEngineVersion . of ( '13.8' , '13' , { s3Import : true , s3Export : true } ) ;
1019
+ /** Version "13.9". */
1020
+ public static readonly VER_13_9 = PostgresEngineVersion . of ( '13.9' , '13' , { s3Import : true , s3Export : true } ) ;
1013
1021
1014
1022
/** Version "14" (only a major version, without a specific minor version). */
1015
1023
public static readonly VER_14 = PostgresEngineVersion . of ( '14' , '14' , { s3Import : true , s3Export : true } ) ;
@@ -1023,6 +1031,8 @@ export class PostgresEngineVersion {
1023
1031
public static readonly VER_14_4 = PostgresEngineVersion . of ( '14.4' , '14' , { s3Import : true , s3Export : true } ) ;
1024
1032
/** Version "14.5". */
1025
1033
public static readonly VER_14_5 = PostgresEngineVersion . of ( '14.5' , '14' , { s3Import : true , s3Export : true } ) ;
1034
+ /** Version "14.6". */
1035
+ public static readonly VER_14_6 = PostgresEngineVersion . of ( '14.6' , '14' , { s3Import : true , s3Export : true } ) ;
1026
1036
1027
1037
/**
1028
1038
* Create a new PostgresEngineVersion with an arbitrary version.
0 commit comments