@lightdash/common 0.1425.5 → 0.1426.1
Sign up to get free protection for your applications and to get access to all the features.
package/dist/types/projects.d.ts
CHANGED
@@ -145,7 +145,8 @@ export declare enum SupportedDbtVersions {
|
|
145
145
|
V1_5 = "v1.5",
|
146
146
|
V1_6 = "v1.6",
|
147
147
|
V1_7 = "v1.7",
|
148
|
-
V1_8 = "v1.8"
|
148
|
+
V1_8 = "v1.8",
|
149
|
+
V1_9 = "v1.9"
|
149
150
|
}
|
150
151
|
export declare const GetDbtManifestVersion: (dbtVersion: SupportedDbtVersions) => DbtManifestVersion;
|
151
152
|
export declare const DefaultSupportedDbtVersion = SupportedDbtVersions.V1_4;
|
package/dist/types/projects.js
CHANGED
@@ -49,6 +49,7 @@ var SupportedDbtVersions;
|
|
49
49
|
SupportedDbtVersions["V1_6"] = "v1.6";
|
50
50
|
SupportedDbtVersions["V1_7"] = "v1.7";
|
51
51
|
SupportedDbtVersions["V1_8"] = "v1.8";
|
52
|
+
SupportedDbtVersions["V1_9"] = "v1.9";
|
52
53
|
})(SupportedDbtVersions = exports.SupportedDbtVersions || (exports.SupportedDbtVersions = {}));
|
53
54
|
const GetDbtManifestVersion = (dbtVersion) => {
|
54
55
|
switch (dbtVersion) {
|
@@ -61,6 +62,7 @@ const GetDbtManifestVersion = (dbtVersion) => {
|
|
61
62
|
case SupportedDbtVersions.V1_7:
|
62
63
|
return dbt_1.DbtManifestVersion.V11;
|
63
64
|
case SupportedDbtVersions.V1_8:
|
65
|
+
case SupportedDbtVersions.V1_9:
|
64
66
|
return dbt_1.DbtManifestVersion.V12;
|
65
67
|
default:
|
66
68
|
(0, assertUnreachable_1.default)(dbtVersion, 'Missing dbt version manifest mapping');
|