-
Notifications
You must be signed in to change notification settings - Fork 325
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: list topics #3394
base: @anchpop/clean-up-api
Are you sure you want to change the base?
feat: list topics #3394
Conversation
fc0b2f1
to
147cc8a
Compare
8ed9ba7
to
25d8f70
Compare
147cc8a
to
77f82ee
Compare
@@ -822,6 +870,26 @@ type GetUpgradeJournalResponse = record { | |||
upgrade_journal_entry_count: opt nat64; | |||
}; | |||
|
|||
type ListTopicsRequest = record {}; | |||
|
|||
type BuiltInAndGenericFunctions = record { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's think about the name of this type. Maybe just NervousSystemFunctions
?
name : text; | ||
description : text; | ||
content : BuiltInAndGenericFunctions; | ||
nested_topics : vec TopicInfo; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure we want this. Let's agree on the design level if we need nested topics.
description : text; | ||
content : BuiltInAndGenericFunctions; | ||
nested_topics : vec TopicInfo; | ||
critical : bool; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit
critical : bool; | |
is_critical : bool; |
25d8f70
to
45da517
Compare
11fc3fd
to
583f14b
Compare
45da517
to
fd398fe
Compare
583f14b
to
4133d41
Compare
No description provided.