@bendyline/gilde 0.1.44 → 0.1.46

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 (37) hide show
  1. package/authoring/chat-models/deepseek-r1-8b-q4.json +1 -1
  2. package/authoring/chat-models/gemma4-31b-q4.json +1 -1
  3. package/authoring/chat-models/gpt-oss-120b-q4.json +1 -1
  4. package/authoring/chat-models/gpt-oss-20b-q4.json +1 -1
  5. package/authoring/chat-models/lfm2.5-2.6b-q4.json +1 -1
  6. package/authoring/chat-models/llama3.2-3b-q4.json +1 -1
  7. package/authoring/chat-models/mistral-7b-q4.json +1 -1
  8. package/authoring/chat-models/mistral-medium-3.5-128b-q4.json +1 -1
  9. package/authoring/chat-models/nemotron3-nano-30b-q4.json +1 -1
  10. package/authoring/chat-models/nemotron3-super-120b-q4.json +1 -1
  11. package/authoring/chat-models/ornith1.5-35b-a3b-q4.json +150 -0
  12. package/authoring/chat-models/qwen3.5-2b-q4.json +1 -1
  13. package/authoring/chat-models/qwen3.5-4b-q4.json +1 -1
  14. package/authoring/chat-models/qwen3.5-9b-q4.json +1 -1
  15. package/authoring/chat-models/talkie-1930-13b-q4.json +1 -1
  16. package/data/chat-models/de/deepseek-r1-8b-q4/manifest.json +1 -1
  17. package/data/chat-models/ge/gemma4-31b-q4/manifest.json +1 -1
  18. package/data/chat-models/gp/gpt-oss-120b-q4/manifest.json +1 -1
  19. package/data/chat-models/gp/gpt-oss-20b-q4/manifest.json +1 -1
  20. package/data/chat-models/index.json +1 -1
  21. package/data/chat-models/lf/lfm2.5-2.6b-q4/manifest.json +1 -1
  22. package/data/chat-models/ll/llama3.2-3b-q4/manifest.json +1 -1
  23. package/data/chat-models/mi/mistral-7b-q4/manifest.json +1 -1
  24. package/data/chat-models/mi/mistral-medium-3.5-128b-q4/manifest.json +1 -1
  25. package/data/chat-models/ne/nemotron3-nano-30b-q4/manifest.json +1 -1
  26. package/data/chat-models/ne/nemotron3-super-120b-q4/manifest.json +1 -1
  27. package/data/chat-models/or/ornith1.5-35b-a3b-q4/manifest.json +208 -0
  28. package/data/chat-models/or/ornith1.5-35b-a3b-q4/versions/1.0.0/manifest.json +74 -0
  29. package/data/chat-models/qw/qwen3.5-2b-q4/manifest.json +1 -1
  30. package/data/chat-models/qw/qwen3.5-4b-q4/manifest.json +1 -1
  31. package/data/chat-models/qw/qwen3.5-9b-q4/manifest.json +1 -1
  32. package/data/chat-models/ta/talkie-1930-13b-q4/manifest.json +1 -1
  33. package/data/craftbook-templates/index.json +1 -1
  34. package/data/craftbook-templates/po/powerpoint-deck/versions/1.7.7/craftbook.json +404 -0
  35. package/data/craftbook-templates/po/powerpoint-deck/versions/1.7.7/test.json +241 -0
  36. package/package.json +1 -1
  37. package/schemas/connector-type-version.schema.json +231 -0
@@ -130,6 +130,237 @@
130
130
  "required": [
131
131
  "kind"
132
132
  ]
