@malloy-publisher/sdk 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.
@@ -216,12 +216,19 @@ export interface Connection {
216
216
  * @memberof Connection
217
217
  */
218
218
  'trinoConnection'?: TrinoConnection;
219
+ /**
220
+ *
221
+ * @type {MysqlConnection}
222
+ * @memberof Connection
223
+ */
224
+ 'mysqlConnection'?: MysqlConnection;
219
225
  }
220
226
  export declare const ConnectionTypeEnum: {
221
227
  readonly Postgres: "postgres";
222
228
  readonly Bigquery: "bigquery";
223
229
  readonly Snowflake: "snowflake";
224
230
  readonly Trino: "trino";
231
+ readonly Mysql: "mysql";
225
232
  };
226
233
  export type ConnectionTypeEnum = typeof ConnectionTypeEnum[keyof typeof ConnectionTypeEnum];
227
234
  /**
@@ -341,6 +348,43 @@ export interface ModelError {
341
348
  */
342
349
  'message'?: string;
343
350
  }
351
+ /**
352
+ *
353
+ * @export
354
+ * @interface MysqlConnection
355
+ */
356
+ export interface MysqlConnection {
357
+ /**
358
+ *
359
+ * @type {string}
360
+ * @memberof MysqlConnection
361
+ */
362
+ 'host'?: string;
363
+ /**
364
+ *
365
+ * @type {number}
366
+ * @memberof MysqlConnection
367
+ */
368
+ 'port'?: number;
369
+ /**
370
+ *
371
+ * @type {string}
372
+ * @memberof MysqlConnection
373
+ */
374
+ 'database'?: string;
375
+ /**
376
+ *
377
+ * @type {string}
378
+ * @memberof MysqlConnection
379
+ */
380
+ 'user'?: string;
381
+ /**
382
+ *
383
+ * @type {string}
384
+ * @memberof MysqlConnection
385
+ */
386
+ 'password'?: string;
387
+ }
344
388
  /**
345
389
  * Malloy Notebook metadata
346
390
  * @export
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@malloy-publisher/sdk",
3
3
  "description": "Malloy Publisher SDK",
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",