From b0616624e016b6b41d0c0997ceb51649781ce385 Mon Sep 17 00:00:00 2001 From: Michelle Ark Date: Mon, 30 Sep 2024 17:48:24 +0200 Subject: [PATCH] add unrendered_schema and unrendered_database to sources (#63) --- dbt/manifest/v12.json | 44 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/dbt/manifest/v12.json b/dbt/manifest/v12.json index 3527e4d..c58275f 100644 --- a/dbt/manifest/v12.json +++ b/dbt/manifest/v12.json @@ -8198,6 +8198,28 @@ }, "created_at": { "type": "number" + }, + "unrendered_database": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "unrendered_schema": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null } }, "additionalProperties": false, @@ -18101,6 +18123,28 @@ }, "created_at": { "type": "number" + }, + "unrendered_database": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "unrendered_schema": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null } }, "additionalProperties": false,