@jay-framework/aiditor 0.19.5 → 0.19.7

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.
@@ -0,0 +1,9 @@
1
+ name: cancelAgentTaskAction
2
+ description: Cancel the in-flight AI agent task for a page route
3
+
4
+ inputSchema:
5
+ pageRoute?: string
6
+ renderedUrl?: string
7
+
8
+ outputSchema:
9
+ cancelled: boolean
@@ -0,0 +1,8 @@
1
+ export interface CancelAgentTaskActionInput {
2
+ pageRoute?: string;
3
+ renderedUrl?: string;
4
+ }
5
+
6
+ export interface CancelAgentTaskActionOutput {
7
+ cancelled: boolean;
8
+ }
@@ -0,0 +1,7 @@
1
+ name: checkAiditorPublishAction
2
+ description: Check whether the Jay project defines an aiditor:publish npm script
3
+
4
+ inputSchema: {}
5
+
6
+ outputSchema:
7
+ hasPublishScript: boolean
@@ -0,0 +1,5 @@
1
+ export interface CheckAiditorPublishActionInput {}
2
+
3
+ export interface CheckAiditorPublishActionOutput {
4
+ hasPublishScript: boolean;
5
+ }
@@ -0,0 +1,7 @@
1
+ name: runAiditorPublishAction
2
+ description: Run the Jay project's aiditor:publish npm script (stream)
3
+
4
+ inputSchema: {}
5
+
6
+ outputSchema:
7
+ type: string
@@ -0,0 +1,5 @@
1
+ export interface RunAiditorPublishActionInput {}
2
+
3
+ export interface RunAiditorPublishActionOutput {
4
+ type: string;
5
+ }
@@ -4,11 +4,13 @@ import * as _jay_framework_component from '@jay-framework/component';
4
4
  import { HTMLElementProxy, HTMLElementCollectionProxy } from '@jay-framework/runtime';
5
5
 
6
6
  interface ChunkOfPageViewState {
7
+ id: string,
7
8
  text: string,
8
9
  cssClass: string,
9
10
  filePath: string,
10
11
  toolName: string,
11
- showUserPrefix: boolean
12
+ showUserPrefix: boolean,
13
+ isDivider: boolean
12
14
  }
13
15
 
