@malloydata/db-snowflake 0.0.199-dev241012152627 → 0.0.199

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-snowflake",
3
- "version": "0.0.199-dev241012152627",
3
+ "version": "0.0.199",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -21,7 +21,7 @@
21
21
  "prepublishOnly": "npm run build"
22
22
  },
23
23
  "dependencies": {
24
- "@malloydata/malloy": "^0.0.199-dev241012152627",
24
+ "@malloydata/malloy": "^0.0.199",
25
25
  "@types/snowflake-sdk": "^1.6.16",
26
26
  "generic-pool": "^3.9.0",
27
27
  "snowflake-sdk": "1.10.0",
@@ -37,7 +37,7 @@ import {
37
37
  SnowflakeDialect,
38
38
  TestableConnection,
39
39
  arrayEachFields,
40
- LeafAtomicDef,
40
+ LeafAtomicTypeDef,
41
41
  } from '@malloydata/malloy';
42
42
  import {BaseConnection} from '@malloydata/malloy/connection';
43
43
 
@@ -188,7 +188,7 @@ export class SnowflakeConnection
188
188
  if (value.isArray && type !== 'object') {
189
189
  // Apparently there can only be arrays of integers, strings, or unknowns?
190
190
  // TODO is this true or is this just all that got implemented?
191
- const malloyType: LeafAtomicDef =
191
+ const malloyType: LeafAtomicTypeDef =
192
192
  type === 'integer'
193
193
  ? {type: 'number', numberType: 'integer'}
194
194
  : type === 'varchar'