133
+ },
134
+ {
135
+ "type": "object",
136
+ "properties": {
137
+ "kind": {
138
+ "type": "string",
139
+ "const": "observations"
140
+ },
141
+ "tables": {
142
+ "minItems": 1,
143
+ "maxItems": 64,
144
+ "type": "array",
145
+ "items": {
146
+ "type": "object",
147
+ "properties": {
148
+ "schemaVersion": {
149
+ "type": "number",
150
+ "const": 1
151
+ },
152
+ "table": {
153
+ "type": "string",
154
+ "minLength": 1,
155
+ "maxLength": 120,
156
+ "pattern": "^[a-z0-9][a-z0-9_-]*$"
157
+ },
158
+ "title": {
159
+ "type": "string",
160
+ "minLength": 1,
161
+ "maxLength": 200
162
+ },
163
+ "description": {
164
+ "type": "string",
165
+ "maxLength": 2000
166
+ },
167
+ "grain": {
168
+ "type": "string",
169
+ "maxLength": 300
170
+ },
171
+ "timeColumn": {
172
+ "type": "string",
173
+ "maxLength": 120
174
+ },
175
+ "partitionColumn": {
176
+ "type": "string",
177
+ "maxLength": 120
178
+ },
179
+ "columns": {
180
+ "minItems": 1,
181
+ "maxItems": 512,
182
+ "type": "array",
183
+ "items": {
184
+ "type": "object",
185
+ "properties": {
186
+ "name": {
187
+ "type": "string",
188
+ "minLength": 1,
189
+ "maxLength": 120,
190
+ "pattern": "^[a-z_][a-z0-9_]*$"
191
+ },
192
+ "type": {
193
+ "type": "string",
194
+ "enum": [
195
+ "BOOLEAN",
196
+ "BIGINT",
197
+ "DOUBLE",
198
+ "VARCHAR",
199
+ "DATE",
200
+ "TIMESTAMP",
201
+ "JSON"
202
+ ]
203
+ },
204
+ "role": {
205
+ "default": "attribute",
206
+ "type": "string",
207
+ "enum": [
208
+ "time",
209
+ "dimension",
210
+ "measure",
211
+ "identifier",
212
+ "attribute"
213
+ ]
214
+ },
215
+ "description": {
216
+ "type": "string",
217
+ "maxLength": 500
218
+ },
219
+ "unit": {
220
+ "type": "string",
221
+ "maxLength": 60
222
+ },
223
+ "cardinalityHint": {
224
+ "type": "string",
225
+ "maxLength": 120
226
+ },
227
+ "examples": {
228
+ "maxItems": 8,
229
+ "type": "array",
230
+ "items": {
231
+ "type": "string",
232
+ "maxLength": 200
233
+ }
234
+ }
235
+ },
236
+ "required": [
237
+ "name",
238
+ "type"
239
+ ]
240
+ }
241
+ },
242
+ "measures": {
243
+ "default": [],
244
+ "maxItems": 64,
245
+ "type": "array",
246
+ "items": {
247
+ "type": "object",
248
+ "properties": {
249
+ "name": {
250
+ "type": "string",
251
+ "minLength": 1,
252
+ "maxLength": 120,
253
+ "pattern": "^[a-z_][a-z0-9_]*$"
254
+ },
255
+ "sql": {
256
+ "type": "string",
257
+ "minLength": 1,
258
+ "maxLength": 2000
259
+ },
260
+ "description": {
261
+ "type": "string",
262
+ "maxLength": 500
263
+ },
264
+ "unit": {
265
+ "type": "string",
266
+ "maxLength": 60
267
+ }
268
+ },
269
+ "required": [
270
+ "name",
271
+ "sql"
272
+ ]
273
+ }
274
+ },
275
+ "exemplars": {
276
+ "default": [],
277
+ "maxItems": 32,
278
+ "type": "array",
279
+ "items": {
280
+ "type": "object",
281
+ "properties": {
282
+ "question": {
283
+ "type": "string",
284
+ "minLength": 1,
285
+ "maxLength": 300
286
+ },
287
+ "sql": {
288
+ "type": "string",
289
+ "minLength": 1,
290
+ "maxLength": 4000
291
+ }
292
+ },
293
+ "required": [
294
+ "question",
295
+ "sql"
296
+ ]
297
+ }
298
+ },
299
+ "rollups": {
300
+ "default": [],
301
+ "maxItems": 32,
302
+ "type": "array",
303
+ "items": {
304
+ "type": "object",
305
+ "properties": {
306
+ "name": {
307
+ "type": "string",
308
+ "minLength": 1,
309
+ "maxLength": 120,
310
+ "pattern": "^[a-z_][a-z0-9_]*$"
311
+ },
312
+ "grain": {
313
+ "minItems": 1,
314
+ "maxItems": 16,
315
+ "type": "array",
316
+ "items": {
317
+ "type": "string",
318
+ "minLength": 1,
319
+ "maxLength": 120
320
+ }
321
+ },
322
+ "sql": {
323
+ "type": "string",
324
+ "minLength": 1,
325
+ "maxLength": 8000
326
+ },
327
+ "description": {
328
+ "type": "string",
329
+ "maxLength": 500
330
+ }
331
+ },
332
+ "required": [
333
+ "name",
334
+ "grain",
335
+ "sql"
336
+ ]
337
+ }
338
+ },
339
+ "retention": {
340
+ "type": "object",
341
+ "properties": {
342
+ "rawDays": {
343
+ "type": "integer",
344
+ "exclusiveMinimum": 0,
345
+ "maximum": 36500
346
+ }
347
+ }
348
+ },
349
+ "inferred": {
350
+ "type": "boolean"
351
+ }
352
+ },
353
+ "required": [
354
+ "schemaVersion",
355
+ "table",
356
+ "columns"
357
+ ]
358
+ }
359
+ }
360
+ },
361
+ "required": [
362
+ "kind"
363
+ ]
133
364
  }
134
365
  ]
135
366
  },