14
16
  interface PageSelectOptionOfPageViewState {
@@ -16,15 +18,65 @@ interface PageSelectOptionOfPageViewState {
16
18
  label: string
17
19
  }
18
20
 
19
- interface PreviewPathOptionOfPageViewState {
20
- path: string
21
+ interface FilteredPageRouteRowOfPageViewState {
22
+ url: string,
23
+ label: string,
24
+ isSelected: boolean,
25
+ checkGlyph: string,
26
+ cssClass: string
27
+ }
28
+
29
+ interface FilteredUrlInstanceRowOfPageViewState {
30
+ path: string,
31
+ isSelected: boolean,
32
+ checkGlyph: string,
33
+ cssClass: string
34
+ }
35
+
36
+ interface FilteredSnapshotRowOfPageViewState {
37
+ value: string,
38
+ label: string,
39
+ isSelected: boolean,
40
+ checkGlyph: string,
41
+ cssClass: string
42
+ }
43
+
44
+ interface AddMenuPickerLeftNavRowOfPageViewState {
45
+ rowKey: string,
46
+ navKey: string,
47
+ label: string,
48
+ itemCount: number,
49
+ isSelected: boolean,
50
+ cssClass: string
51
+ }
52
+
53
+ interface AddMenuPickerSubCategoryFilterRowOfPageViewState {
54
+ rowKey: string,
55
+ navKey: string,
56
+ label: string,
57
+ itemCount: number,
58
+ showCount: boolean,
59
+ isSelected: boolean,
60
+ cssClass: string
61
+ }
62
+
63
+ interface AddMenuPickerBrowseRowOfPageViewState {
64
+ rowKey: string,
65
+ isSectionHeader: boolean,
66
+ label: string,
67
+ itemId: string,
68
+ isPickable: boolean,
69
+ showPickable: boolean,
70
+ showBrowseOnly: boolean
21
71
  }
22
72
 
23
73
  interface VisualPointDisplayItemOfPageViewState {
24
74
  id: string,
25
75
  leftPct: number,
26
76
  topPct: number,
27
- indexLabel: string
77
+ indexLabel: string,
78
+ markerOpen: boolean,
79
+ markerEditMode: boolean
28
80
  }
29
81
 
30
82
  interface VisualAreaDisplayItemOfPageViewState {
@@ -33,22 +85,9 @@ interface VisualAreaDisplayItemOfPageViewState {
33
85
  topPct: number,
34
86
  widthPct: number,
35
87
  heightPct: number,
36
- indexLabel: string
37
- }
38
-
39
- interface VisualArrowDisplayItemOfPageViewState {
40
- id: string,
41
- x1Pct: number,
42
- y1Pct: number,
43
- x2Pct: number,
44
- y2Pct: number
45
- }
46
-
47
- interface VisualArrowPinItemOfPageViewState {
48
- id: string,
49
- leftPct: number,
50
- topPct: number,
51
- indexLabel: string
88
+ indexLabel: string,
89
+ markerOpen: boolean,
90
+ markerEditMode: boolean
52
91
  }
53
92
 
54
93
  interface AttachmentChipOfVisualAnnotationRowOfPageViewState {
@@ -65,19 +104,6 @@ interface MarkerAddMenuChipOfVisualAnnotationRowOfPageViewState {
65
104
  subtitle: string
66
105
  }
67
106
 
68
- declare enum KindOfMarkerPickerNavRowOfVisualAnnotationRowOfPageViewState {
69
- category,
70
- subCategory,
71
- item
72
- }
73
-
74
- interface MarkerPickerNavRowOfVisualAnnotationRowOfPageViewState {
75
- rowKey: string,
76
- label: string,
77
- value: string,
78
- kind: KindOfMarkerPickerNavRowOfVisualAnnotationRowOfPageViewState
79
- }
80
-
81
107
  interface CrAddMenuRouteParamRowOfVisualAnnotationRowOfPageViewState {
82
108
  rowKey: string,
83
109
  name: string
@@ -87,7 +113,8 @@ interface VisualAnnotationRowOfPageViewState {
87
113
  id: string,
88
114
  kindLabel: string,
89
115
  instruction: string,
90
- runDisabled: boolean,
116
+ showPopover: boolean,
117
+ quickSendDisabled: boolean,
91
118
  leftPct: number,
92
119
  topPct: number,
93
120
  popoverFlipX: boolean,
@@ -98,11 +125,6 @@ interface VisualAnnotationRowOfPageViewState {
98
125
  showMarkerAddMenuChips: boolean,
99
126
  showMarkerAddMenuEmptyHint: boolean,
100
127
  markerAddMenuChips: Array<MarkerAddMenuChipOfVisualAnnotationRowOfPageViewState>,
101
- addMenuSelectedCategory: string,
102
- showAddMenuItemPicker: boolean,
103
- markerPickerNavRows: Array<MarkerPickerNavRowOfVisualAnnotationRowOfPageViewState>,
104
- showMarkerPickerLoading: boolean,
105
- showMarkerPickerCatalogEmpty: boolean,
106
128
  crAddMenuParamCollisionWarning: string,
107
129
  crAddMenuRouteParamHint: string,
108
130
  showCrAddMenuRouteParams: boolean,
@@ -154,21 +176,6 @@ interface VideoAreaDisplayItemOfPageViewState {
154
176
  indexLabel: string
155
177
  }
156
178
 
157
- interface VideoArrowDisplayItemOfPageViewState {
158
- id: string,
159
- x1Pct: number,
160
- y1Pct: number,
161
- x2Pct: number,
162
- y2Pct: number
163
- }
164
-
165
- interface VideoArrowPinItemOfPageViewState {
166
- id: string,
167
- leftPct: number,
168
- topPct: number,
169
- indexLabel: string
170
- }
171
-
172
179
  interface AttachmentChipOfVideoAnnotationRowOfPageViewState {
173
180
  key: string,
174
181
  name: string,
@@ -183,19 +190,6 @@ interface MarkerAddMenuChipOfVideoAnnotationRowOfPageViewState {
183
190
  subtitle: string
184
191
  }
185
192
 
186
- declare enum KindOfMarkerPickerNavRowOfVideoAnnotationRowOfPageViewState {
187
- category,
188
- subCategory,
189
- item
190
- }
191
-
192
- interface MarkerPickerNavRowOfVideoAnnotationRowOfPageViewState {
193
- rowKey: string,
194
- label: string,
195
- value: string,
196
- kind: KindOfMarkerPickerNavRowOfVideoAnnotationRowOfPageViewState
197
- }
198
-
199
193
  interface CrAddMenuRouteParamRowOfVideoAnnotationRowOfPageViewState {
200
194
  rowKey: string,
201
195
  name: string
@@ -206,6 +200,7 @@ interface VideoAnnotationRowOfPageViewState {
206
200
  kindLabel: string,
207
201
  instruction: string,
208
202
  runDisabled: boolean,
203
+ quickSendDisabled: boolean,
209
204
  leftPct: number,
210
205
  topPct: number,
211
206
  popoverFlipX: boolean,
@@ -216,11 +211,6 @@ interface VideoAnnotationRowOfPageViewState {
216
211
  showMarkerAddMenuChips: boolean,
217
212
  showMarkerAddMenuEmptyHint: boolean,
218
213
  markerAddMenuChips: Array<MarkerAddMenuChipOfVideoAnnotationRowOfPageViewState>,
219
- addMenuSelectedCategory: string,
220
- showAddMenuItemPicker: boolean,
221
- markerPickerNavRows: Array<MarkerPickerNavRowOfVideoAnnotationRowOfPageViewState>,
222
- showMarkerPickerLoading: boolean,
223
- showMarkerPickerCatalogEmpty: boolean,
224
214
  crAddMenuParamCollisionWarning: string,
225
215
  crAddMenuRouteParamHint: string,
226
216
  showCrAddMenuRouteParams: boolean,
@@ -242,7 +232,8 @@ interface SnapshotPointDisplayItemOfPageViewState {
242
232
  id: string,
243
233
  leftPct: number,
244
234
  topPct: number,
245
- indexLabel: string
235
+ indexLabel: string,
236
+ markerEditMode: boolean
246
237
  }
247
238
 
248
239
  interface SnapshotAreaDisplayItemOfPageViewState {
@@ -251,22 +242,8 @@ interface SnapshotAreaDisplayItemOfPageViewState {
251
242
  topPct: number,
252
243
  widthPct: number,
253
244
  heightPct: number,
254
- indexLabel: string
255
- }
256
-
257
- interface SnapshotArrowDisplayItemOfPageViewState {
258
- id: string,
259
- x1Pct: number,
260
- y1Pct: number,
261
- x2Pct: number,
262
- y2Pct: number
263
- }
264
-
265
- interface SnapshotArrowPinItemOfPageViewState {
266
- id: string,
267
- leftPct: number,
268
- topPct: number,
269
- indexLabel: string
245
+ indexLabel: string,
246
+ markerEditMode: boolean
270
247
  }
271
248
 
272
249
  interface AttachmentChipOfSnapshotAnnotationItemOfPageViewState {
@@ -283,19 +260,6 @@ interface MarkerAddMenuChipOfSnapshotAnnotationItemOfPageViewState {
283
260
  subtitle: string
284
261
  }
285
262
 
286
- declare enum KindOfMarkerPickerNavRowOfSnapshotAnnotationItemOfPageViewState {
287
- category,
288
- subCategory,
289
- item
290
- }
291
-
292
- interface MarkerPickerNavRowOfSnapshotAnnotationItemOfPageViewState {
293
- rowKey: string,
294
- label: string,
295
- value: string,
296
- kind: KindOfMarkerPickerNavRowOfSnapshotAnnotationItemOfPageViewState
297
- }
298
-
299
263
  interface CrAddMenuRouteParamRowOfSnapshotAnnotationItemOfPageViewState {
300
264
  rowKey: string,
301
265
  name: string
@@ -306,6 +270,7 @@ interface SnapshotAnnotationItemOfPageViewState {
306
270
  indexLabel: string,
307
271
  kindLabel: string,
308
272
  instruction: string,
273
+ quickSendDisabled: boolean,
309
274
  kind: string,
310
275
  leftPct: number,
311
276
  topPct: number,
@@ -317,11 +282,6 @@ interface SnapshotAnnotationItemOfPageViewState {
317
282
  showMarkerAddMenuChips: boolean,
318
283
  showMarkerAddMenuEmptyHint: boolean,
319
284
  markerAddMenuChips: Array<MarkerAddMenuChipOfSnapshotAnnotationItemOfPageViewState>,
320
- addMenuSelectedCategory: string,
321
- showAddMenuItemPicker: boolean,
322
- markerPickerNavRows: Array<MarkerPickerNavRowOfSnapshotAnnotationItemOfPageViewState>,
323
- showMarkerPickerLoading: boolean,
324
- showMarkerPickerCatalogEmpty: boolean,
325
285
  crAddMenuParamCollisionWarning: string,
326
286
  crAddMenuRouteParamHint: string,
327
287
  showCrAddMenuRouteParams: boolean,
@@ -375,38 +335,12 @@ interface AddMenuChipRowOfPageViewState {
375
335
  annotationId?: string
376
336
  }
377
337
 
378
- declare enum KindOfAddMenuNavRowOfPageViewState {
379
- category,
380
- subCategory,
381
- item
382
- }
383
-
384
- interface AddMenuNavRowOfPageViewState {
385
- rowKey: string,
386
- label: string,
387
- value: string,
388
- kind: KindOfAddMenuNavRowOfPageViewState
389
- }
390
-
391
- declare enum KindOfMarkerAddMenuNavRowOfPageViewState {
392
- category,
393
- subCategory,
394
- item
395
- }
396
-
397
- interface MarkerAddMenuNavRowOfPageViewState {
398
- rowKey: string,
399
- label: string,
400
- value: string,
401
- kind: KindOfMarkerAddMenuNavRowOfPageViewState
402
- }
403
-
404
- interface CrAddMenuRouteParamRowOfPageViewState {
338
+ interface AddMenuRouteParamRowOfPageViewState {
405
339
  rowKey: string,
406
340
  name: string
407
341
  }
408
342
 
409
- interface AddMenuRouteParamRowOfPageViewState {
343
+ interface CrAddMenuRouteParamRowOfPageViewState {
410
344
  rowKey: string,
411
345
  name: string
412
346
  }
@@ -438,15 +372,51 @@ interface PageViewState {
438
372
  hasChunks: boolean,
439
373
  outputEmpty: boolean,
440
374
  pageSelectOptions: Array<PageSelectOptionOfPageViewState>,
441
- selectedRouteSelectValue: string,
442
375
  hasPages: boolean,
376
+ showPagesPanel: boolean,
377
+ pageNavBtnClass: string,
378
+ pageNavBtnLabel: string,
379
+ pagesPanelSearchQuery: string,
380
+ filteredPageRouteRows: Array<FilteredPageRouteRowOfPageViewState>,
381
+ filteredUrlInstanceRows: Array<FilteredUrlInstanceRowOfPageViewState>,
382
+ showRoutesPanelUrlInstances: boolean,
383
+ showPagesPanelEmptySearch: boolean,
384
+ showSnapshotNav: boolean,
385
+ showSnapshotPanel: boolean,
386
+ snapshotNavBtnClass: string,
387
+ snapshotNavBtnLabel: string,
388
+ snapshotPanelSearchQuery: string,
389
+ filteredSnapshotRows: Array<FilteredSnapshotRowOfPageViewState>,
390
+ showSnapshotPanelEmptySearch: boolean,
391
+ showAddMenuPickerModal: boolean,
392
+ showAddMenuPickerLoading: boolean,
393
+ showAddMenuPickerEmpty: boolean,
394
+ showAddMenuPickerBrowse: boolean,
395
+ showAddMenuPickerBrowseLayout: boolean,
396
+ showAddMenuPickerSearchMode: boolean,
397
+ showAddMenuPickerSearchBack: boolean,
398
+ showAddMenuPickerSearchClear: boolean,
399
+ showAddMenuPickerBrowseTitle: boolean,
400
+ showAddMenuPickerSearchSummary: boolean,
401
+ showAddMenuPickerSubCategoryFilters: boolean,
402
+ showAddMenuPickerSubCategoryScrollPrev: boolean,
403
+ showAddMenuPickerSubCategoryScrollNext: boolean,
404
+ showAddMenuPickerComponents: boolean,
405
+ showAddMenuPickerNoComponents: boolean,
406
+ showAddMenuPickerNoSearchResults: boolean,
407
+ addMenuPickerDialogClass: string,
408
+ addMenuPickerHeaderTitle: string,
409
+ addMenuPickerBrowseCategoryTitle: string,
410
+ addMenuPickerSearchSummary: string,
411
+ addMenuPickerSearchQuery: string,
412
+ addMenuPickerBrowseLayoutClass: string,
413
+ addMenuPickerLeftNavRows: Array<AddMenuPickerLeftNavRowOfPageViewState>,
414
+ addMenuPickerSubCategoryFilterRows: Array<AddMenuPickerSubCategoryFilterRowOfPageViewState>,
415
+ addMenuPickerBrowseRows: Array<AddMenuPickerBrowseRowOfPageViewState>,
443
416
  isPreviewMode: boolean,
444
417
  previewUrlBar: string,
445
418
  previewLoading: boolean,
446
- paramsLoadingHint: string,
447
419
  previewError: string,
448
- showPathSelect: boolean,
449
- previewPathOptions: Array<PreviewPathOptionOfPageViewState>,
450
420
  selectedPreviewPath: string,
451
421
  showPreviewIframe: boolean,
452
422
  previewSrc: string,
@@ -456,6 +426,8 @@ interface PageViewState {
456
426
  bottomPanelClass: string,
457
427
  bottomPanelToggleGlyph: string,
458
428
  showBottomPanelRunning: boolean,
429
+ showAgentStopConfirm: boolean,
430
+ agentStopBtnClass: string,
459
431
  showFilePreview: boolean,
460
432
  filePreviewPath: string,
461
433
  filePreviewContent: string,
@@ -463,10 +435,14 @@ interface PageViewState {
463
435
  filePreviewImageSrc: string,
464
436
  filePreviewLoading: boolean,
465
437
  showVisualToolbar: boolean,
438
+ showClearMarkersConfirm: boolean,
439
+ clearMarkersConfirmText: string,
466
440
  visualToolNoneOn: boolean,
467
441
  visualToolPointOn: boolean,
468
442
  visualToolAreaOn: boolean,
469
- visualToolArrowOn: boolean,
443
+ visualMarkerToolsDisabled: boolean,
444
+ visualPointMarkerTooltip: string,
445
+ visualAreaMarkerTooltip: string,
470
446
  visualPointDisplayItems: Array<VisualPointDisplayItemOfPageViewState>,
471
447
  showVisualPointMarkers: boolean,
472
448
  visualAreaDisplayItems: Array<VisualAreaDisplayItemOfPageViewState>,
@@ -476,12 +452,6 @@ interface PageViewState {
476
452
  areaDraftWidthPct: number,
477
453
  areaDraftHeightPct: number,
478
454
  showAreaDraftRect: boolean,
479
- visualArrowDisplayItems: Array<VisualArrowDisplayItemOfPageViewState>,
480
- visualArrowPinItems: Array<VisualArrowPinItemOfPageViewState>,
481
- hasVisualArrowLines: boolean,
482
- showArrowPending: boolean,
483
- arrowPendingLeftPct: number,
484
- arrowPendingTopPct: number,
485
455
  visualAnnotationRows: Array<VisualAnnotationRowOfPageViewState>,
486
456
  recordingDraftUi: RecordingDraftUiOfPageViewState,
487
457
  recordingDraftAttachmentChips: Array<RecordingDraftAttachmentChipOfPageViewState>,
@@ -492,9 +462,11 @@ interface PageViewState {
492
462
  visualOverlayPointerNone: boolean,
493
463
  showVideoRecordUi: boolean,
494
464
  isVideoRecording: boolean,
495
- videoRecordLabel: string,
465
+ videoRecordTooltip: string,
496
466
  videoRecordDisabled: boolean,
497
467
  freezeDisabled: boolean,
468
+ sendToAgentDisabled: boolean,
469
+ sendToAgentTooltip: string,
498
470
  showVideoReviewModal: boolean,
499
471
  videoReviewPreparing: boolean,
500
472
  videoReviewReady: boolean,
@@ -504,7 +476,6 @@ interface PageViewState {
504
476
  videoModalToolNoneOn: boolean,
505
477
  videoModalToolPointOn: boolean,
506
478
  videoModalToolAreaOn: boolean,
507
- videoModalToolArrowOn: boolean,
508
479
  videoPointDisplayItems: Array<VideoPointDisplayItemOfPageViewState>,
509
480
  showVideoPointMarkers: boolean,
510
481
  videoAreaDisplayItems: Array<VideoAreaDisplayItemOfPageViewState>,
@@ -514,12 +485,6 @@ interface PageViewState {
514
485
  videoAreaDraftWidthPct: number,
515
486
  videoAreaDraftHeightPct: number,
516
487
  showVideoAreaDraftRect: boolean,
517
- videoArrowDisplayItems: Array<VideoArrowDisplayItemOfPageViewState>,
518
- videoArrowPinItems: Array<VideoArrowPinItemOfPageViewState>,
519
- hasVideoArrowLines: boolean,
520
- showVideoArrowPending: boolean,
521
- videoArrowPendingLeftPct: number,
522
- videoArrowPendingTopPct: number,
523
488
  videoAnnotationRows: Array<VideoAnnotationRowOfPageViewState>,
524
489
  showVideoAnnotationsPanel: boolean,
525
490
  videoModalOverlayPointerNone: boolean,
@@ -535,12 +500,12 @@ interface PageViewState {
535
500
  breakpointDesktopOn: boolean,
536
501
  breakpointTabletOn: boolean,
537
502
  breakpointMobileOn: boolean,
503
+ stageWidthPx: number,
538
504
  showSnapshotModal: boolean,
539
505
  snapshotImageSrc: string,
540
506
  snapshotToolNoneOn: boolean,
541
507
  snapshotToolPointOn: boolean,
542
508
  snapshotToolAreaOn: boolean,
543
- snapshotToolArrowOn: boolean,
544
509
  snapshotCanSubmit: boolean,
545
510
  snapshotShowDiscardConfirm: boolean,
546
511
  snapshotOverlayPointerNone: boolean,
@@ -553,12 +518,6 @@ interface PageViewState {
553
518
  snapshotAreaDraftWidthPct: number,
554
519
  snapshotAreaDraftHeightPct: number,
555
520
  showSnapshotAreaDraft: boolean,
556
- snapshotArrowDisplayItems: Array<SnapshotArrowDisplayItemOfPageViewState>,
557
- snapshotArrowPinItems: Array<SnapshotArrowPinItemOfPageViewState>,
558
- hasSnapshotArrowLines: boolean,
559
- showSnapshotArrowPending: boolean,
560
- snapshotArrowPendingLeftPct: number,
561
- snapshotArrowPendingTopPct: number,
562
521
  snapshotAnnotationItems: Array<SnapshotAnnotationItemOfPageViewState>,
563
522
  showSnapshotAnnotationsPanel: boolean,
564
523
  showSnapshotSubmitError: boolean,
@@ -602,17 +561,12 @@ interface PageViewState {
602
561
  showAddMenuChips: boolean,
603
562
  addMenuChipRows: Array<AddMenuChipRowOfPageViewState>,
604
563
  showAddMenuEmptyHint: boolean,
605
- showAddMenuPopover: boolean,
606
- addMenuNavRows: Array<AddMenuNavRowOfPageViewState>,
607
- addMenuSelectedCategory: string,
608
- showMarkerAddMenuPopover: boolean,
609
- markerAddMenuPopoverLeftPct: number,
610
- markerAddMenuPopoverTopPct: number,
611
- markerAddMenuPickerAnnotationId: string,
612
- markerAddMenuNavRows: Array<MarkerAddMenuNavRowOfPageViewState>,
613
- markerAddMenuSelectedCategory: string,
614
- showMarkerAddMenuPickerLoading: boolean,
615
- showMarkerAddMenuPickerCatalogEmpty: boolean,
564
+ addMenuParamCollisionWarning: string,
565
+ addMenuRouteParamHint: string,
566
+ showAddMenuRouteParams: boolean,
567
+ addMenuRouteParamRows: Array<AddMenuRouteParamRowOfPageViewState>,
568
+ showAddMenuRouteParamConfirm: boolean,
569
+ addMenuPendingRouteParamTitle: string,
616
570
  crAddMenuParamCollisionWarning: string,
617
571
  crAddMenuRouteParamHint: string,
618
572
  showCrAddMenuRouteParams: boolean,
@@ -621,18 +575,17 @@ interface PageViewState {
621
575
  crPendingRouteParamTitle: string,
622
576
  showCrPlannedRoutePanel: boolean,
623
577
  crPlannedRoute: string,
624
- addMenuParamCollisionWarning: string,
625
- addMenuRouteParamHint: string,
626
- showAddMenuRouteParams: boolean,
627
- addMenuRouteParamRows: Array<AddMenuRouteParamRowOfPageViewState>,
628
- showAddMenuRouteParamConfirm: boolean,
629
- addMenuPendingRouteParamTitle: string,
630
578
  showAddPageResultBanner: boolean,
631
579
  addPageResultBannerClass: string,
632
580
  addPageResultBannerMessage: string,
633
581
  showAddPageRetry: boolean,
634
582
  showAddPageFixWithAiditor: boolean,
635
583
  showAddPageFromBriefBtn: boolean,
584
+ hasPublishScript: boolean,
585
+ publishDisabled: boolean,
586
+ publishTooltip: string,
587
+ publishBtnLabel: string,
588
+ isPublishing: boolean,
636
589
  showBriefFillPopover: boolean,
637
590
  briefFillContextNotes: string,
638
591
  briefFillPopoverError: string,
@@ -652,12 +605,22 @@ interface PageViewState {
652
605
 
653
606
  interface PageElementRefs {
654
607
  retryBootstrapBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
655
- pageRouteSelect: HTMLElementProxy<PageViewState, HTMLSelectElement>,
656
- previewPathSelect: HTMLElementProxy<PageViewState, HTMLSelectElement>,
657
- projectSettingsBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
658
- addPageOpenBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
608
+ pageNavBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
609
+ snapshotNavBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
659
610
  addPageFromBriefBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
611
+ publishBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
612
+ pagesPanelCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
613
+ pagesPanelSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
614
+ pagesPanelDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
615
+ pagesPanelOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
616
+ snapshotPanelCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
617
+ snapshotPanelSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
618
+ snapshotPanelDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
619
+ snapshotPanelOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
620
+ harmonyAddPageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
660
621
  visualAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
622
+ stageResizeLeft: HTMLElementProxy<PageViewState, HTMLDivElement>,
623
+ stageResizeRight: HTMLElementProxy<PageViewState, HTMLDivElement>,
661
624
  breakpointDesktopBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
662
625
  breakpointTabletBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
663
626
  breakpointMobileBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
@@ -665,20 +628,32 @@ interface PageElementRefs {
665
628
  visualOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
666
629
  recordingDraftPopover: HTMLElementProxy<PageViewState, HTMLDivElement>,
667
630
  previewCaptureRoot: HTMLElementProxy<PageViewState, HTMLDivElement>,
631
+ clearMarkersCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
632
+ clearMarkersConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
668
633
  visualToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
669
634
  visualToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
670
635
  visualToolAreaBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
671
- visualToolArrowBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
672
636
  videoRecordBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
673
637
  freezeBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
638
+ sendToAgentBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
639
+ projectSettingsBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
674
640
  addPageResultBannerSlot: HTMLElementProxy<PageViewState, HTMLDivElement>,
675
641
  bottomPanelResize: HTMLElementProxy<PageViewState, HTMLDivElement>,
642
+ agentStopCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
643
+ agentStopConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
644
+ agentStopConfirmDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
645
+ agentStopBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
676
646
  bottomPanelClearBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
677
647
  bottomPanelToggleBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
678
648
  bottomPanelHeader: HTMLElementProxy<PageViewState, HTMLDivElement>,
679
649
  outputScroll: HTMLElementProxy<PageViewState, HTMLDivElement>,
680
650
  agentChatInput: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
681
651
  agentChatSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
652
+ addMenuPickerCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
653
+ addMenuPickerSearchInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
654
+ addMenuPickerSubCategoryFilters: HTMLElementProxy<PageViewState, HTMLDivElement>,
655
+ addMenuPickerDialog: HTMLElementProxy<PageViewState, HTMLDivElement>,
656
+ addMenuPickerOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
682
657
  projectSettingsCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
683
658
  projectLocalPluginNameInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
684
659
  projectLocalPackageInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
@@ -717,7 +692,6 @@ interface PageElementRefs {
717
692
  videoModalToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
718
693
  videoModalToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
719
694
  videoModalToolAreaBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
720
- videoModalToolArrowBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
721
695
  videoReviewAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
722
696
  videoReviewPlayer: HTMLElementProxy<PageViewState, HTMLVideoElement>,
723
697
  videoReviewOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
@@ -729,10 +703,9 @@ interface PageElementRefs {
729
703
  videoReviewSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
730
704
  videoReviewBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
731
705
  snapshotCloseBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
706
+ snapshotToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
732
707
  snapshotToolPointBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
733
708
  snapshotToolAreaBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
734
- snapshotToolArrowBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
735
- snapshotToolNoneBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
736
709
  snapshotUndoBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
737
710
  snapshotClearBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
738
711
  snapshotAttachFileInput: HTMLElementProxy<PageViewState, HTMLInputElement>,
@@ -743,6 +716,12 @@ interface PageElementRefs {
743
716
  snapshotCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
744
717
  snapshotSendBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
745
718
  snapshotBackdrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
719
+ visualPointDisplayItems: {
720
+ visualAnnotationMarker: HTMLElementCollectionProxy<VisualPointDisplayItemOfPageViewState, HTMLDivElement>
721
+ },
722
+ visualAreaDisplayItems: {
723
+ visualAnnotationMarker: HTMLElementCollectionProxy<VisualAreaDisplayItemOfPageViewState, HTMLDivElement>
724
+ },
746
725
  visualAnnotationRows: {
747
726
  annotationRow: HTMLElementCollectionProxy<VisualAnnotationRowOfPageViewState, HTMLDivElement>
748
727
  },