@@ -1050,6 +1050,8 @@ export class PostgresEngineVersion {
1050
1050
public static readonly VER_11_18 = PostgresEngineVersion . of ( '11.18' , '11' , { s3Import : true , s3Export : true } ) ;
1051
1051
/** Version "11.19". */
1052
1052
public static readonly VER_11_19 = PostgresEngineVersion . of ( '11.19' , '11' , { s3Import : true , s3Export : true } ) ;
1053
+ /** Version "11.20". */
1054
+ public static readonly VER_11_20 = PostgresEngineVersion . of ( '11.20' , '11' , { s3Import : true , s3Export : true } ) ;
1053
1055
1054
1056
/** Version "12" (only a major version, without a specific minor version). */
1055
1057
public static readonly VER_12 = PostgresEngineVersion . of ( '12' , '12' , { s3Import : true } ) ;
@@ -1079,6 +1081,8 @@ export class PostgresEngineVersion {
1079
1081
public static readonly VER_12_13 = PostgresEngineVersion . of ( '12.13' , '12' , { s3Import : true , s3Export : true } ) ;
1080
1082
/** Version "12.14". */
1081
1083
public static readonly VER_12_14 = PostgresEngineVersion . of ( '12.14' , '12' , { s3Import : true , s3Export : true } ) ;
1084
+ /** Version "12.15". */
1085
+ public static readonly VER_12_15 = PostgresEngineVersion . of ( '12.15' , '12' , { s3Import : true , s3Export : true } ) ;
1082
1086
1083
1087
/** Version "13" (only a major version, without a specific minor version). */
1084
1088
public static readonly VER_13 = PostgresEngineVersion . of ( '13' , '13' , { s3Import : true , s3Export : true } ) ;
@@ -1102,6 +1106,8 @@ export class PostgresEngineVersion {
1102
1106
public static readonly VER_13_9 = PostgresEngineVersion . of ( '13.9' , '13' , { s3Import : true , s3Export : true } ) ;
1103
1107
/** Version "13.10". */
1104
1108
public static readonly VER_13_10 = PostgresEngineVersion . of ( '13.10' , '13' , { s3Import : true , s3Export : true } ) ;
1109
+ /** Version "13.11". */
1110
+ public static readonly VER_13_11 = PostgresEngineVersion . of ( '13.11' , '13' , { s3Import : true , s3Export : true } ) ;
1105
1111
1106
1112
/** Version "14" (only a major version, without a specific minor version). */
1107
1113
public static readonly VER_14 = PostgresEngineVersion . of ( '14' , '14' , { s3Import : true , s3Export : true } ) ;
@@ -1119,11 +1125,15 @@ export class PostgresEngineVersion {
1119
1125
public static readonly VER_14_6 = PostgresEngineVersion . of ( '14.6' , '14' , { s3Import : true , s3Export : true } ) ;
1120
1126
/** Version "14.7". */
1121
1127
public static readonly VER_14_7 = PostgresEngineVersion . of ( '14.7' , '14' , { s3Import : true , s3Export : true } ) ;
1128
+ /** Version "14.8". */
1129
+ public static readonly VER_14_8 = PostgresEngineVersion . of ( '14.8' , '14' , { s3Import : true , s3Export : true } ) ;
1122
1130
1123
1131
/** Version "15" (only a major version, without a specific minor version). */
1124
1132
public static readonly VER_15 = PostgresEngineVersion . of ( '15' , '15' , { s3Import : true , s3Export : true } ) ;
1125
1133
/** Version "15.2". */
1126
1134
public static readonly VER_15_2 = PostgresEngineVersion . of ( '15.2' , '15' , { s3Import : true , s3Export : true } ) ;
1135
+ /** Version "15.3". */
1136
+ public static readonly VER_15_3 = PostgresEngineVersion . of ( '15.3' , '15' , { s3Import : true , s3Export : true } ) ;
1127
1137
1128
1138
/**
1129
1139
* Create a new PostgresEngineVersion with an arbitrary version.
0 commit comments