@sqlanvil/core 1.4.1 → 1.5.0
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/README.md +3 -2
- package/bundle.d.ts +135 -2
- package/bundle.js +1 -1
- package/configs.proto +12 -0
- package/package.json +1 -1
package/configs.proto
CHANGED
|
@@ -1042,6 +1042,17 @@ message SupabaseConnection {
|
|
|
1042
1042
|
string connection_string = 4;
|
|
1043
1043
|
}
|
|
1044
1044
|
|
|
1045
|
+
message MysqlConnection {
|
|
1046
|
+
string host = 1;
|
|
1047
|
+
uint32 port = 2;
|
|
1048
|
+
string database = 3;
|
|
1049
|
+
string user = 4;
|
|
1050
|
+
string password = 5;
|
|
1051
|
+
|
|
1052
|
+
// SSL mode: "disable" | "require". MySQL/MariaDB over TLS.
|
|
1053
|
+
string ssl_mode = 6;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1045
1056
|
// WarehouseConfig — discriminated union over connection variants. The
|
|
1046
1057
|
// `kind:` YAML tag selects which `oneof` arm is unmarshalled.
|
|
1047
1058
|
//
|
|
@@ -1060,5 +1071,6 @@ message WarehouseConfig {
|
|
|
1060
1071
|
BigQueryConnection bigquery = 1;
|
|
1061
1072
|
PostgresConnection postgres = 2;
|
|
1062
1073
|
SupabaseConnection supabase = 3;
|
|
1074
|
+
MysqlConnection mysql = 4;
|
|
1063
1075
|
}
|
|
1064
1076
|
}
|