screenci 0.0.62 → 0.0.64

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 (71) hide show
  1. package/README.md +34 -15
  2. package/bin/screenci.js +2 -2
  3. package/dist/cli.d.ts +46 -1
  4. package/dist/cli.d.ts.map +1 -1
  5. package/dist/cli.js +463 -242
  6. package/dist/cli.js.map +1 -1
  7. package/dist/docs/manifest.d.ts +132 -70
  8. package/dist/docs/manifest.d.ts.map +1 -1
  9. package/dist/docs/manifest.js +46 -24
  10. package/dist/docs/manifest.js.map +1 -1
  11. package/dist/docs/videos.d.ts +1 -1
  12. package/dist/docs/videos.js +1 -1
  13. package/dist/docs/videos.js.map +1 -1
  14. package/dist/e2e/instrument.e2e.js +11 -11
  15. package/dist/e2e/instrument.e2e.js.map +1 -1
  16. package/dist/index.d.ts +6 -4
  17. package/dist/index.d.ts.map +1 -1
  18. package/dist/index.js +3 -2
  19. package/dist/index.js.map +1 -1
  20. package/dist/src/asset.d.ts +27 -0
  21. package/dist/src/asset.d.ts.map +1 -1
  22. package/dist/src/asset.js +46 -0
  23. package/dist/src/asset.js.map +1 -1
  24. package/dist/src/changeFocus.d.ts.map +1 -1
  25. package/dist/src/changeFocus.js +3 -3
  26. package/dist/src/changeFocus.js.map +1 -1
  27. package/dist/src/cue.d.ts +60 -13
  28. package/dist/src/cue.d.ts.map +1 -1
  29. package/dist/src/cue.js +153 -47
  30. package/dist/src/cue.js.map +1 -1
  31. package/dist/src/events.d.ts +56 -8
  32. package/dist/src/events.d.ts.map +1 -1
  33. package/dist/src/events.js +47 -1
  34. package/dist/src/events.js.map +1 -1
  35. package/dist/src/git.d.ts +15 -0
  36. package/dist/src/git.d.ts.map +1 -0
  37. package/dist/src/git.js +43 -0
  38. package/dist/src/git.js.map +1 -0
  39. package/dist/src/init.d.ts +9 -0
  40. package/dist/src/init.d.ts.map +1 -1
  41. package/dist/src/init.js +293 -113
  42. package/dist/src/init.js.map +1 -1
  43. package/dist/src/instrument.d.ts.map +1 -1
  44. package/dist/src/instrument.js +49 -125
  45. package/dist/src/instrument.js.map +1 -1
  46. package/dist/src/mouse.d.ts +1 -0
  47. package/dist/src/mouse.d.ts.map +1 -1
  48. package/dist/src/mouse.js +9 -3
  49. package/dist/src/mouse.js.map +1 -1
  50. package/dist/src/recording.d.ts +1 -1
  51. package/dist/src/recording.d.ts.map +1 -1
  52. package/dist/src/recordingData.d.ts +43 -1
  53. package/dist/src/recordingData.d.ts.map +1 -1
  54. package/dist/src/studio.d.ts +36 -0
  55. package/dist/src/studio.d.ts.map +1 -0
  56. package/dist/src/studio.js +39 -0
  57. package/dist/src/studio.js.map +1 -0
  58. package/dist/src/types.d.ts +141 -125
  59. package/dist/src/types.d.ts.map +1 -1
  60. package/dist/src/types.js +1 -0
  61. package/dist/src/types.js.map +1 -1
  62. package/dist/src/video.d.ts +2 -1
  63. package/dist/src/video.d.ts.map +1 -1
  64. package/dist/src/video.js.map +1 -1
  65. package/dist/src/voices.d.ts +3 -3
  66. package/dist/src/voices.d.ts.map +1 -1
  67. package/dist/tsconfig.tsbuildinfo +1 -1
  68. package/package.json +1 -1
  69. package/skills/screenci/SKILL.md +7 -8
  70. package/skills/screenci/references/init.md +1 -2
  71. package/skills/screenci/references/record.md +3 -9
@@ -3,40 +3,50 @@
3
3
  * Slugs are web-facing and stable even if source filenames change.
4
4
  */
