tirtc-devtools-cli 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. package/README.md +52 -0
  2. package/USAGE.md +417 -0
  3. package/bin/tirtc-devtool.js +2 -0
  4. package/dist/app-server/protocol-client/index.d.ts +25 -0
  5. package/dist/app-server/protocol-client/index.js +114 -0
  6. package/dist/devtools/cli/src/config.d.ts +46 -0
  7. package/dist/devtools/cli/src/config.js +98 -0
  8. package/dist/devtools/cli/src/dummy.d.ts +0 -0
  9. package/dist/devtools/cli/src/dummy.js +1 -0
  10. package/dist/devtools/cli/src/embedded_paths.d.ts +7 -0
  11. package/dist/devtools/cli/src/embedded_paths.js +85 -0
  12. package/dist/devtools/cli/src/facade.d.ts +723 -0
  13. package/dist/devtools/cli/src/facade.js +194 -0
  14. package/dist/devtools/cli/src/ffmpeg_tool.d.ts +6 -0
  15. package/dist/devtools/cli/src/ffmpeg_tool.js +146 -0
  16. package/dist/devtools/cli/src/guide.d.ts +1 -0
  17. package/dist/devtools/cli/src/guide.js +49 -0
  18. package/dist/devtools/cli/src/index.d.ts +1 -0
  19. package/dist/devtools/cli/src/index.js +753 -0
  20. package/dist/devtools/cli/src/media_assets.d.ts +25 -0
  21. package/dist/devtools/cli/src/media_assets.js +121 -0
  22. package/dist/devtools/cli/src/session_manager.d.ts +25 -0
  23. package/dist/devtools/cli/src/session_manager.js +393 -0
  24. package/dist/devtools/cli/src/token_tool.d.ts +33 -0
  25. package/dist/devtools/cli/src/token_tool.js +217 -0
  26. package/dist/devtools/cli/src/transport.d.ts +30 -0
  27. package/dist/devtools/cli/src/transport.js +84 -0
  28. package/dist/dummy.d.ts +0 -0
  29. package/dist/dummy.js +1 -0
  30. package/dist/index.d.ts +1 -0
  31. package/dist/index.js +48 -0
  32. package/package.json +54 -0
  33. package/script/ensure_ffmpeg.sh +22 -0
  34. package/vendor/app-server/bin/native/macos-arm64/credential_napi.node +0 -0
  35. package/vendor/app-server/bin/native/macos-arm64/libcrypto.dylib +0 -0
  36. package/vendor/app-server/bin/native/macos-arm64/libssl.dylib +0 -0
  37. package/vendor/app-server/bin/native/macos-arm64/libtgrtc.dylib +0 -0
  38. package/vendor/app-server/bin/native/macos-arm64/runtime_host_napi.node +0 -0
  39. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/audio_codec.h +23 -0
  40. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/audio_frame.h +36 -0
  41. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/audio_io.h +56 -0
  42. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/audio_io_android.h +19 -0
  43. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/audio_io_apple.h +19 -0
  44. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/audio_io_harmony.h +19 -0
  45. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/audio_io_windows.h +19 -0
  46. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/audio_processing.h +56 -0
  47. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/audio_sample_rate.h +18 -0
  48. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/error.h +20 -0
  49. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/logging.h +53 -0
  50. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/media_codec.h +21 -0
  51. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/media_downlink.h +89 -0
  52. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/media_uplink.h +115 -0
  53. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/runtime.h +236 -0
  54. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/video_codec.h +57 -0
  55. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/video_frame.h +55 -0
  56. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/video_io.h +46 -0
  57. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/video_io_android.h +32 -0
  58. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/video_io_apple.h +34 -0
  59. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/video_io_harmony.h +32 -0
  60. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/video_io_windows.h +26 -0
  61. package/vendor/app-server/bin/runtime/linux-x64/include/tirtc/video_processing.h +34 -0
  62. package/vendor/app-server/bin/runtime/linux-x64/lib/libmatrix_runtime_audio.a +0 -0
  63. package/vendor/app-server/bin/runtime/linux-x64/lib/libmatrix_runtime_facade.a +0 -0
  64. package/vendor/app-server/bin/runtime/linux-x64/lib/libmatrix_runtime_foundation_logging.a +0 -0
  65. package/vendor/app-server/bin/runtime/linux-x64/lib/libmatrix_runtime_media.a +0 -0
  66. package/vendor/app-server/bin/runtime/linux-x64/lib/libmatrix_runtime_video.a +0 -0
  67. package/vendor/app-server/bin/runtime/linux-x64/lib/libwebrtc_apm.a +0 -0
  68. package/vendor/app-server/bin/runtime/linux-x64/lib/libxlog.a +0 -0
  69. package/vendor/app-server/bin/runtime/linux-x64/manifest.txt +34 -0
  70. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/audio.h +398 -0
  71. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/audio_codec.h +23 -0
  72. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/audio_frame.h +36 -0
  73. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/audio_io.h +56 -0
  74. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/audio_io_android.h +19 -0
  75. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/audio_io_apple.h +19 -0
  76. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/audio_io_harmony.h +19 -0
  77. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/audio_io_windows.h +19 -0
  78. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/audio_processing.h +56 -0
  79. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/audio_sample_rate.h +18 -0
  80. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/av.h +452 -0
  81. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/credential.h +34 -0
  82. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/error.h +30 -0
  83. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/foundation/build_info.h +27 -0
  84. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/http.h +57 -0
  85. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/logging.h +55 -0
  86. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/media_codec.h +21 -0
  87. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/media_downlink.h +95 -0
  88. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/media_fixture_av_sync.h +61 -0
  89. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/media_fixture_source.h +77 -0
  90. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/media_live_source.h +71 -0
  91. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/media_uplink.h +116 -0
  92. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/transport.h +481 -0
  93. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/trp.h +541 -0
  94. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/video_codec.h +58 -0
  95. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/video_frame.h +55 -0
  96. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/video_io.h +46 -0
  97. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/video_io_android.h +32 -0
  98. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/video_io_apple.h +47 -0
  99. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/video_io_harmony.h +32 -0
  100. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/video_io_windows.h +26 -0
  101. package/vendor/app-server/bin/runtime/macos-arm64/include/tirtc/video_processing.h +34 -0
  102. package/vendor/app-server/bin/runtime/macos-arm64/lib/libcrypto.a +0 -0
  103. package/vendor/app-server/bin/runtime/macos-arm64/lib/libcrypto.dylib +0 -0
  104. package/vendor/app-server/bin/runtime/macos-arm64/lib/libmatrix_runtime_audio.a +0 -0
  105. package/vendor/app-server/bin/runtime/macos-arm64/lib/libmatrix_runtime_credential.a +0 -0
  106. package/vendor/app-server/bin/runtime/macos-arm64/lib/libmatrix_runtime_facade.a +0 -0
  107. package/vendor/app-server/bin/runtime/macos-arm64/lib/libmatrix_runtime_foundation_http.a +0 -0
  108. package/vendor/app-server/bin/runtime/macos-arm64/lib/libmatrix_runtime_foundation_logging.a +0 -0
  109. package/vendor/app-server/bin/runtime/macos-arm64/lib/libmatrix_runtime_media.a +0 -0
  110. package/vendor/app-server/bin/runtime/macos-arm64/lib/libmatrix_runtime_transport.a +0 -0
  111. package/vendor/app-server/bin/runtime/macos-arm64/lib/libmatrix_runtime_video.a +0 -0
  112. package/vendor/app-server/bin/runtime/macos-arm64/lib/libssl.a +0 -0
  113. package/vendor/app-server/bin/runtime/macos-arm64/lib/libssl.dylib +0 -0
  114. package/vendor/app-server/bin/runtime/macos-arm64/lib/libwebrtc_apm.a +0 -0
  115. package/vendor/app-server/bin/runtime/macos-arm64/lib/libxlog.a +0 -0
  116. package/vendor/app-server/bin/runtime/macos-arm64/manifest.txt +50 -0
  117. package/vendor/app-server/bin/tirtc-devtool-host.js +2 -0
  118. package/vendor/app-server/dist/host/ArtifactManager.d.ts +18 -0
  119. package/vendor/app-server/dist/host/ArtifactManager.js +83 -0
  120. package/vendor/app-server/dist/host/HostProtocol.d.ts +107 -0
  121. package/vendor/app-server/dist/host/HostProtocol.js +256 -0
  122. package/vendor/app-server/dist/host/HostServer.d.ts +49 -0
  123. package/vendor/app-server/dist/host/HostServer.js +635 -0
  124. package/vendor/app-server/dist/host/HostState.d.ts +60 -0
  125. package/vendor/app-server/dist/host/HostState.js +19 -0
  126. package/vendor/app-server/dist/host/RuntimeAdapter.d.ts +81 -0
  127. package/vendor/app-server/dist/host/RuntimeAdapter.js +559 -0
  128. package/vendor/app-server/dist/host/RuntimeCredentialTokenIssuer.d.ts +30 -0
  129. package/vendor/app-server/dist/host/RuntimeCredentialTokenIssuer.js +224 -0
  130. package/vendor/app-server/dist/host/RuntimeReceiveWorker.d.ts +37 -0
  131. package/vendor/app-server/dist/host/RuntimeReceiveWorker.js +186 -0
  132. package/vendor/app-server/dist/host/RuntimeSendWorker.d.ts +42 -0
  133. package/vendor/app-server/dist/host/RuntimeSendWorker.js +274 -0
  134. package/vendor/app-server/dist/host/TokenTool.d.ts +15 -0
  135. package/vendor/app-server/dist/host/TokenTool.js +84 -0
  136. package/vendor/app-server/dist/host/WebPreviewGateway.d.ts +28 -0
  137. package/vendor/app-server/dist/host/WebPreviewGateway.js +815 -0
  138. package/vendor/app-server/dist/host/native/RuntimeCredentialTokenIssuer.d.ts +26 -0
  139. package/vendor/app-server/dist/host/native/RuntimeCredentialTokenIssuer.js +118 -0
  140. package/vendor/app-server/dist/host/native/RuntimeHostBridge.d.ts +19 -0
  141. package/vendor/app-server/dist/host/native/RuntimeHostBridge.js +141 -0
  142. package/vendor/app-server/dist/host/runtime_backed_preflight.d.ts +10 -0
  143. package/vendor/app-server/dist/host/runtime_backed_preflight.js +78 -0
  144. package/vendor/app-server/dist/host/tests/helpers/host_socket_client.d.ts +28 -0
  145. package/vendor/app-server/dist/host/tests/helpers/host_socket_client.js +85 -0
  146. package/vendor/app-server/dist/host/tests/helpers/runtime_e2e_local_config.d.ts +10 -0
  147. package/vendor/app-server/dist/host/tests/helpers/runtime_e2e_local_config.js +41 -0
  148. package/vendor/app-server/dist/host/tests/helpers/runtime_test_env.d.ts +11 -0
  149. package/vendor/app-server/dist/host/tests/helpers/runtime_test_env.js +32 -0
  150. package/vendor/app-server/dist/protocol/contract.d.ts +983 -0
  151. package/vendor/app-server/dist/protocol/contract.js +198 -0
  152. package/vendor/app-server/dist/protocol-client/index.d.ts +25 -0
  153. package/vendor/app-server/dist/protocol-client/index.js +114 -0
  154. package/vendor/app-server/dist/src/index.d.ts +1 -0
  155. package/vendor/app-server/dist/src/index.js +294 -0
  156. package/vendor/runtime/script/prepare_runtime_media_dataset.sh +427 -0
