@malloy-publisher/app 0.0.75 → 0.0.76

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.
Files changed (2) hide show
  1. package/dist/api-doc.yaml +17 -1
  2. package/package.json +2 -2
package/dist/api-doc.yaml CHANGED
@@ -1093,7 +1093,7 @@ components:
1093
1093
  type: string
1094
1094
  type:
1095
1095
  type: string
1096
- enum: [postgres, bigquery, snowflake, trino]
1096
+ enum: [postgres, bigquery, snowflake, trino, mysql]
1097
1097
  attributes:
1098
1098
  $ref: "#/components/schemas/ConnectionAttributes"
1099
1099
  postgresConnection:
@@ -1104,6 +1104,8 @@ components:
1104
1104
  $ref: "#/components/schemas/SnowflakeConnection"
1105
1105
  trinoConnection:
1106
1106
  $ref: "#/components/schemas/TrinoConnection"
1107
+ mysqlConnection:
1108
+ $ref: "#/components/schemas/MysqlConnection"
1107
1109
 
1108
1110
  ConnectionAttributes:
1109
1111
  type: object
@@ -1133,6 +1135,20 @@ components:
1133
1135
  connectionString:
1134
1136
  type: string
1135
1137
 
1138
+ MysqlConnection:
1139
+ type: object
1140
+ properties:
1141
+ host:
1142
+ type: string
1143
+ port:
1144
+ type: integer
1145
+ database:
1146
+ type: string
1147
+ user:
1148
+ type: string
1149
+ password:
1150
+ type: string
1151
+
1136
1152
  BigqueryConnection:
1137
1153
  type: object
1138
1154
  properties:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@malloy-publisher/app",
3
3
  "description": "Malloy Publisher App",
4
- "version": "0.0.75",
4
+ "version": "0.0.76",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs.js",
7
7
  "module": "dist/index.es.js",
@@ -33,7 +33,7 @@
33
33
  "generate-api-types": ""
34
34
  },
35
35
  "dependencies": {
36
- "@malloy-publisher/sdk": "^v0.0.75",
36
+ "@malloy-publisher/sdk": "^v0.0.76",
37
37
  "@mui/icons-material": "^7.0.2",
38
38
  "@mui/material": "^7.0.2",
39
39
  "@vitejs/plugin-react": "^4.3.1",