From 8126f2152f59544d375c22c48ca0bfc62d00f844 Mon Sep 17 00:00:00 2001 From: Jongmin Kim Date: Sat, 20 Jul 2024 23:29:23 +0900 Subject: [PATCH] feat: add data_table_id field to widget for cloning widget Signed-off-by: Jongmin Kim --- proto/spaceone/api/dashboard/v1/private_widget.proto | 6 ++++-- proto/spaceone/api/dashboard/v1/public_widget.proto | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/proto/spaceone/api/dashboard/v1/private_widget.proto b/proto/spaceone/api/dashboard/v1/private_widget.proto index 30bd29c55..4dbb3edd1 100644 --- a/proto/spaceone/api/dashboard/v1/private_widget.proto +++ b/proto/spaceone/api/dashboard/v1/private_widget.proto @@ -77,9 +77,11 @@ message CreatePrivateWidgetRequest { // +optional google.protobuf.Struct options = 7; // +optional - repeated google.protobuf.Struct data_tables = 8; + int32 data_table_id = 8; // +optional - google.protobuf.Struct tags = 9; + repeated google.protobuf.Struct data_tables = 9; + // +optional + google.protobuf.Struct tags = 10; } message UpdatePrivateWidgetRequest { diff --git a/proto/spaceone/api/dashboard/v1/public_widget.proto b/proto/spaceone/api/dashboard/v1/public_widget.proto index a9d6cd299..8a1651c5b 100644 --- a/proto/spaceone/api/dashboard/v1/public_widget.proto +++ b/proto/spaceone/api/dashboard/v1/public_widget.proto @@ -77,9 +77,11 @@ message CreatePublicWidgetRequest { // +optional google.protobuf.Struct options = 7; // +optional - repeated google.protobuf.Struct data_tables = 8; + int32 data_table_id = 8; // +optional - google.protobuf.Struct tags = 9; + repeated google.protobuf.Struct data_tables = 9; + // +optional + google.protobuf.Struct tags = 10; } message UpdatePublicWidgetRequest {