Skip to content
This repository was archived by the owner on Feb 14, 2025. It is now read-only.

Commit

Permalink
update for thoughtspot 10.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
boonhapus committed Jan 6, 2025
1 parent 81e0508 commit 8e881ec
Show file tree
Hide file tree
Showing 2 changed files with 214 additions and 127 deletions.
39 changes: 37 additions & 2 deletions _generate/_proto_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@


# DEV NOTE @
# LAST UPDATE: 2024/11/10 , v10.3.0.cl
# LAST UPDATE: 2025/01/06 , v10.5.0.cl
# PROTO PATH: callosum/public/metadata/answer_spec.proto
# PROTO NAME: package entitylib;
#
Expand All @@ -76,6 +76,21 @@
optional Type type = 3;
}
}
// ====================================================
// Chip.ChipType
// ====================================================
message Chip {
enum ChipType {
FILTER = 0;
PARAMETER = 1;
}
required string object_id = 1;
required ChipType type = 2;
}
"""

# DEV NOTE @boonhapus
Expand Down Expand Up @@ -383,7 +398,7 @@


# DEV NOTE @boonhapus
# LAST UPDATE: 2024/11/10 , v10.3.0.cl
# LAST UPDATE: 2025/01/06 , v10.5.0.cl
# PROTO PATH: a3/monitor/public/monitor_rule.proto
# PROTO NAME: package a3.metric_monitor;
#
Expand Down Expand Up @@ -474,4 +489,24 @@
}
optional string personalised_view_id = 3;
}
// ====================================================
// AlertType
// ====================================================
enum AlertType {
Scheduled = 0;
Threshold = 1;
Anomaly = 2;
}
// ====================================================
// AttributeInfo
// ====================================================
message AttributeInfo {
optional string id = 1;
repeated string values = 2;
optional string answer_id = 3;
}
"""
Loading

0 comments on commit 8e881ec

Please sign in to comment.