@malloydata/db-duckdb 0.0.383 → 0.0.384

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/native.js +14 -0
  2. package/package.json +2 -2
package/dist/native.js CHANGED
@@ -42,6 +42,7 @@ const duckdb_connection_1 = require("./duckdb_connection");
42
42
  displayName: 'Security Policy',
43
43
  type: 'string',
44
44
  optional: true,
45
+ advanced: true,
45
46
  requireLiteralString: true,
46
47
  },
47
48
  {
@@ -49,72 +50,84 @@ const duckdb_connection_1 = require("./duckdb_connection");
49
50
  displayName: 'Allowed Directories',
50
51
  type: 'json',
51
52
  optional: true,
53
+ advanced: true,
52
54
  },
53
55
  {
54
56
  name: 'enableExternalAccess',
55
57
  displayName: 'Enable External Access',
56
58
  type: 'boolean',
57
59
  optional: true,
60
+ advanced: true,
58
61
  },
59
62
  {
60
63
  name: 'lockConfiguration',
61
64
  displayName: 'Lock Configuration',
62
65
  type: 'boolean',
63
66
  optional: true,
67
+ advanced: true,
64
68
  },
65
69
  {
66
70
  name: 'autoloadKnownExtensions',
67
71
  displayName: 'Autoload Known Extensions',
68
72
  type: 'boolean',
69
73
  optional: true,
74
+ advanced: true,
70
75
  },
71
76
  {
72
77
  name: 'autoinstallKnownExtensions',
73
78
  displayName: 'Autoinstall Known Extensions',
74
79
  type: 'boolean',
75
80
  optional: true,
81
+ advanced: true,
76
82
  },
77
83
  {
78
84
  name: 'allowCommunityExtensions',
79
85
  displayName: 'Allow Community Extensions',
80
86
  type: 'boolean',
81
87
  optional: true,
88
+ advanced: true,
82
89
  },
83
90
  {
84
91
  name: 'allowUnsignedExtensions',
85
92
  displayName: 'Allow Unsigned Extensions',
86
93
  type: 'boolean',
87
94
  optional: true,
95
+ advanced: true,
88
96
  },
89
97
  {
90
98
  name: 'tempFileEncryption',
91
99
  displayName: 'Temp File Encryption',
92
100
  type: 'boolean',
93
101
  optional: true,
102
+ advanced: true,
94
103
  },
95
104
  {
96
105
  name: 'threads',
97
106
  displayName: 'Threads',
98
107
  type: 'number',
99
108
  optional: true,
109
+ advanced: true,
100
110
  },
101
111
  {
102
112
  name: 'memoryLimit',
103
113
  displayName: 'Memory Limit',
104
114
  type: 'string',
105
115
  optional: true,
116
+ advanced: true,
106
117
  },
107
118
  {
108
119
  name: 'tempDirectory',
109
120
  displayName: 'Temp Directory',
110
121
  type: 'file',
111
122
  optional: true,
123
+ advanced: true,
112
124
  },
113
125
  {
114
126
  name: 'extensionDirectory',
115
127
  displayName: 'Extension Directory',
116
128
  type: 'file',
117
129
  optional: true,
130
+ advanced: true,
118
131
  },
119
132
  {
120
133
  name: 'motherDuckToken',
@@ -141,6 +154,7 @@ const duckdb_connection_1 = require("./duckdb_connection");
141
154
  displayName: 'Setup SQL',
142
155
  type: 'text',
143
156
  optional: true,
157
+ advanced: true,
144
158
  description: 'SQL statements to run when the connection is established',
145
159
  },
146
160
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-duckdb",
3
- "version": "0.0.383",
3
+ "version": "0.0.384",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -60,7 +60,7 @@
60
60
  "dependencies": {
61
61
  "@duckdb/duckdb-wasm": "1.33.1-dev13.0",
62
62
  "@duckdb/node-api": "1.4.4-r.1",
63
- "@malloydata/malloy": "0.0.383",
63
+ "@malloydata/malloy": "0.0.384",
64
64
  "@motherduck/wasm-client": "^0.6.6",
65
65
  "apache-arrow": "^17.0.0",
66
66
  "web-worker": "^1.3.0"