File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -230,19 +230,19 @@ message SetPublisherPublicKeys {
230
230
// Allow publisher to publish for the specified feeds.
231
231
message AddPublisherAllowedFeedIds {
232
232
// Must not be empty.
233
- repeated bytes allowed_feed_ids_to_add = 1 ;
233
+ repeated uint32 allowed_feed_ids_to_add = 1 ;
234
234
}
235
235
236
236
// Disallow publisher to publish for the specified feeds.
237
237
message RemovePublisherAllowedFeedIds {
238
238
// Must not be empty.
239
- repeated bytes allowed_feed_ids_to_remove = 1 ;
239
+ repeated uint32 allowed_feed_ids_to_remove = 1 ;
240
240
}
241
241
242
242
// Allow publisher to publish for only the specified feeds.
243
243
// Remove all previous allowances.
244
244
message SetPublisherAllowedFeedIds {
245
- repeated bytes allowed_feed_ids = 1 ;
245
+ repeated uint32 allowed_feed_ids = 1 ;
246
246
}
247
247
248
248
message SetPublisherActive {
@@ -317,6 +317,8 @@ message UpdateFeedProperties {
317
317
optional string market_schedule = 106 ;
318
318
// [optional]
319
319
optional FeedState state = 107 ;
320
+ // [required]
321
+ optional FeedKind kind = 108 ;
320
322
// [optional]
321
323
optional bool is_enabled_in_shard = 201 ;
322
324
}
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " pyth-lazer-publisher-sdk"
3
- version = " 0.13 .0"
3
+ version = " 0.14 .0"
4
4
edition = " 2021"
5
5
description = " Pyth Lazer Publisher SDK types."
6
6
license = " Apache-2.0"
You can’t perform that action at this time.
0 commit comments