@malloydata/malloy 0.0.96 → 0.0.97-dev231026184251
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/dist/malloy.d.ts +1 -0
- package/dist/malloy.js +3 -0
- package/package.json +1 -1
package/dist/malloy.d.ts
CHANGED
|
@@ -645,6 +645,7 @@ export declare class JSONField extends AtomicField {
|
|
|
645
645
|
export declare class UnsupportedField extends AtomicField {
|
|
646
646
|
private fieldUnsupportedDef;
|
|
647
647
|
constructor(fieldUnsupportedDef: FieldUnsupportedDef, parent: Explore, source?: AtomicField);
|
|
648
|
+
get rawType(): string | undefined;
|
|
648
649
|
}
|
|
649
650
|
export declare class StringField extends AtomicField {
|
|
650
651
|
private fieldStringDef;
|
package/dist/malloy.js
CHANGED
|
@@ -1349,6 +1349,9 @@ class UnsupportedField extends AtomicField {
|
|
|
1349
1349
|
super(fieldUnsupportedDef, parent, source);
|
|
1350
1350
|
this.fieldUnsupportedDef = fieldUnsupportedDef;
|
|
1351
1351
|
}
|
|
1352
|
+
get rawType() {
|
|
1353
|
+
return this.fieldUnsupportedDef.rawType;
|
|
1354
|
+
}
|
|
1352
1355
|
}
|
|
1353
1356
|
exports.UnsupportedField = UnsupportedField;
|
|
1354
1357
|
class StringField extends AtomicField {
|