* feat(tracker): update message schema with BatchMetadata; separate message-related responsibilities; add message size * chore(docker): removing edge busybox, as the main repo updated * feat(backend): updated message protocol templates * feat(backend): added support of message size * feat(backend): implemented iterator for new message protocol (with message size) Co-authored-by: Alex Kaminskii <alex@openreplay.com>
13 lines
No EOL
498 B
Text
13 lines
No EOL
498 B
Text
// Auto-generated, do not edit
|
|
|
|
import type { Timed } from './timed'
|
|
import type { RawMessage } from './raw'
|
|
import type {
|
|
<%= $messages.select { |msg| msg.tracker || msg.replayer }.map { |msg| " Raw#{msg.name.snake_case.pascal_case}," }.join "\n" %>
|
|
} from './raw'
|
|
|
|
export type Message = RawMessage & Timed
|
|
|
|
<% $messages.select { |msg| msg.tracker || msg.replayer }.each do |msg| %>
|
|
export type <%= msg.name.snake_case.pascal_case %> = Raw<%= msg.name.snake_case.pascal_case %> & Timed
|
|
<% end %> |