From 4911b780fb1efbb79415e3612b729ca4202ab98b Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Mon, 2 Oct 2023 09:38:50 -0500 Subject: [PATCH] rebuild manifest missed fields (#8755) * rebuild manifest missed fields * changelogs --- .../unreleased/Features-20230914-074429.yaml | 2 +- .../unreleased/Features-20230922-150754.yaml | 4 +- schemas/dbt/manifest/v11.json | 59 +++++++++++++++++++ 3 files changed, 62 insertions(+), 3 deletions(-) diff --git a/.changes/unreleased/Features-20230914-074429.yaml b/.changes/unreleased/Features-20230914-074429.yaml index 980f932b99c..aaba391af1c 100644 --- a/.changes/unreleased/Features-20230914-074429.yaml +++ b/.changes/unreleased/Features-20230914-074429.yaml @@ -4,4 +4,4 @@ body: Add support for optional label in semantic_models, measures, dimensions an time: 2023-09-14T07:44:29.828199-05:00 custom: Author: emmyoop - Issue: "8595" + Issue: 8595 8755 diff --git a/.changes/unreleased/Features-20230922-150754.yaml b/.changes/unreleased/Features-20230922-150754.yaml index 6492c3d934a..8245fb96761 100644 --- a/.changes/unreleased/Features-20230922-150754.yaml +++ b/.changes/unreleased/Features-20230922-150754.yaml @@ -2,5 +2,5 @@ kind: Features body: Support `fill_nulls_with` and `join_to_timespine` for metric nodes time: 2023-09-22T15:07:54.981752-07:00 custom: - Author: QMalcolm - Issue: "8593" + Author: QMalcolm emmyoop + Issue: 8593 8755 diff --git a/schemas/dbt/manifest/v11.json b/schemas/dbt/manifest/v11.json index a9dbd5cf32f..431641576eb 100644 --- a/schemas/dbt/manifest/v11.json +++ b/schemas/dbt/manifest/v11.json @@ -4610,6 +4610,21 @@ } ], "default": null + }, + "join_to_timespine": { + "type": "boolean", + "default": false + }, + "fill_nulls_with": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null } }, "additionalProperties": false, @@ -5137,6 +5152,17 @@ ], "default": null }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, "role": { "anyOf": [ { @@ -5257,6 +5283,17 @@ ], "default": null }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, "create_metric": { "type": "boolean", "default": false @@ -5381,6 +5418,17 @@ ], "default": null }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, "is_partition": { "type": "boolean", "default": false @@ -5521,6 +5569,17 @@ ], "default": null }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, "defaults": { "anyOf": [ {