5
5
  export declare const docsManifest: readonly [{
6
- readonly source: "installation.mdx";
6
+ readonly source: "overview.mdx";
7
7
  readonly slug: "docs";
8
8
  readonly section: "Getting Started";
9
9
  readonly order: 1;
10
- readonly navLabel: "Installation & first video";
11
- readonly title: "Installation & First Video";
12
- readonly description: "Install ScreenCI, initialize a project, run the starter video locally, and record your first final video.";
10
+ readonly navLabel: "Overview";
11
+ readonly title: "Overview";
12
+ readonly description: "How ScreenCI works: record locally, render in the service, and serve from a CDN. The service never sees your source code, and the CLI is open source.";
13
13
  readonly prev: null;
14
- readonly next: "docs/generating-videos";
14
+ readonly next: "docs/agent-integration";
15
15
  }, {
16
- readonly source: "generating-videos.mdx";
17
- readonly slug: "docs/generating-videos";
16
+ readonly source: "agent-integration.mdx";
17
+ readonly slug: "docs/agent-integration";
18
18
  readonly section: "Getting Started";
19
19
  readonly order: 2;
20
- readonly navLabel: "Generating videos";
21
- readonly title: "Generating Videos";
22
- readonly description: "Use Playwright codegen and AI-assisted workflows to generate a first ScreenCI draft, then refine it into a real video script.";
20
+ readonly navLabel: "Agent integration";
21
+ readonly title: "Agent Integration";
22
+ readonly description: "The recommended path: point a coding agent at the integration brief so it scaffolds ScreenCI, authors a video for your flow, and records it.";
23
23
  readonly prev: "docs";
24
+ readonly next: "docs/installation";
25
+ }, {
26
+ readonly source: "installation.mdx";
27
+ readonly slug: "docs/installation";
28
+ readonly section: "Getting Started";
29
+ readonly order: 3;
30
+ readonly navLabel: "Manual setup & first video";
31
+ readonly title: "Manual Setup & First Video";
32
+ readonly description: "Wire ScreenCI up by hand: initialize a project, run the starter video locally, and record your first final video.";
33
+ readonly prev: "docs/agent-integration";
24
34
  readonly next: "docs/write-video-scripts";
25
35
  }, {
26
36
  readonly source: "write-video-scripts.md";
27
37
  readonly slug: "docs/write-video-scripts";
28
38
  readonly section: "Getting Started";
29
- readonly order: 3;
39
+ readonly order: 4;
30
40
  readonly navLabel: "Video script basics";
31
41
  readonly title: "Video Script Basics";
32
42
  readonly description: "Author .video.ts files with Playwright-like APIs, ScreenCI narration and camera helpers, and workflow-aware pacing.";
33
- readonly prev: "docs/generating-videos";
43
+ readonly prev: "docs/installation";
34
44
  readonly next: "docs/ci-setup";
35
45
  }, {
36
46
  readonly source: "ci-setup.md";
37
47
  readonly slug: "docs/ci-setup";
38
48
  readonly section: "Getting Started";
39
- readonly order: 4;
49
+ readonly order: 5;
40
50
  readonly navLabel: "CI setup";
41
51
  readonly title: "CI Setup";
42
52
  readonly description: "Understand the generated GitHub Actions workflow, required secrets, and how to keep CI recordings deterministic.";
@@ -81,22 +91,32 @@ export declare const docsManifest: readonly [{
81
91
  readonly title: "Assets and Overlays";
82
92
  readonly description: "Add intro clips, corner logos, transition assets, and timed overlays to ScreenCI recordings.";
83
93
  readonly prev: "docs/guides/camera-and-zooming";
94
+ readonly next: "docs/guides/studio";
95
+ }, {
96
+ readonly source: "studio.md";
97
+ readonly slug: "docs/guides/studio";
98
+ readonly section: "Guides";
99
+ readonly order: 5;
100
+ readonly navLabel: "Studio";
101
+ readonly title: "Studio";
102
+ readonly description: "Remix render options, narration text, voices, and assets from the web app, or manage them entirely in Studio with createStudioNarration and createStudioAssets. Business tier.";
103
+ readonly prev: "docs/guides/assets-and-overlays";
84
104
  readonly next: "docs/guides/public-urls-and-embeds";
85
105
  }, {
86
106
  readonly source: "public-urls-and-embeds.md";
87
107
  readonly slug: "docs/guides/public-urls-and-embeds";
88
108
  readonly section: "Guides";
89
- readonly order: 5;
109
+ readonly order: 6;
90
110
  readonly navLabel: "Public URLs and embeds";
91
111
  readonly title: "Public URLs and Embeds";
92
112
  readonly description: "Enable public delivery for a video, understand stable language-specific URLs, and embed ScreenCI outputs in other sites.";
93
- readonly prev: "docs/guides/assets-and-overlays";
113
+ readonly prev: "docs/guides/studio";
94
114
  readonly next: "docs/guides/update-screenci";
95
115
  }, {
96
116
  readonly source: "update-screenci.mdx";
97
117
  readonly slug: "docs/guides/update-screenci";
98
118
  readonly section: "Guides";
99
- readonly order: 6;
119
+ readonly order: 7;
100
120
  readonly navLabel: "Update ScreenCI";
101
121
  readonly title: "Update ScreenCI";
102
122
  readonly description: "Upgrade the screenci package, refresh Playwright when needed, and verify that existing videos still behave as expected.";
@@ -105,8 +125,8 @@ export declare const docsManifest: readonly [{
105
125
  }, {
106
126
  readonly source: "cli.mdx";
107
127
  readonly slug: "docs/reference/cli";
108
- readonly section: "Guides";
109
- readonly order: 7;
128
+ readonly section: "Reference";
129
+ readonly order: 1;
110
130
  readonly navLabel: "CLI";
111
131
  readonly title: "CLI";
112
132
  readonly description: "Command reference for screenci init, test, record, project info, and public delivery commands.";
@@ -115,8 +135,8 @@ export declare const docsManifest: readonly [{
115
135
  }, {
116
136
  readonly source: "configuration.md";
117
137
  readonly slug: "docs/reference/configuration";
118
- readonly section: "Guides";
119
- readonly order: 8;
138
+ readonly section: "Reference";
139
+ readonly order: 2;
120
140
  readonly navLabel: "Configuration";
121
141
  readonly title: "Configuration";
122
142
  readonly description: "Configure project identity, file locations, rendering defaults, upload behavior, and Playwright integration in screenci.config.ts.";
@@ -125,50 +145,60 @@ export declare const docsManifest: readonly [{
125
145
  }, {
126
146
  readonly source: "public-delivery-api.md";
127
147
  readonly slug: "docs/reference/public-delivery-api";
128
- readonly section: "Guides";
129
- readonly order: 9;
148
+ readonly section: "Reference";
149
+ readonly order: 3;
130
150
  readonly navLabel: "Public delivery API";
131
151
  readonly title: "Public Delivery API";
132
152
  readonly description: "Technical reference for the unauthenticated endpoints that serve published videos, thumbnails, subtitles, and metadata.";
133
153
  readonly prev: "docs/reference/configuration";
134
154
  readonly next: "docs/reference/api";
135
155
  }];
136
- export declare const docsSections: readonly ["Getting Started", "Guides"];
156
+ export declare const docsSections: readonly ["Getting Started", "Guides", "Reference"];
137
157
  export declare function getDocBySlug(slug: string): {
138
- readonly source: "installation.mdx";
158
+ readonly source: "overview.mdx";
139
159
  readonly slug: "docs";
140
160
  readonly section: "Getting Started";
141
161
  readonly order: 1;
142
- readonly navLabel: "Installation & first video";
143
- readonly title: "Installation & First Video";
144
- readonly description: "Install ScreenCI, initialize a project, run the starter video locally, and record your first final video.";
162
+ readonly navLabel: "Overview";
163
+ readonly title: "Overview";
164
+ readonly description: "How ScreenCI works: record locally, render in the service, and serve from a CDN. The service never sees your source code, and the CLI is open source.";
145
165
  readonly prev: null;
146
- readonly next: "docs/generating-videos";
166
+ readonly next: "docs/agent-integration";
147
167
  } | {
148
- readonly source: "generating-videos.mdx";
149
- readonly slug: "docs/generating-videos";
168
+ readonly source: "agent-integration.mdx";
169
+ readonly slug: "docs/agent-integration";
150
170
  readonly section: "Getting Started";
151
171
  readonly order: 2;
152
- readonly navLabel: "Generating videos";
153
- readonly title: "Generating Videos";
154
- readonly description: "Use Playwright codegen and AI-assisted workflows to generate a first ScreenCI draft, then refine it into a real video script.";
172
+ readonly navLabel: "Agent integration";
173
+ readonly title: "Agent Integration";
174
+ readonly description: "The recommended path: point a coding agent at the integration brief so it scaffolds ScreenCI, authors a video for your flow, and records it.";
155
175
  readonly prev: "docs";
176
+ readonly next: "docs/installation";
177
+ } | {
178
+ readonly source: "installation.mdx";
179
+ readonly slug: "docs/installation";
180
+ readonly section: "Getting Started";
181
+ readonly order: 3;
182
+ readonly navLabel: "Manual setup & first video";
183
+ readonly title: "Manual Setup & First Video";
184
+ readonly description: "Wire ScreenCI up by hand: initialize a project, run the starter video locally, and record your first final video.";
185
+ readonly prev: "docs/agent-integration";
156
186
  readonly next: "docs/write-video-scripts";
157
187
  } | {
158
188
  readonly source: "write-video-scripts.md";
159
189
  readonly slug: "docs/write-video-scripts";
160
190
  readonly section: "Getting Started";
161
- readonly order: 3;
191
+ readonly order: 4;
162
192
  readonly navLabel: "Video script basics";
163
193
  readonly title: "Video Script Basics";
164
194
  readonly description: "Author .video.ts files with Playwright-like APIs, ScreenCI narration and camera helpers, and workflow-aware pacing.";
165
- readonly prev: "docs/generating-videos";
195
+ readonly prev: "docs/installation";
166
196
  readonly next: "docs/ci-setup";
167
197
  } | {
168
198
  readonly source: "ci-setup.md";
169
199
  readonly slug: "docs/ci-setup";
170
200
  readonly section: "Getting Started";
171
- readonly order: 4;
201
+ readonly order: 5;
172
202
  readonly navLabel: "CI setup";
173
203
  readonly title: "CI Setup";
174
204
  readonly description: "Understand the generated GitHub Actions workflow, required secrets, and how to keep CI recordings deterministic.";
@@ -213,22 +243,32 @@ export declare function getDocBySlug(slug: string): {
213
243
  readonly title: "Assets and Overlays";
214
244
  readonly description: "Add intro clips, corner logos, transition assets, and timed overlays to ScreenCI recordings.";
215
245
  readonly prev: "docs/guides/camera-and-zooming";
246
+ readonly next: "docs/guides/studio";
247
+ } | {
248
+ readonly source: "studio.md";
249
+ readonly slug: "docs/guides/studio";
250
+ readonly section: "Guides";
251
+ readonly order: 5;
252
+ readonly navLabel: "Studio";
253
+ readonly title: "Studio";
254
+ readonly description: "Remix render options, narration text, voices, and assets from the web app, or manage them entirely in Studio with createStudioNarration and createStudioAssets. Business tier.";
255
+ readonly prev: "docs/guides/assets-and-overlays";
216
256
  readonly next: "docs/guides/public-urls-and-embeds";
217
257
  } | {
218
258
  readonly source: "public-urls-and-embeds.md";
219
259
  readonly slug: "docs/guides/public-urls-and-embeds";
220
260
  readonly section: "Guides";
221
- readonly order: 5;
261
+ readonly order: 6;
222
262
  readonly navLabel: "Public URLs and embeds";
223
263
  readonly title: "Public URLs and Embeds";
224
264
  readonly description: "Enable public delivery for a video, understand stable language-specific URLs, and embed ScreenCI outputs in other sites.";
225
- readonly prev: "docs/guides/assets-and-overlays";
265
+ readonly prev: "docs/guides/studio";
226
266
  readonly next: "docs/guides/update-screenci";
227
267
  } | {
228
268
  readonly source: "update-screenci.mdx";
229
269
  readonly slug: "docs/guides/update-screenci";
230
270
  readonly section: "Guides";
231
- readonly order: 6;
271
+ readonly order: 7;
232
272
  readonly navLabel: "Update ScreenCI";
233
273
  readonly title: "Update ScreenCI";
234
274
  readonly description: "Upgrade the screenci package, refresh Playwright when needed, and verify that existing videos still behave as expected.";
@@ -237,8 +277,8 @@ export declare function getDocBySlug(slug: string): {
237
277
  } | {
238
278
  readonly source: "cli.mdx";
239
279
  readonly slug: "docs/reference/cli";
240
- readonly section: "Guides";
241
- readonly order: 7;
280
+ readonly section: "Reference";
281
+ readonly order: 1;
242
282
  readonly navLabel: "CLI";
243
283
  readonly title: "CLI";
244
284
  readonly description: "Command reference for screenci init, test, record, project info, and public delivery commands.";
@@ -247,8 +287,8 @@ export declare function getDocBySlug(slug: string): {
247
287
  } | {
248
288
  readonly source: "configuration.md";
249
289
  readonly slug: "docs/reference/configuration";
250
- readonly section: "Guides";
251
- readonly order: 8;
290
+ readonly section: "Reference";
291
+ readonly order: 2;
252
292
  readonly navLabel: "Configuration";
253
293
  readonly title: "Configuration";
254
294
  readonly description: "Configure project identity, file locations, rendering defaults, upload behavior, and Playwright integration in screenci.config.ts.";
@@ -257,8 +297,8 @@ export declare function getDocBySlug(slug: string): {
257
297
  } | {
258
298
  readonly source: "public-delivery-api.md";
259
299
  readonly slug: "docs/reference/public-delivery-api";
260
- readonly section: "Guides";
261
- readonly order: 9;
300
+ readonly section: "Reference";
301
+ readonly order: 3;
262
302
  readonly navLabel: "Public delivery API";
263
303
  readonly title: "Public Delivery API";
264
304
  readonly description: "Technical reference for the unauthenticated endpoints that serve published videos, thumbnails, subtitles, and metadata.";
@@ -268,43 +308,54 @@ export declare function getDocBySlug(slug: string): {
268
308
  export declare function getOutputPathFromSlug(slug: string): string;
269
309
  export declare function getGeneratedDocsManifest(): ({
270
310
  outputPath: string;
271
- source: "installation.mdx";
311
+ source: "overview.mdx";
272
312
  slug: "docs";
273
313
  section: "Getting Started";
274
314
  order: 1;
275
- navLabel: "Installation & first video";
276
- title: "Installation & First Video";
277
- description: "Install ScreenCI, initialize a project, run the starter video locally, and record your first final video.";
315
+ navLabel: "Overview";
316
+ title: "Overview";
317
+ description: "How ScreenCI works: record locally, render in the service, and serve from a CDN. The service never sees your source code, and the CLI is open source.";
278
318
  prev: null;
279
- next: "docs/generating-videos";
319
+ next: "docs/agent-integration";
280
320
  } | {
281
321
  outputPath: string;
282
- source: "generating-videos.mdx";
283
- slug: "docs/generating-videos";
322
+ source: "agent-integration.mdx";
323
+ slug: "docs/agent-integration";
284
324
  section: "Getting Started";
285
325
  order: 2;
286
- navLabel: "Generating videos";
287
- title: "Generating Videos";
288
- description: "Use Playwright codegen and AI-assisted workflows to generate a first ScreenCI draft, then refine it into a real video script.";
326
+ navLabel: "Agent integration";
327
+ title: "Agent Integration";
328
+ description: "The recommended path: point a coding agent at the integration brief so it scaffolds ScreenCI, authors a video for your flow, and records it.";
289
329
  prev: "docs";
330
+ next: "docs/installation";
331
+ } | {
332
+ outputPath: string;
333
+ source: "installation.mdx";
334
+ slug: "docs/installation";
335
+ section: "Getting Started";
336
+ order: 3;
337
+ navLabel: "Manual setup & first video";
338
+ title: "Manual Setup & First Video";
339
+ description: "Wire ScreenCI up by hand: initialize a project, run the starter video locally, and record your first final video.";
340
+ prev: "docs/agent-integration";
290
341
  next: "docs/write-video-scripts";
291
342
  } | {
292
343
  outputPath: string;
293
344
  source: "write-video-scripts.md";
294
345
  slug: "docs/write-video-scripts";
295
346
  section: "Getting Started";
296
- order: 3;
347
+ order: 4;
297
348
  navLabel: "Video script basics";
298
349
  title: "Video Script Basics";
299
350
  description: "Author .video.ts files with Playwright-like APIs, ScreenCI narration and camera helpers, and workflow-aware pacing.";
300
- prev: "docs/generating-videos";
351
+ prev: "docs/installation";
301
352
  next: "docs/ci-setup";
302
353
  } | {
303
354
  outputPath: string;
304
355
  source: "ci-setup.md";
305
356
  slug: "docs/ci-setup";
306
357
  section: "Getting Started";
307
- order: 4;
358
+ order: 5;
308
359
  navLabel: "CI setup";
309
360
  title: "CI Setup";
310
361
  description: "Understand the generated GitHub Actions workflow, required secrets, and how to keep CI recordings deterministic.";
@@ -353,24 +404,35 @@ export declare function getGeneratedDocsManifest(): ({
353
404
  title: "Assets and Overlays";
354
405
  description: "Add intro clips, corner logos, transition assets, and timed overlays to ScreenCI recordings.";
355
406
  prev: "docs/guides/camera-and-zooming";
407
+ next: "docs/guides/studio";
408
+ } | {
409
+ outputPath: string;
410
+ source: "studio.md";
411
+ slug: "docs/guides/studio";
412
+ section: "Guides";
413
+ order: 5;
414
+ navLabel: "Studio";
415
+ title: "Studio";
416
+ description: "Remix render options, narration text, voices, and assets from the web app, or manage them entirely in Studio with createStudioNarration and createStudioAssets. Business tier.";
417
+ prev: "docs/guides/assets-and-overlays";
356
418
  next: "docs/guides/public-urls-and-embeds";
357
419
  } | {
358
420
  outputPath: string;
359
421
  source: "public-urls-and-embeds.md";
360
422
  slug: "docs/guides/public-urls-and-embeds";
361
423
  section: "Guides";
362
- order: 5;
424
+ order: 6;
363
425
  navLabel: "Public URLs and embeds";
364
426
  title: "Public URLs and Embeds";
365
427
  description: "Enable public delivery for a video, understand stable language-specific URLs, and embed ScreenCI outputs in other sites.";
366
- prev: "docs/guides/assets-and-overlays";
428
+ prev: "docs/guides/studio";
367
429
  next: "docs/guides/update-screenci";
368
430
  } | {
369
431
  outputPath: string;
370
432
  source: "update-screenci.mdx";
371
433
  slug: "docs/guides/update-screenci";
372
434
  section: "Guides";
373
- order: 6;
435
+ order: 7;
374
436
  navLabel: "Update ScreenCI";
375
437
  title: "Update ScreenCI";
376
438
  description: "Upgrade the screenci package, refresh Playwright when needed, and verify that existing videos still behave as expected.";
@@ -380,8 +442,8 @@ export declare function getGeneratedDocsManifest(): ({
380
442
  outputPath: string;
381
443
  source: "cli.mdx";
382
444
  slug: "docs/reference/cli";
383
- section: "Guides";
384
- order: 7;
445
+ section: "Reference";
446
+ order: 1;
385
447
  navLabel: "CLI";
386
448
  title: "CLI";
387
449
  description: "Command reference for screenci init, test, record, project info, and public delivery commands.";
@@ -391,8 +453,8 @@ export declare function getGeneratedDocsManifest(): ({
391
453
  outputPath: string;
392
454
  source: "configuration.md";
393
455
  slug: "docs/reference/configuration";
394
- section: "Guides";
395
- order: 8;
456
+ section: "Reference";
457
+ order: 2;
396
458
  navLabel: "Configuration";
397
459
  title: "Configuration";
398
460
  description: "Configure project identity, file locations, rendering defaults, upload behavior, and Playwright integration in screenci.config.ts.";
@@ -402,8 +464,8 @@ export declare function getGeneratedDocsManifest(): ({
402
464
  outputPath: string;
403
465
  source: "public-delivery-api.md";
404
466
  slug: "docs/reference/public-delivery-api";
405
- section: "Guides";
406
- order: 9;
467
+ section: "Reference";
468
+ order: 3;
407
469
  navLabel: "Public delivery API";
408
470
  title: "Public Delivery API";
409
471
  description: "Technical reference for the unauthenticated endpoints that serve published videos, thumbnails, subtitles, and metadata.";
@@ -418,12 +480,12 @@ type TypedocSidebarItem = {
418
480
  attrs?: Record<string, unknown>;
419
481
  };
420
482
  export declare function getDocsSidebarConfig(typedocSidebarGroup?: TypedocSidebarItem | null): {
421
- label: "Getting Started" | "Guides";
483
+ label: "Getting Started" | "Guides" | "Reference";
422
484
  translations: {};
423
485
  collapsed: boolean;
424
486
  items: ({
425
- label: "Installation & first video" | "Generating videos" | "Video script basics" | "CI setup" | "Page instrumentation" | "Narration and localization" | "Camera and zooming" | "Assets and overlays" | "Public URLs and embeds" | "Update ScreenCI" | "CLI" | "Configuration" | "Public delivery API";
426
- slug: "docs" | "docs/generating-videos" | "docs/write-video-scripts" | "docs/ci-setup" | "docs/guides/page-instrumentation" | "docs/guides/narration-and-localization" | "docs/guides/camera-and-zooming" | "docs/guides/assets-and-overlays" | "docs/guides/public-urls-and-embeds" | "docs/guides/update-screenci" | "docs/reference/cli" | "docs/reference/configuration" | "docs/reference/public-delivery-api";
487
+ label: "Overview" | "Agent integration" | "Manual setup & first video" | "Video script basics" | "CI setup" | "Page instrumentation" | "Narration and localization" | "Camera and zooming" | "Assets and overlays" | "Studio" | "Public URLs and embeds" | "Update ScreenCI" | "CLI" | "Configuration" | "Public delivery API";
488
+ slug: "docs" | "docs/agent-integration" | "docs/installation" | "docs/write-video-scripts" | "docs/ci-setup" | "docs/guides/page-instrumentation" | "docs/guides/narration-and-localization" | "docs/guides/camera-and-zooming" | "docs/guides/assets-and-overlays" | "docs/guides/studio" | "docs/guides/public-urls-and-embeds" | "docs/guides/update-screenci" | "docs/reference/cli" | "docs/reference/configuration" | "docs/reference/public-delivery-api";
427
489
  translations: {};
428
490
  attrs: {};
429
491
  } | TypedocSidebarItem)[];
@@ -1 +1 @@
1
- {"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../../docs/manifest.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6Jf,CAAA;AAEV,eAAO,MAAM,YAAY,wCAAyC,CAAA;AAElE,wBAAgB,YAAY,CAAC,IAAI,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAExC;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,MAAM,UAMjD;AAED,wBAAgB,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAKvC;AAYD,KAAK,kBAAkB,GAAG;IACxB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,OAAO,EAAE,CAAA;IACjB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACrC,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;CAChC,CAAA;AAED,wBAAgB,oBAAoB,CAClC,mBAAmB,CAAC,EAAE,kBAAkB,GAAG,IAAI;;;;;;;;;;IAmBhD;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;;;EAkBxD"}
1
+ {"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../../docs/manifest.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqLf,CAAA;AAEV,eAAO,MAAM,YAAY,qDAAsD,CAAA;AAE/E,wBAAgB,YAAY,CAAC,IAAI,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAExC;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,MAAM,UAMjD;AAED,wBAAgB,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAKvC;AAYD,KAAK,kBAAkB,GAAG;IACxB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,OAAO,EAAE,CAAA;IACjB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACrC,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;CAChC,CAAA;AAED,wBAAgB,oBAAoB,CAClC,mBAAmB,CAAC,EAAE,kBAAkB,GAAG,IAAI;;;;;;;;;;IAmBhD;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;;;EAkBxD"}
@@ -4,43 +4,54 @@
4
4
  */
5
5
  export const docsManifest = [
6
6
  {
7
- source: 'installation.mdx',
7
+ source: 'overview.mdx',
8
8
  slug: 'docs',
9
9
  section: 'Getting Started',
10
10
  order: 1,
11
- navLabel: 'Installation & first video',
12
- title: 'Installation & First Video',
13
- description: 'Install ScreenCI, initialize a project, run the starter video locally, and record your first final video.',
11
+ navLabel: 'Overview',
12
+ title: 'Overview',
13
+ description: 'How ScreenCI works: record locally, render in the service, and serve from a CDN. The service never sees your source code, and the CLI is open source.',
14
14
  prev: null,
15
- next: 'docs/generating-videos',
15
+ next: 'docs/agent-integration',
16
16
  },
17
17
  {
18
- source: 'generating-videos.mdx',
19
- slug: 'docs/generating-videos',
18
+ source: 'agent-integration.mdx',
19
+ slug: 'docs/agent-integration',
20
20
  section: 'Getting Started',
21
21
  order: 2,
22
- navLabel: 'Generating videos',
23
- title: 'Generating Videos',
24
- description: 'Use Playwright codegen and AI-assisted workflows to generate a first ScreenCI draft, then refine it into a real video script.',
22
+ navLabel: 'Agent integration',
23
+ title: 'Agent Integration',
24
+ description: 'The recommended path: point a coding agent at the integration brief so it scaffolds ScreenCI, authors a video for your flow, and records it.',
25
25
  prev: 'docs',
26
+ next: 'docs/installation',
27
+ },
28
+ {
29
+ source: 'installation.mdx',
30
+ slug: 'docs/installation',
31
+ section: 'Getting Started',
32
+ order: 3,
33
+ navLabel: 'Manual setup & first video',
34
+ title: 'Manual Setup & First Video',
35
+ description: 'Wire ScreenCI up by hand: initialize a project, run the starter video locally, and record your first final video.',
36
+ prev: 'docs/agent-integration',
26
37
  next: 'docs/write-video-scripts',
27
38
  },
28
39
  {
29
40
  source: 'write-video-scripts.md',
30
41
  slug: 'docs/write-video-scripts',
31
42
  section: 'Getting Started',
32
- order: 3,
43
+ order: 4,
33
44
  navLabel: 'Video script basics',
34
45
  title: 'Video Script Basics',
35
46
  description: 'Author .video.ts files with Playwright-like APIs, ScreenCI narration and camera helpers, and workflow-aware pacing.',
36
- prev: 'docs/generating-videos',
47
+ prev: 'docs/installation',
37
48
  next: 'docs/ci-setup',
38
49
  },
39
50
  {
40
51
  source: 'ci-setup.md',
41
52
  slug: 'docs/ci-setup',
42
53
  section: 'Getting Started',
43
- order: 4,
54
+ order: 5,
44
55
  navLabel: 'CI setup',
45
56
  title: 'CI Setup',
46
57
  description: 'Understand the generated GitHub Actions workflow, required secrets, and how to keep CI recordings deterministic.',
@@ -89,24 +100,35 @@ export const docsManifest = [
89
100
  title: 'Assets and Overlays',
90
101
  description: 'Add intro clips, corner logos, transition assets, and timed overlays to ScreenCI recordings.',
91
102
  prev: 'docs/guides/camera-and-zooming',
103
+ next: 'docs/guides/studio',
104
+ },
105
+ {
106
+ source: 'studio.md',
107
+ slug: 'docs/guides/studio',
108
+ section: 'Guides',
109
+ order: 5,
110
+ navLabel: 'Studio',
111
+ title: 'Studio',
112
+ description: 'Remix render options, narration text, voices, and assets from the web app, or manage them entirely in Studio with createStudioNarration and createStudioAssets. Business tier.',
113
+ prev: 'docs/guides/assets-and-overlays',
92
114
  next: 'docs/guides/public-urls-and-embeds',
93
115
  },
94
116
  {
95
117
  source: 'public-urls-and-embeds.md',
96
118
  slug: 'docs/guides/public-urls-and-embeds',
97
119
  section: 'Guides',
98
- order: 5,
120
+ order: 6,
99
121
  navLabel: 'Public URLs and embeds',
100
122
  title: 'Public URLs and Embeds',
101
123
  description: 'Enable public delivery for a video, understand stable language-specific URLs, and embed ScreenCI outputs in other sites.',
102
- prev: 'docs/guides/assets-and-overlays',
124
+ prev: 'docs/guides/studio',
103
125
  next: 'docs/guides/update-screenci',
104
126
  },
105
127
  {
106
128
  source: 'update-screenci.mdx',
107
129
  slug: 'docs/guides/update-screenci',
108
130
  section: 'Guides',
109
- order: 6,
131
+ order: 7,
110
132
  navLabel: 'Update ScreenCI',
111
133
  title: 'Update ScreenCI',
112
134
  description: 'Upgrade the screenci package, refresh Playwright when needed, and verify that existing videos still behave as expected.',
@@ -116,8 +138,8 @@ export const docsManifest = [
116
138
  {
117
139
  source: 'cli.mdx',
118
140
  slug: 'docs/reference/cli',
119
- section: 'Guides',
120
- order: 7,
141
+ section: 'Reference',
142
+ order: 1,
121
143
  navLabel: 'CLI',
122
144
  title: 'CLI',
123
145
  description: 'Command reference for screenci init, test, record, project info, and public delivery commands.',
@@ -127,8 +149,8 @@ export const docsManifest = [
127
149
  {
128
150
  source: 'configuration.md',
129
151
  slug: 'docs/reference/configuration',
130
- section: 'Guides',
131
- order: 8,
152
+ section: 'Reference',
153
+ order: 2,
132
154
  navLabel: 'Configuration',
133
155
  title: 'Configuration',
134
156
  description: 'Configure project identity, file locations, rendering defaults, upload behavior, and Playwright integration in screenci.config.ts.',
@@ -138,8 +160,8 @@ export const docsManifest = [
138
160
  {
139
161
  source: 'public-delivery-api.md',
140
162
  slug: 'docs/reference/public-delivery-api',
141
- section: 'Guides',
142
- order: 9,
163
+ section: 'Reference',
164
+ order: 3,
143
165
  navLabel: 'Public delivery API',
144
166
  title: 'Public Delivery API',
145
167
  description: 'Technical reference for the unauthenticated endpoints that serve published videos, thumbnails, subtitles, and metadata.',
@@ -147,7 +169,7 @@ export const docsManifest = [
147
169
  next: 'docs/reference/api',
148
170
  },
149
171
  ];
150
- export const docsSections = ['Getting Started', 'Guides'];
172
+ export const docsSections = ['Getting Started', 'Guides', 'Reference'];
151
173
  export function getDocBySlug(slug) {
152
174
  return docsManifest.find((entry) => entry.slug === slug);
153
175
  }
@@ -178,7 +200,7 @@ export function getDocsSidebarConfig(typedocSidebarGroup) {
178
200
  .filter((entry) => entry.section === section)
179
201
  .sort((a, b) => a.order - b.order)
180
202
  .map(toSidebarItem);
181
- if (section === 'Guides' && typedocSidebarGroup) {
203
+ if (section === 'Reference' && typedocSidebarGroup) {
182
204
  items.push(typedocSidebarGroup);
183
205
  }
184
206
  return {
@@ -1 +1 @@
1
- {"version":3,"file":"manifest.js","sourceRoot":"","sources":["../../docs/manifest.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,CAAC,MAAM,YAAY,GAAG;IAC1B;QACE,MAAM,EAAE,kBAAkB;QAC1B,IAAI,EAAE,MAAM;QACZ,OAAO,EAAE,iBAAiB;QAC1B,KAAK,EAAE,CAAC;QACR,QAAQ,EAAE,4BAA4B;QACtC,KAAK,EAAE,4BAA4B;QACnC,WAAW,EACT,2GAA2G;QAC7G,IAAI,EAAE,IAAI;QACV,IAAI,EAAE,wBAAwB;KAC/B;IACD;QACE,MAAM,EAAE,uBAAuB;QAC/B,IAAI,EAAE,wBAAwB;QAC9B,OAAO,EAAE,iBAAiB;QAC1B,KAAK,EAAE,CAAC;QACR,QAAQ,EAAE,mBAAmB;QAC7B,KAAK,EAAE,mBAAmB;QAC1B,WAAW,EACT,+HAA+H;QACjI,IAAI,EAAE,MAAM;QACZ,IAAI,EAAE,0BAA0B;KACjC;IACD;QACE,MAAM,EAAE,wBAAwB;QAChC,IAAI,EAAE,0BAA0B;QAChC,OAAO,EAAE,iBAAiB;QAC1B,KAAK,EAAE,CAAC;QACR,QAAQ,EAAE,qBAAqB;QAC/B,KAAK,EAAE,qBAAqB;QAC5B,WAAW,EACT,qHAAqH;QACvH,IAAI,EAAE,wBAAwB;QAC9B,IAAI,EAAE,eAAe;KACtB;IACD;QACE,MAAM,EAAE,aAAa;QACrB,IAAI,EAAE,eAAe;QACrB,OAAO,EAAE,iBAAiB;QAC1B,KAAK,EAAE,CAAC;QACR,QAAQ,EAAE,UAAU;QACpB,KAAK,EAAE,UAAU;QACjB,WAAW,EACT,kHAAkH;QACpH,IAAI,EAAE,0BAA0B;QAChC,IAAI,EAAE,kCAAkC;KACzC;IACD;QACE,MAAM,EAAE,yBAAyB;QACjC,IAAI,EAAE,kCAAkC;QACxC,OAAO,EAAE,QAAQ;QACjB,KAAK,EAAE,CAAC;QACR,QAAQ,EAAE,sBAAsB;QAChC,KAAK,EAAE,sBAAsB;QAC7B,WAAW,EACT,6IAA6I;QAC/I,IAAI,EAAE,eAAe;QACrB,IAAI,EAAE,wCAAwC;KAC/C;IACD;QACE,MAAM,EAAE,+BAA+B;QACvC,IAAI,EAAE,wCAAwC;QAC9C,OAAO,EAAE,QAAQ;QACjB,KAAK,EAAE,CAAC;QACR,QAAQ,EAAE,4BAA4B;QACtC,KAAK,EAAE,4BAA4B;QACnC,WAAW,EACT,0HAA0H;QAC5H,IAAI,EAAE,kCAAkC;QACxC,IAAI,EAAE,gCAAgC;KACvC;IACD;QACE,MAAM,EAAE,uBAAuB;QAC/B,IAAI,EAAE,gCAAgC;QACtC,OAAO,EAAE,QAAQ;QACjB,KAAK,EAAE,CAAC;QACR,QAAQ,EAAE,oBAAoB;QAC9B,KAAK,EAAE,oBAAoB;QAC3B,WAAW,EACT,2HAA2H;QAC7H,IAAI,EAAE,wCAAwC;QAC9C,IAAI,EAAE,iCAAiC;KACxC;IACD;QACE,MAAM,EAAE,wBAAwB;QAChC,IAAI,EAAE,iCAAiC;QACvC,OAAO,EAAE,QAAQ;QACjB,KAAK,EAAE,CAAC;QACR,QAAQ,EAAE,qBAAqB;QAC/B,KAAK,EAAE,qBAAqB;QAC5B,WAAW,EACT,8FAA8F;QAChG,IAAI,EAAE,gCAAgC;QACtC,IAAI,EAAE,oCAAoC;KAC3C;IACD;QACE,MAAM,EAAE,2BAA2B;QACnC,IAAI,EAAE,oCAAoC;QAC1C,OAAO,EAAE,QAAQ;QACjB,KAAK,EAAE,CAAC;QACR,QAAQ,EAAE,wBAAwB;QAClC,KAAK,EAAE,wBAAwB;QAC/B,WAAW,EACT,0HAA0H;QAC5H,IAAI,EAAE,iCAAiC;QACvC,IAAI,EAAE,6BAA6B;KACpC;IACD;QACE,MAAM,EAAE,qBAAqB;QAC7B,IAAI,EAAE,6BAA6B;QACnC,OAAO,EAAE,QAAQ;QACjB,KAAK,EAAE,CAAC;QACR,QAAQ,EAAE,iBAAiB;QAC3B,KAAK,EAAE,iBAAiB;QACxB,WAAW,EACT,yHAAyH;QAC3H,IAAI,EAAE,oCAAoC;QAC1C,IAAI,EAAE,oBAAoB;KAC3B;IACD;QACE,MAAM,EAAE,SAAS;QACjB,IAAI,EAAE,oBAAoB;QAC1B,OAAO,EAAE,QAAQ;QACjB,KAAK,EAAE,CAAC;QACR,QAAQ,EAAE,KAAK;QACf,KAAK,EAAE,KAAK;QACZ,WAAW,EACT,gGAAgG;QAClG,IAAI,EAAE,6BAA6B;QACnC,IAAI,EAAE,8BAA8B;KACrC;IACD;QACE,MAAM,EAAE,kBAAkB;QAC1B,IAAI,EAAE,8BAA8B;QACpC,OAAO,EAAE,QAAQ;QACjB,KAAK,EAAE,CAAC;QACR,QAAQ,EAAE,eAAe;QACzB,KAAK,EAAE,eAAe;QACtB,WAAW,EACT,oIAAoI;QACtI,IAAI,EAAE,oBAAoB;QAC1B,IAAI,EAAE,oCAAoC;KAC3C;IACD;QACE,MAAM,EAAE,wBAAwB;QAChC,IAAI,EAAE,oCAAoC;QAC1C,OAAO,EAAE,QAAQ;QACjB,KAAK,EAAE,CAAC;QACR,QAAQ,EAAE,qBAAqB;QAC/B,KAAK,EAAE,qBAAqB;QAC5B,WAAW,EACT,yHAAyH;QAC3H,IAAI,EAAE,8BAA8B;QACpC,IAAI,EAAE,oBAAoB;KAC3B;CACO,CAAA;AAEV,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,iBAAiB,EAAE,QAAQ,CAAU,CAAA;AAElE,MAAM,UAAU,YAAY,CAAC,IAAY;IACvC,OAAO,YAAY,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,IAAI,KAAK,IAAI,CAAC,CAAA;AAC1D,CAAC;AAED,MAAM,UAAU,qBAAqB,CAAC,IAAY;IAChD,MAAM,KAAK,GAAG,YAAY,CAAC,IAAI,CAAC,CAAA;IAChC,MAAM,SAAS,GAAG,KAAK,EAAE,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAA;IAEjE,IAAI,IAAI,KAAK,MAAM;QAAE,OAAO,QAAQ,SAAS,EAAE,CAAA;IAC/C,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,GAAG,SAAS,EAAE,CAAA;AACrD,CAAC;AAED,MAAM,UAAU,wBAAwB;IACtC,OAAO,YAAY,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC;QAClC,GAAG,KAAK;QACR,UAAU,EAAE,qBAAqB,CAAC,KAAK,CAAC,IAAI,CAAC;KAC9C,CAAC,CAAC,CAAA;AACL,CAAC;AAED,SAAS,aAAa,CAAC,KAAoC;IACzD,OAAO;QACL,KAAK,EAAE,KAAK,CAAC,QAAQ;QACrB,IAAI,EAAE,KAAK,CAAC,IAAI;QAChB,YAAY,EAAE,EAAE;QAChB,KAAK,EAAE,EAAE;KACV,CAAA;AACH,CAAC;AAWD,MAAM,UAAU,oBAAoB,CAClC,mBAA+C;IAE/C,OAAO,YAAY,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE;QAClC,MAAM,KAAK,GAAgD,YAAY;aACpE,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,OAAO,KAAK,OAAO,CAAC;aAC5C,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC;aACjC,GAAG,CAAC,aAAa,CAAC,CAAA;QAErB,IAAI,OAAO,KAAK,QAAQ,IAAI,mBAAmB,EAAE,CAAC;YAChD,KAAK,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAA;QACjC,CAAC;QAED,OAAO;YACL,KAAK,EAAE,OAAO;YACd,YAAY,EAAE,EAAE;YAChB,SAAS,EAAE,KAAK;YAChB,KAAK;SACN,CAAA;IACH,CAAC,CAAC,CAAA;AACJ,CAAC;AAED,MAAM,UAAU,qBAAqB,CAAC,IAAmB;IACvD,IAAI,CAAC,IAAI;QAAE,OAAO,KAAK,CAAA;IACvB,IAAI,IAAI,KAAK,oBAAoB,EAAE,CAAC;QAClC,OAAO;YACL,KAAK,EAAE,oBAAoB;YAC3B,IAAI,EAAE,qBAAqB;SAC5B,CAAA;IACH,CAAC;IAED,MAAM,KAAK,GAAG,YAAY,CAAC,IAAI,CAAC,CAAA;IAChC,IAAI,CAAC,KAAK,EAAE,CAAC;QACX,MAAM,IAAI,KAAK,CAAC,0CAA0C,IAAI,EAAE,CAAC,CAAA;IACnE,CAAC;IAED,OAAO;QACL,KAAK,EAAE,KAAK,CAAC,KAAK;QAClB,IAAI,EAAE,IAAI,KAAK,CAAC,IAAI,EAAE;KACvB,CAAA;AACH,CAAC"}
1
+ {"version":3,"file":"manifest.js","sourceRoot":"","sources":["../../docs/manifest.ts"],"names":[],"mappings":"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"}
@@ -9,7 +9,7 @@ export type UnpublishedDocVideo = {
9
9
  };
10
10
  export type DocVideo = PublishedDocVideo | UnpublishedDocVideo;
11
11
  export declare const docsVideoRegistry: {
12
- readonly docs: {
12
+ readonly 'docs/installation': {
13
13
  readonly publicId: "kh7ccy03njvxjm0daef5g50zv587hrbd";
14
14
  readonly sourcePath: "screenci/docs/video-sources/installation.video.ts";
15
15
  readonly showSource: false;
@@ -1,5 +1,5 @@
1
1
  export const docsVideoRegistry = {
2
- docs: {
2
+ 'docs/installation': {
3
3
  publicId: 'kh7ccy03njvxjm0daef5g50zv587hrbd',
4
4
  sourcePath: 'screenci/docs/video-sources/installation.video.ts',
5
5
  showSource: false,
@@ -1 +1 @@
1
- {"version":3,"file":"videos.js","sourceRoot":"","sources":["../../docs/videos.ts"],"names":[],"mappings":"AAaA,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,IAAI,EAAE;QACJ,QAAQ,EAAE,kCAAkC;QAC5C,UAAU,EAAE,mDAAmD;QAC/D,UAAU,EAAE,KAAK;KAClB;IACD,oBAAoB,EAAE;QACpB,QAAQ,EAAE,kCAAkC;QAC5C,UAAU,EAAE,0CAA0C;KACvD;CAC0C,CAAA;AAE7C,MAAM,UAAU,WAAW,CAAC,IAAY;IACtC,OAAO,iBAAiB,CAAC,IAAsC,CAAC,IAAI,IAAI,CAAA;AAC1E,CAAC;AAED,MAAM,UAAU,WAAW,CAAC,KAAe;IACzC,OAAO,UAAU,IAAI,KAAK,CAAA;AAC5B,CAAC"}
1
+ {"version":3,"file":"videos.js","sourceRoot":"","sources":["../../docs/videos.ts"],"names":[],"mappings":"AAaA,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,mBAAmB,EAAE;QACnB,QAAQ,EAAE,kCAAkC;QAC5C,UAAU,EAAE,mDAAmD;QAC/D,UAAU,EAAE,KAAK;KAClB;IACD,oBAAoB,EAAE;QACpB,QAAQ,EAAE,kCAAkC;QAC5C,UAAU,EAAE,0CAA0C;KACvD;CAC0C,CAAA;AAE7C,MAAM,UAAU,WAAW,CAAC,IAAY;IACtC,OAAO,iBAAiB,CAAC,IAAsC,CAAC,IAAI,IAAI,CAAA;AAC1E,CAAC;AAED,MAAM,UAAU,WAAW,CAAC,KAAe;IACzC,OAAO,UAAU,IAAI,KAAK,CAAA;AAC5B,CAAC"}