@@ -0,0 +1,983 @@
1
+ import { z } from 'zod';
2
+ export declare const InitializeRequestSchema: z.ZodObject<{
3
+ protocolVersion: z.ZodString;
4
+ clientInfo: z.ZodObject<{
5
+ name: z.ZodString;
6
+ version: z.ZodString;
7
+ title: z.ZodOptional<z.ZodString>;
8
+ }, "strip", z.ZodTypeAny, {
9
+ name: string;
10
+ version: string;
11
+ title?: string | undefined;
12
+ }, {
13
+ name: string;
14
+ version: string;
15
+ title?: string | undefined;
16
+ }>;
17
+ capabilities: z.ZodOptional<z.ZodObject<{
18
+ experimentalApi: z.ZodOptional<z.ZodBoolean>;
19
+ optOutNotificationMethods: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
20
+ }, "strip", z.ZodTypeAny, {
21
+ experimentalApi?: boolean | undefined;
22
+ optOutNotificationMethods?: string[] | undefined;
23
+ }, {
24
+ experimentalApi?: boolean | undefined;
25
+ optOutNotificationMethods?: string[] | undefined;
26
+ }>>;
27
+ }, "strip", z.ZodTypeAny, {
28
+ protocolVersion: string;
29
+ clientInfo: {
30
+ name: string;
31
+ version: string;
32
+ title?: string | undefined;
33
+ };
34
+ capabilities?: {
35
+ experimentalApi?: boolean | undefined;
36
+ optOutNotificationMethods?: string[] | undefined;
37
+ } | undefined;
38
+ }, {
39
+ protocolVersion: string;
40
+ clientInfo: {
41
+ name: string;
42
+ version: string;
43
+ title?: string | undefined;
44
+ };
45
+ capabilities?: {
46
+ experimentalApi?: boolean | undefined;
47
+ optOutNotificationMethods?: string[] | undefined;
48
+ } | undefined;
49
+ }>;
50
+ export declare const InitializeResultSchema: z.ZodObject<{
51
+ serverInfo: z.ZodObject<{
52
+ name: z.ZodString;
53
+ version: z.ZodString;
54
+ }, "strip", z.ZodTypeAny, {
55
+ name: string;
56
+ version: string;
57
+ }, {
58
+ name: string;
59
+ version: string;
60
+ }>;
61
+ protocolVersion: z.ZodString;
62
+ runtimeTarget: z.ZodString;
63
+ hostEndpoint: z.ZodString;
64
+ capabilities: z.ZodRecord<z.ZodString, z.ZodAny>;
65
+ }, "strip", z.ZodTypeAny, {
66
+ protocolVersion: string;
67
+ capabilities: Record<string, any>;
68
+ serverInfo: {
69
+ name: string;
70
+ version: string;
71
+ };
72
+ runtimeTarget: string;
73
+ hostEndpoint: string;
74
+ }, {
75
+ protocolVersion: string;
76
+ capabilities: Record<string, any>;
77
+ serverInfo: {
78
+ name: string;
79
+ version: string;
80
+ };
81
+ runtimeTarget: string;
82
+ hostEndpoint: string;
83
+ }>;
84
+ export declare const InitializedNotificationSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
85
+ export declare const ErrorResponseSchema: z.ZodObject<{
86
+ reasonCode: z.ZodString;
87
+ message: z.ZodString;
88
+ retryable: z.ZodBoolean;
89
+ }, "strip", z.ZodTypeAny, {
90
+ message: string;
91
+ reasonCode: string;
92
+ retryable: boolean;
93
+ }, {
94
+ message: string;
95
+ reasonCode: string;
96
+ retryable: boolean;
97
+ }>;
98
+ export declare const EventEnvelopeSchema: z.ZodObject<{
99
+ eventId: z.ZodString;
100
+ timestamp: z.ZodString;
101
+ family: z.ZodString;
102
+ kind: z.ZodString;
103
+ payload: z.ZodRecord<z.ZodString, z.ZodAny>;
104
+ }, "strip", z.ZodTypeAny, {
105
+ eventId: string;
106
+ timestamp: string;
107
+ family: string;
108
+ kind: string;
109
+ payload: Record<string, any>;
110
+ }, {
111
+ eventId: string;
112
+ timestamp: string;
113
+ family: string;
114
+ kind: string;
115
+ payload: Record<string, any>;
116
+ }>;
117
+ export declare const ServiceSnapshotSchema: z.ZodObject<{
118
+ state: z.ZodString;
119
+ serviceEntry: z.ZodOptional<z.ZodString>;
120
+ localEndpoint: z.ZodOptional<z.ZodString>;
121
+ startedAt: z.ZodOptional<z.ZodString>;
122
+ stoppedAt: z.ZodOptional<z.ZodString>;
123
+ reasonCode: z.ZodOptional<z.ZodString>;
124
+ }, "strip", z.ZodTypeAny, {
125
+ state: string;
126
+ reasonCode?: string | undefined;
127
+ serviceEntry?: string | undefined;
128
+ localEndpoint?: string | undefined;
129
+ startedAt?: string | undefined;
130
+ stoppedAt?: string | undefined;
131
+ }, {
132
+ state: string;
133
+ reasonCode?: string | undefined;
134
+ serviceEntry?: string | undefined;
135
+ localEndpoint?: string | undefined;
136
+ startedAt?: string | undefined;
137
+ stoppedAt?: string | undefined;
138
+ }>;
139
+ export declare const ConnectionSnapshotSchema: z.ZodObject<{
140
+ state: z.ZodString;
141
+ direction: z.ZodOptional<z.ZodString>;
142
+ peerId: z.ZodOptional<z.ZodString>;
143
+ connectedAt: z.ZodOptional<z.ZodString>;
144
+ disconnectedAt: z.ZodOptional<z.ZodString>;
145
+ reasonCode: z.ZodOptional<z.ZodString>;
146
+ }, "strip", z.ZodTypeAny, {
147
+ state: string;
148
+ reasonCode?: string | undefined;
149
+ direction?: string | undefined;
150
+ peerId?: string | undefined;
151
+ connectedAt?: string | undefined;
152
+ disconnectedAt?: string | undefined;
153
+ }, {
154
+ state: string;
155
+ reasonCode?: string | undefined;
156
+ direction?: string | undefined;
157
+ peerId?: string | undefined;
158
+ connectedAt?: string | undefined;
159
+ disconnectedAt?: string | undefined;
160
+ }>;
161
+ export declare const StreamLocalAssetsSchema: z.ZodObject<{
162
+ assets_dir: z.ZodString;
163
+ }, "strip", z.ZodTypeAny, {
164
+ assets_dir: string;
165
+ }, {
166
+ assets_dir: string;
167
+ }>;
168
+ export declare const StreamSourceSchema: z.ZodObject<{
169
+ mode: z.ZodLiteral<"local_assets">;
170
+ local_assets: z.ZodObject<{
171
+ assets_dir: z.ZodString;
172
+ }, "strip", z.ZodTypeAny, {
173
+ assets_dir: string;
174
+ }, {
175
+ assets_dir: string;
176
+ }>;
177
+ }, "strip", z.ZodTypeAny, {
178
+ mode: "local_assets";
179
+ local_assets: {
180
+ assets_dir: string;
181
+ };
182
+ }, {
183
+ mode: "local_assets";
184
+ local_assets: {
185
+ assets_dir: string;
186
+ };
187
+ }>;
188
+ export declare const StreamSnapshotSchema: z.ZodObject<{
189
+ streamId: z.ZodNumber;
190
+ media: z.ZodString;
191
+ direction: z.ZodString;
192
+ state: z.ZodString;
193
+ source: z.ZodOptional<z.ZodObject<{
194
+ mode: z.ZodLiteral<"local_assets">;
195
+ local_assets: z.ZodObject<{
196
+ assets_dir: z.ZodString;
197
+ }, "strip", z.ZodTypeAny, {
198
+ assets_dir: string;
199
+ }, {
200
+ assets_dir: string;
201
+ }>;
202
+ }, "strip", z.ZodTypeAny, {
203
+ mode: "local_assets";
204
+ local_assets: {
205
+ assets_dir: string;
206
+ };
207
+ }, {
208
+ mode: "local_assets";
209
+ local_assets: {
210
+ assets_dir: string;
211
+ };
212
+ }>>;
213
+ updatedAt: z.ZodString;
214
+ }, "strip", z.ZodTypeAny, {
215
+ state: string;
216
+ direction: string;
217
+ streamId: number;
218
+ media: string;
219
+ updatedAt: string;
220
+ source?: {
221
+ mode: "local_assets";
222
+ local_assets: {
223
+ assets_dir: string;
224
+ };
225
+ } | undefined;
226
+ }, {
227
+ state: string;
228
+ direction: string;
229
+ streamId: number;
230
+ media: string;
231
+ updatedAt: string;
232
+ source?: {
233
+ mode: "local_assets";
234
+ local_assets: {
235
+ assets_dir: string;
236
+ };
237
+ } | undefined;
238
+ }>;
239
+ export declare const ArtifactPathsSchema: z.ZodObject<{
240
+ rootPath: z.ZodString;
241
+ reportPath: z.ZodString;
242
+ logsPath: z.ZodString;
243
+ eventsPath: z.ZodString;
244
+ receivedMediaPath: z.ZodString;
245
+ prepareCachePath: z.ZodString;
246
+ }, "strip", z.ZodTypeAny, {
247
+ rootPath: string;
248
+ reportPath: string;
249
+ logsPath: string;
250
+ eventsPath: string;
251
+ receivedMediaPath: string;
252
+ prepareCachePath: string;
253
+ }, {
254
+ rootPath: string;
255
+ reportPath: string;
256
+ logsPath: string;
257
+ eventsPath: string;
258
+ receivedMediaPath: string;
259
+ prepareCachePath: string;
260
+ }>;
261
+ export declare const HostStatusSchema: z.ZodObject<{
262
+ hostEndpoint: z.ZodString;
263
+ serverVersion: z.ZodString;
264
+ protocolVersion: z.ZodString;
265
+ runtimeTarget: z.ZodString;
266
+ startedAt: z.ZodString;
267
+ service: z.ZodObject<{
268
+ state: z.ZodString;
269
+ serviceEntry: z.ZodOptional<z.ZodString>;
270
+ localEndpoint: z.ZodOptional<z.ZodString>;
271
+ startedAt: z.ZodOptional<z.ZodString>;
272
+ stoppedAt: z.ZodOptional<z.ZodString>;
273
+ reasonCode: z.ZodOptional<z.ZodString>;
274
+ }, "strip", z.ZodTypeAny, {
275
+ state: string;
276
+ reasonCode?: string | undefined;
277
+ serviceEntry?: string | undefined;
278
+ localEndpoint?: string | undefined;
279
+ startedAt?: string | undefined;
280
+ stoppedAt?: string | undefined;
281
+ }, {
282
+ state: string;
283
+ reasonCode?: string | undefined;
284
+ serviceEntry?: string | undefined;
285
+ localEndpoint?: string | undefined;
286
+ startedAt?: string | undefined;
287
+ stoppedAt?: string | undefined;
288
+ }>;
289
+ connection: z.ZodObject<{
290
+ state: z.ZodString;
291
+ direction: z.ZodOptional<z.ZodString>;
292
+ peerId: z.ZodOptional<z.ZodString>;
293
+ connectedAt: z.ZodOptional<z.ZodString>;
294
+ disconnectedAt: z.ZodOptional<z.ZodString>;
295
+ reasonCode: z.ZodOptional<z.ZodString>;
296
+ }, "strip", z.ZodTypeAny, {
297
+ state: string;
298
+ reasonCode?: string | undefined;
299
+ direction?: string | undefined;
300
+ peerId?: string | undefined;
301
+ connectedAt?: string | undefined;
302
+ disconnectedAt?: string | undefined;
303
+ }, {
304
+ state: string;
305
+ reasonCode?: string | undefined;
306
+ direction?: string | undefined;
307
+ peerId?: string | undefined;
308
+ connectedAt?: string | undefined;
309
+ disconnectedAt?: string | undefined;
310
+ }>;
311
+ artifactPaths: z.ZodObject<{
312
+ rootPath: z.ZodString;
313
+ reportPath: z.ZodString;
314
+ logsPath: z.ZodString;
315
+ eventsPath: z.ZodString;
316
+ receivedMediaPath: z.ZodString;
317
+ prepareCachePath: z.ZodString;
318
+ }, "strip", z.ZodTypeAny, {
319
+ rootPath: string;
320
+ reportPath: string;
321
+ logsPath: string;
322
+ eventsPath: string;
323
+ receivedMediaPath: string;
324
+ prepareCachePath: string;
325
+ }, {
326
+ rootPath: string;
327
+ reportPath: string;
328
+ logsPath: string;
329
+ eventsPath: string;
330
+ receivedMediaPath: string;
331
+ prepareCachePath: string;
332
+ }>;
333
+ }, "strip", z.ZodTypeAny, {
334
+ protocolVersion: string;
335
+ runtimeTarget: string;
336
+ hostEndpoint: string;
337
+ startedAt: string;
338
+ serverVersion: string;
339
+ service: {
340
+ state: string;
341
+ reasonCode?: string | undefined;
342
+ serviceEntry?: string | undefined;
343
+ localEndpoint?: string | undefined;
344
+ startedAt?: string | undefined;
345
+ stoppedAt?: string | undefined;
346
+ };
347
+ connection: {
348
+ state: string;
349
+ reasonCode?: string | undefined;
350
+ direction?: string | undefined;
351
+ peerId?: string | undefined;
352
+ connectedAt?: string | undefined;
353
+ disconnectedAt?: string | undefined;
354
+ };
355
+ artifactPaths: {
356
+ rootPath: string;
357
+ reportPath: string;
358
+ logsPath: string;
359
+ eventsPath: string;
360
+ receivedMediaPath: string;
361
+ prepareCachePath: string;
362
+ };
363
+ }, {
364
+ protocolVersion: string;
365
+ runtimeTarget: string;
366
+ hostEndpoint: string;
367
+ startedAt: string;
368
+ serverVersion: string;
369
+ service: {
370
+ state: string;
371
+ reasonCode?: string | undefined;
372
+ serviceEntry?: string | undefined;
373
+ localEndpoint?: string | undefined;
374
+ startedAt?: string | undefined;
375
+ stoppedAt?: string | undefined;
376
+ };
377
+ connection: {
378
+ state: string;
379
+ reasonCode?: string | undefined;
380
+ direction?: string | undefined;
381
+ peerId?: string | undefined;
382
+ connectedAt?: string | undefined;
383
+ disconnectedAt?: string | undefined;
384
+ };
385
+ artifactPaths: {
386
+ rootPath: string;
387
+ reportPath: string;
388
+ logsPath: string;
389
+ eventsPath: string;
390
+ receivedMediaPath: string;
391
+ prepareCachePath: string;
392
+ };
393
+ }>;
394
+ export declare const OutputAttachmentSchema: z.ZodObject<{
395
+ outputId: z.ZodString;
396
+ streamId: z.ZodNumber;
397
+ consumer: z.ZodString;
398
+ mediaView: z.ZodString;
399
+ format: z.ZodString;
400
+ delivery: z.ZodString;
401
+ target: z.ZodString;
402
+ attachedAt: z.ZodString;
403
+ preview: z.ZodOptional<z.ZodObject<{
404
+ url: z.ZodString;
405
+ token: z.ZodString;
406
+ endpoint: z.ZodString;
407
+ }, "strip", z.ZodTypeAny, {
408
+ url: string;
409
+ token: string;
410
+ endpoint: string;
411
+ }, {
412
+ url: string;
413
+ token: string;
414
+ endpoint: string;
415
+ }>>;
416
+ }, "strip", z.ZodTypeAny, {
417
+ streamId: number;
418
+ outputId: string;
419
+ consumer: string;
420
+ mediaView: string;
421
+ format: string;
422
+ delivery: string;
423
+ target: string;
424
+ attachedAt: string;
425
+ preview?: {
426
+ url: string;
427
+ token: string;
428
+ endpoint: string;
429
+ } | undefined;
430
+ }, {
431
+ streamId: number;
432
+ outputId: string;
433
+ consumer: string;
434
+ mediaView: string;
435
+ format: string;
436
+ delivery: string;
437
+ target: string;
438
+ attachedAt: string;
439
+ preview?: {
440
+ url: string;
441
+ token: string;
442
+ endpoint: string;
443
+ } | undefined;
444
+ }>;
445
+ export declare const CommandResponseSchema: z.ZodObject<{
446
+ sequenceNumber: z.ZodNumber;
447
+ payloadEncoding: z.ZodString;
448
+ payload: z.ZodString;
449
+ }, "strip", z.ZodTypeAny, {
450
+ payload: string;
451
+ sequenceNumber: number;
452
+ payloadEncoding: string;
453
+ }, {
454
+ payload: string;
455
+ sequenceNumber: number;
456
+ payloadEncoding: string;
457
+ }>;
458
+ export declare const CommandSendResultSchema: z.ZodObject<{
459
+ sequenceNumber: z.ZodNumber;
460
+ commandId: z.ZodNumber;
461
+ kind: z.ZodString;
462
+ acceptedAt: z.ZodString;
463
+ response: z.ZodOptional<z.ZodObject<{
464
+ sequenceNumber: z.ZodNumber;
465
+ payloadEncoding: z.ZodString;
466
+ payload: z.ZodString;
467
+ }, "strip", z.ZodTypeAny, {
468
+ payload: string;
469
+ sequenceNumber: number;
470
+ payloadEncoding: string;
471
+ }, {
472
+ payload: string;
473
+ sequenceNumber: number;
474
+ payloadEncoding: string;
475
+ }>>;
476
+ }, "strip", z.ZodTypeAny, {
477
+ kind: string;
478
+ sequenceNumber: number;
479
+ commandId: number;
480
+ acceptedAt: string;
481
+ response?: {
482
+ payload: string;
483
+ sequenceNumber: number;
484
+ payloadEncoding: string;
485
+ } | undefined;
486
+ }, {
487
+ kind: string;
488
+ sequenceNumber: number;
489
+ commandId: number;
490
+ acceptedAt: string;
491
+ response?: {
492
+ payload: string;
493
+ sequenceNumber: number;
494
+ payloadEncoding: string;
495
+ } | undefined;
496
+ }>;
497
+ export declare const ErrorSummarySchema: z.ZodObject<{
498
+ reasonCode: z.ZodString;
499
+ message: z.ZodString;
500
+ retryable: z.ZodBoolean;
501
+ }, "strip", z.ZodTypeAny, {
502
+ message: string;
503
+ reasonCode: string;
504
+ retryable: boolean;
505
+ }, {
506
+ message: string;
507
+ reasonCode: string;
508
+ retryable: boolean;
509
+ }>;
510
+ export declare const ReportDocumentSchema: z.ZodObject<{
511
+ status: z.ZodString;
512
+ reasonCode: z.ZodString;
513
+ summary: z.ZodString;
514
+ service: z.ZodObject<{
515
+ state: z.ZodString;
516
+ serviceEntry: z.ZodOptional<z.ZodString>;
517
+ localEndpoint: z.ZodOptional<z.ZodString>;
518
+ startedAt: z.ZodOptional<z.ZodString>;
519
+ stoppedAt: z.ZodOptional<z.ZodString>;
520
+ reasonCode: z.ZodOptional<z.ZodString>;
521
+ }, "strip", z.ZodTypeAny, {
522
+ state: string;
523
+ reasonCode?: string | undefined;
524
+ serviceEntry?: string | undefined;
525
+ localEndpoint?: string | undefined;
526
+ startedAt?: string | undefined;
527
+ stoppedAt?: string | undefined;
528
+ }, {
529
+ state: string;
530
+ reasonCode?: string | undefined;
531
+ serviceEntry?: string | undefined;
532
+ localEndpoint?: string | undefined;
533
+ startedAt?: string | undefined;
534
+ stoppedAt?: string | undefined;
535
+ }>;
536
+ connection: z.ZodObject<{
537
+ state: z.ZodString;
538
+ direction: z.ZodOptional<z.ZodString>;
539
+ peerId: z.ZodOptional<z.ZodString>;
540
+ connectedAt: z.ZodOptional<z.ZodString>;
541
+ disconnectedAt: z.ZodOptional<z.ZodString>;
542
+ reasonCode: z.ZodOptional<z.ZodString>;
543
+ }, "strip", z.ZodTypeAny, {
544
+ state: string;
545
+ reasonCode?: string | undefined;
546
+ direction?: string | undefined;
547
+ peerId?: string | undefined;
548
+ connectedAt?: string | undefined;
549
+ disconnectedAt?: string | undefined;
550
+ }, {
551
+ state: string;
552
+ reasonCode?: string | undefined;
553
+ direction?: string | undefined;
554
+ peerId?: string | undefined;
555
+ connectedAt?: string | undefined;
556
+ disconnectedAt?: string | undefined;
557
+ }>;
558
+ streams: z.ZodArray<z.ZodObject<{
559
+ streamId: z.ZodNumber;
560
+ media: z.ZodString;
561
+ direction: z.ZodString;
562
+ state: z.ZodString;
563
+ source: z.ZodOptional<z.ZodObject<{
564
+ mode: z.ZodLiteral<"local_assets">;
565
+ local_assets: z.ZodObject<{
566
+ assets_dir: z.ZodString;
567
+ }, "strip", z.ZodTypeAny, {
568
+ assets_dir: string;
569
+ }, {
570
+ assets_dir: string;
571
+ }>;
572
+ }, "strip", z.ZodTypeAny, {
573
+ mode: "local_assets";
574
+ local_assets: {
575
+ assets_dir: string;
576
+ };
577
+ }, {
578
+ mode: "local_assets";
579
+ local_assets: {
580
+ assets_dir: string;
581
+ };
582
+ }>>;
583
+ updatedAt: z.ZodString;
584
+ }, "strip", z.ZodTypeAny, {
585
+ state: string;
586
+ direction: string;
587
+ streamId: number;
588
+ media: string;
589
+ updatedAt: string;
590
+ source?: {
591
+ mode: "local_assets";
592
+ local_assets: {
593
+ assets_dir: string;
594
+ };
595
+ } | undefined;
596
+ }, {
597
+ state: string;
598
+ direction: string;
599
+ streamId: number;
600
+ media: string;
601
+ updatedAt: string;
602
+ source?: {
603
+ mode: "local_assets";
604
+ local_assets: {
605
+ assets_dir: string;
606
+ };
607
+ } | undefined;
608
+ }>, "many">;
609
+ artifacts: z.ZodObject<{
610
+ rootPath: z.ZodString;
611
+ reportPath: z.ZodString;
612
+ logsPath: z.ZodString;
613
+ eventsPath: z.ZodString;
614
+ receivedMediaPath: z.ZodString;
615
+ prepareCachePath: z.ZodString;
616
+ }, "strip", z.ZodTypeAny, {
617
+ rootPath: string;
618
+ reportPath: string;
619
+ logsPath: string;
620
+ eventsPath: string;
621
+ receivedMediaPath: string;
622
+ prepareCachePath: string;
623
+ }, {
624
+ rootPath: string;
625
+ reportPath: string;
626
+ logsPath: string;
627
+ eventsPath: string;
628
+ receivedMediaPath: string;
629
+ prepareCachePath: string;
630
+ }>;
631
+ lastError: z.ZodOptional<z.ZodObject<{
632
+ reasonCode: z.ZodString;
633
+ message: z.ZodString;
634
+ retryable: z.ZodBoolean;
635
+ }, "strip", z.ZodTypeAny, {
636
+ message: string;
637
+ reasonCode: string;
638
+ retryable: boolean;
639
+ }, {
640
+ message: string;
641
+ reasonCode: string;
642
+ retryable: boolean;
643
+ }>>;
644
+ }, "strip", z.ZodTypeAny, {
645
+ status: string;
646
+ reasonCode: string;
647
+ service: {
648
+ state: string;
649
+ reasonCode?: string | undefined;
650
+ serviceEntry?: string | undefined;
651
+ localEndpoint?: string | undefined;
652
+ startedAt?: string | undefined;
653
+ stoppedAt?: string | undefined;
654
+ };
655
+ connection: {
656
+ state: string;
657
+ reasonCode?: string | undefined;
658
+ direction?: string | undefined;
659
+ peerId?: string | undefined;
660
+ connectedAt?: string | undefined;
661
+ disconnectedAt?: string | undefined;
662
+ };
663
+ summary: string;
664
+ streams: {
665
+ state: string;
666
+ direction: string;
667
+ streamId: number;
668
+ media: string;
669
+ updatedAt: string;
670
+ source?: {
671
+ mode: "local_assets";
672
+ local_assets: {
673
+ assets_dir: string;
674
+ };
675
+ } | undefined;
676
+ }[];
677
+ artifacts: {
678
+ rootPath: string;
679
+ reportPath: string;
680
+ logsPath: string;
681
+ eventsPath: string;
682
+ receivedMediaPath: string;
683
+ prepareCachePath: string;
684
+ };
685
+ lastError?: {
686
+ message: string;
687
+ reasonCode: string;
688
+ retryable: boolean;
689
+ } | undefined;
690
+ }, {
691
+ status: string;
692
+ reasonCode: string;
693
+ service: {
694
+ state: string;
695
+ reasonCode?: string | undefined;
696
+ serviceEntry?: string | undefined;
697
+ localEndpoint?: string | undefined;
698
+ startedAt?: string | undefined;
699
+ stoppedAt?: string | undefined;
700
+ };
701
+ connection: {
702
+ state: string;
703
+ reasonCode?: string | undefined;
704
+ direction?: string | undefined;
705
+ peerId?: string | undefined;
706
+ connectedAt?: string | undefined;
707
+ disconnectedAt?: string | undefined;
708
+ };
709
+ summary: string;
710
+ streams: {
711
+ state: string;
712
+ direction: string;
713
+ streamId: number;
714
+ media: string;
715
+ updatedAt: string;
716
+ source?: {
717
+ mode: "local_assets";
718
+ local_assets: {
719
+ assets_dir: string;
720
+ };
721
+ } | undefined;
722
+ }[];
723
+ artifacts: {
724
+ rootPath: string;
725
+ reportPath: string;
726
+ logsPath: string;
727
+ eventsPath: string;
728
+ receivedMediaPath: string;
729
+ prepareCachePath: string;
730
+ };
731
+ lastError?: {
732
+ message: string;
733
+ reasonCode: string;
734
+ retryable: boolean;
735
+ } | undefined;
736
+ }>;
737
+ export declare const ArtifactExportResultSchema: z.ZodObject<{
738
+ outputPath: z.ZodString;
739
+ exportedAt: z.ZodString;
740
+ }, "strip", z.ZodTypeAny, {
741
+ outputPath: string;
742
+ exportedAt: string;
743
+ }, {
744
+ outputPath: string;
745
+ exportedAt: string;
746
+ }>;
747
+ export declare const ServiceStartRequestSchema: z.ZodObject<{
748
+ serviceEntry: z.ZodOptional<z.ZodString>;
749
+ license: z.ZodString;
750
+ timeoutMs: z.ZodNumber;
751
+ }, "strip", z.ZodTypeAny, {
752
+ license: string;
753
+ timeoutMs: number;
754
+ serviceEntry?: string | undefined;
755
+ }, {
756
+ license: string;
757
+ timeoutMs: number;
758
+ serviceEntry?: string | undefined;
759
+ }>;
760
+ export declare const ConnectionConnectRequestSchema: z.ZodEffects<z.ZodObject<{
761
+ serviceEntry: z.ZodOptional<z.ZodString>;
762
+ peerId: z.ZodString;
763
+ token: z.ZodOptional<z.ZodString>;
764
+ tokenMode: z.ZodOptional<z.ZodEnum<["manual", "auto"]>>;
765
+ autoToken: z.ZodOptional<z.ZodObject<{
766
+ openapiEntry: z.ZodOptional<z.ZodString>;
767
+ accessId: z.ZodString;
768
+ secretKey: z.ZodString;
769
+ localId: z.ZodOptional<z.ZodString>;
770
+ userTtlSeconds: z.ZodOptional<z.ZodNumber>;
771
+ channelTtlSeconds: z.ZodOptional<z.ZodNumber>;
772
+ }, "strip", z.ZodTypeAny, {
773
+ accessId: string;
774
+ secretKey: string;
775
+ openapiEntry?: string | undefined;
776
+ localId?: string | undefined;
777
+ userTtlSeconds?: number | undefined;
778
+ channelTtlSeconds?: number | undefined;
779
+ }, {
780
+ accessId: string;
781
+ secretKey: string;
782
+ openapiEntry?: string | undefined;
783
+ localId?: string | undefined;
784
+ userTtlSeconds?: number | undefined;
785
+ channelTtlSeconds?: number | undefined;
786
+ }>>;
787
+ timeoutMs: z.ZodNumber;
788
+ }, "strip", z.ZodTypeAny, {
789
+ peerId: string;
790
+ timeoutMs: number;
791
+ serviceEntry?: string | undefined;
792
+ token?: string | undefined;
793
+ tokenMode?: "manual" | "auto" | undefined;
794
+ autoToken?: {
795
+ accessId: string;
796
+ secretKey: string;
797
+ openapiEntry?: string | undefined;
798
+ localId?: string | undefined;
799
+ userTtlSeconds?: number | undefined;
800
+ channelTtlSeconds?: number | undefined;
801
+ } | undefined;
802
+ }, {
803
+ peerId: string;
804
+ timeoutMs: number;
805
+ serviceEntry?: string | undefined;
806
+ token?: string | undefined;
807
+ tokenMode?: "manual" | "auto" | undefined;
808
+ autoToken?: {
809
+ accessId: string;
810
+ secretKey: string;
811
+ openapiEntry?: string | undefined;
812
+ localId?: string | undefined;
813
+ userTtlSeconds?: number | undefined;
814
+ channelTtlSeconds?: number | undefined;
815
+ } | undefined;
816
+ }>, {
817
+ peerId: string;
818
+ timeoutMs: number;
819
+ serviceEntry?: string | undefined;
820
+ token?: string | undefined;
821
+ tokenMode?: "manual" | "auto" | undefined;
822
+ autoToken?: {
823
+ accessId: string;
824
+ secretKey: string;
825
+ openapiEntry?: string | undefined;
826
+ localId?: string | undefined;
827
+ userTtlSeconds?: number | undefined;
828
+ channelTtlSeconds?: number | undefined;
829
+ } | undefined;
830
+ }, {
831
+ peerId: string;
832
+ timeoutMs: number;
833
+ serviceEntry?: string | undefined;
834
+ token?: string | undefined;
835
+ tokenMode?: "manual" | "auto" | undefined;
836
+ autoToken?: {
837
+ accessId: string;
838
+ secretKey: string;
839
+ openapiEntry?: string | undefined;
840
+ localId?: string | undefined;
841
+ userTtlSeconds?: number | undefined;
842
+ channelTtlSeconds?: number | undefined;
843
+ } | undefined;
844
+ }>;
845
+ export declare const StreamSendStartRequestSchema: z.ZodObject<{
846
+ streamId: z.ZodNumber;
847
+ media: z.ZodString;
848
+ source: z.ZodObject<{
849
+ mode: z.ZodLiteral<"local_assets">;
850
+ local_assets: z.ZodObject<{
851
+ assets_dir: z.ZodString;
852
+ }, "strip", z.ZodTypeAny, {
853
+ assets_dir: string;
854
+ }, {
855
+ assets_dir: string;
856
+ }>;
857
+ }, "strip", z.ZodTypeAny, {
858
+ mode: "local_assets";
859
+ local_assets: {
860
+ assets_dir: string;
861
+ };
862
+ }, {
863
+ mode: "local_assets";
864
+ local_assets: {
865
+ assets_dir: string;
866
+ };
867
+ }>;
868
+ }, "strip", z.ZodTypeAny, {
869
+ streamId: number;
870
+ media: string;
871
+ source: {
872
+ mode: "local_assets";
873
+ local_assets: {
874
+ assets_dir: string;
875
+ };
876
+ };
877
+ }, {
878
+ streamId: number;
879
+ media: string;
880
+ source: {
881
+ mode: "local_assets";
882
+ local_assets: {
883
+ assets_dir: string;
884
+ };
885
+ };
886
+ }>;
887
+ export declare const OutputAttachRequestSchema: z.ZodObject<{
888
+ streamId: z.ZodNumber;
889
+ consumer: z.ZodString;
890
+ mediaView: z.ZodString;
891
+ format: z.ZodString;
892
+ delivery: z.ZodString;
893
+ targetPath: z.ZodOptional<z.ZodString>;
894
+ maxFiles: z.ZodOptional<z.ZodNumber>;
895
+ }, "strip", z.ZodTypeAny, {
896
+ streamId: number;
897
+ consumer: string;
898
+ mediaView: string;
899
+ format: string;
900
+ delivery: string;
901
+ targetPath?: string | undefined;
902
+ maxFiles?: number | undefined;
903
+ }, {
904
+ streamId: number;
905
+ consumer: string;
906
+ mediaView: string;
907
+ format: string;
908
+ delivery: string;
909
+ targetPath?: string | undefined;
910
+ maxFiles?: number | undefined;
911
+ }>;
912
+ export declare const CommandSendRequestSchema: z.ZodObject<{
913
+ commandId: z.ZodNumber;
914
+ kind: z.ZodString;
915
+ payloadEncoding: z.ZodString;
916
+ payload: z.ZodString;
917
+ replyToSequenceNumber: z.ZodOptional<z.ZodNumber>;
918
+ awaitResponse: z.ZodOptional<z.ZodBoolean>;
919
+ timeoutMs: z.ZodOptional<z.ZodNumber>;
920
+ }, "strip", z.ZodTypeAny, {
921
+ kind: string;
922
+ payload: string;
923
+ payloadEncoding: string;
924
+ commandId: number;
925
+ timeoutMs?: number | undefined;
926
+ replyToSequenceNumber?: number | undefined;
927
+ awaitResponse?: boolean | undefined;
928
+ }, {
929
+ kind: string;
930
+ payload: string;
931
+ payloadEncoding: string;
932
+ commandId: number;
933
+ timeoutMs?: number | undefined;
934
+ replyToSequenceNumber?: number | undefined;
935
+ awaitResponse?: boolean | undefined;
936
+ }>;
937
+ export declare const EventsSubscribeRequestSchema: z.ZodObject<{
938
+ families: z.ZodArray<z.ZodString, "many">;
939
+ }, "strip", z.ZodTypeAny, {
940
+ families: string[];
941
+ }, {
942
+ families: string[];
943
+ }>;
944
+ export declare const StreamRequestPolicySchema: z.ZodObject<{
945
+ mode: z.ZodEnum<["manual", "auto-if-bound"]>;
946
+ }, "strip", z.ZodTypeAny, {
947
+ mode: "manual" | "auto-if-bound";
948
+ }, {
949
+ mode: "manual" | "auto-if-bound";
950
+ }>;
951
+ export declare const StreamRequestPolicySetRequestSchema: z.ZodObject<{
952
+ mode: z.ZodEnum<["manual", "auto-if-bound"]>;
953
+ }, "strip", z.ZodTypeAny, {
954
+ mode: "manual" | "auto-if-bound";
955
+ }, {
956
+ mode: "manual" | "auto-if-bound";
957
+ }>;
958
+ export declare const DebugTokenQrcodeRequestSchema: z.ZodObject<{
959
+ payload: z.ZodString;
960
+ outputStem: z.ZodOptional<z.ZodString>;
961
+ }, "strip", z.ZodTypeAny, {
962
+ payload: string;
963
+ outputStem?: string | undefined;
964
+ }, {
965
+ payload: string;
966
+ outputStem?: string | undefined;
967
+ }>;
968
+ export declare const DebugTokenQrcodeResultSchema: z.ZodObject<{
969
+ payload: z.ZodString;
970
+ qrAsciiPath: z.ZodString;
971
+ qrPngPath: z.ZodString;
972
+ generatedAt: z.ZodString;
973
+ }, "strip", z.ZodTypeAny, {
974
+ payload: string;
975
+ qrAsciiPath: string;
976
+ qrPngPath: string;
977
+ generatedAt: string;
978
+ }, {
979
+ payload: string;
980
+ qrAsciiPath: string;
981
+ qrPngPath: string;
982
+ generatedAt: string;
983
+ }>;