@malloy-publisher/app 0.0.241 → 0.0.243

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 +13 -7
  2. package/package.json +2 -2
package/dist/api-doc.yaml CHANGED
@@ -4141,25 +4141,31 @@ components:
4141
4141
  type: string
4142
4142
  description: Snowflake username for authentication
4143
4143
  password:
4144
- type: string
4144
+ type: ["string", "null"]
4145
4145
  description: Snowflake password for authentication
4146
4146
  privateKey:
4147
4147
  type: string
4148
4148
  description: Snowflake private key for authentication
4149
4149
  privateKeyPass:
4150
- type: string
4150
+ type: ["string", "null"]
4151
4151
  description: Passphrase for the Snowflake private key
4152
4152
  warehouse:
4153
4153
  type: string
4154
4154
  description: Snowflake warehouse name
4155
4155
  database:
4156
- type: string
4157
- description: Snowflake database name
4156
+ type: ["string", "null"]
4157
+ description:
4158
+ Snowflake database name. Omitted or null connects with no current
4159
+ database, so names must be fully qualified as
4160
+ DATABASE.SCHEMA.TABLE and schema discovery spans the account.
4158
4161
  schema:
4159
- type: string
4160
- description: Snowflake schema name
4162
+ type: ["string", "null"]
4163
+ description:
4164
+ Snowflake schema name. Sets the session default schema and forms part
4165
+ of the connection's identity, so it determines what a materialization
4166
+ build runs as. It does not restrict which schemas are discoverable.
4161
4167
  role:
4162
- type: string
4168
+ type: ["string", "null"]
4163
4169
  description: Snowflake role name
4164
4170
  responseTimeoutMilliseconds:
4165
4171
  type: integer
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@malloy-publisher/app",
3
3
  "description": "Malloy Publisher Console (the built-in web UI)",
4
- "version": "0.0.241",
4
+ "version": "0.0.243",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs.js",
7
7
  "module": "dist/index.es.js",
@@ -41,7 +41,7 @@
41
41
  "test:playwright:headed": "bunx playwright test --config=playwright.config.ts --headed"
42
42
  },
43
43
  "dependencies": {
44
- "@malloy-publisher/sdk": "^0.0.241",
44
+ "@malloy-publisher/sdk": "^0.0.243",
45
45
  "@mui/icons-material": "^7.0.2",
46
46
  "@mui/material": "^7.0.2",
47
47
  "@tanstack/react-query": "^5.59.16",