@jay-framework/aiditor 0.20.0 → 0.21.0

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.
@@ -4,6 +4,7 @@ description: Cancel the in-flight AI agent task for a page route
4
4
  inputSchema:
5
5
  pageRoute?: string
6
6
  renderedUrl?: string
7
+ cancelKey?: string
7
8
 
8
9
  outputSchema:
9
10
  cancelled: boolean
@@ -1,6 +1,7 @@
1
1
  export interface CancelAgentTaskActionInput {
2
2
  pageRoute?: string;
3
3
  renderedUrl?: string;
4
+ cancelKey?: string;
4
5
  }
5
6
 
6
7
  export interface CancelAgentTaskActionOutput {
@@ -23,7 +23,8 @@ interface FilteredPageRouteRowOfPageViewState {
23
23
  label: string,
24
24
  isSelected: boolean,
25
25
  checkGlyph: string,
26
- cssClass: string
26
+ cssClass: string,
27
+ rowCssClass: string
27
28
  }
28
29
 
29
30
  interface InstanceSwitcherRowOfPageViewState {
@@ -202,7 +203,8 @@ interface AttachmentChipOfVisualAnnotationRowOfPageViewState {
202
203
  key: string,
203
204
  name: string,
204
205
  thumbUrl: string,
205
- annotationId: string
206
+ annotationId: string,
207
+ numberLabel: string
206
208
  }
207
209
 
208
210
  interface MarkerAddMenuChipOfVisualAnnotationRowOfPageViewState {
@@ -251,7 +253,8 @@ interface AttachmentChipOfRecordingDraftUiOfPageViewState {
251
253
  key: string,
252
254
  name: string,
253
255
  thumbUrl: string,
254
- annotationId: string
256
+ annotationId: string,
257
+ numberLabel: string
255
258
  }
256
259
 
257
260
  interface RecordingDraftUiOfPageViewState {
@@ -269,7 +272,8 @@ interface RecordingDraftAttachmentChipOfPageViewState {
269
272
  key: string,
270
273
  name: string,
271
274
  thumbUrl: string,
272
- annotationId: string
275
+ annotationId: string,
276
+ numberLabel: string
273
277
  }
274
278
 
275
279
  interface VideoPointDisplayItemOfPageViewState {
@@ -296,7 +300,8 @@ interface AttachmentChipOfVideoAnnotationRowOfPageViewState {
296
300
  key: string,
297
301
  name: string,
298
302
  thumbUrl: string,
299
- annotationId: string
303
+ annotationId: string,
304
+ numberLabel: string
300
305
  }
301
306
 
302
307
  interface MarkerAddMenuChipOfVideoAnnotationRowOfPageViewState {
@@ -371,7 +376,8 @@ interface AttachmentChipOfSnapshotAnnotationItemOfPageViewState {
371
376
  key: string,
372
377
  name: string,
373
378
  thumbUrl: string,
374
- annotationId: string
379
+ annotationId: string,
380
+ numberLabel: string
375
381
  }
376
382
 
377
383
  interface MarkerAddMenuChipOfSnapshotAnnotationItemOfPageViewState {
@@ -618,6 +624,7 @@ interface PageViewState {
618
624
  showAssetMentionPanel: boolean,
619
625
  assetMentionLeft: number,
620
626
  assetMentionTop: number,
627
+ assetMentionOpensAbove: boolean,
621
628
  assetMentionHeaderTitle: string,
622
629
  showAssetMentionHeaderBack: boolean,
623
630
  showAssetMentionSearchField: boolean,
@@ -627,6 +634,7 @@ interface PageViewState {
627
634
  toastMessage: string,
628
635
  isPreviewMode: boolean,
629
636
  previewUrlBar: string,
637
+ previewUrlBarOpenTabDisabled: boolean,
630
638
  previewLoading: boolean,
631
639
  previewError: string,
632
640
  selectedPreviewPath: string,
@@ -803,12 +811,24 @@ interface PageViewState {
803
811
  briefFillContextNotes: string,
804
812
  briefFillPopoverError: string,
805
813
  showBriefFillPopoverError: boolean,
806
- briefFillDisabled: boolean,
814
+ briefFillContentDisabled: boolean,
815
+ briefFillDesignDisabled: boolean,
807
816
  briefFillInputDisabled: boolean,
808
817
  briefFillDropzoneClass: string,
809
818
  addPageBriefFillGenerateDisabled: boolean,
810
- briefFillStatusHint: string,
811
- showBriefFillStatusHint: boolean,
819
+ contentTabGeneratingHint: string,
820
+ designTabGeneratingHint: string,
821
+ showContentTabGeneratingHint: boolean,
822
+ showDesignTabGeneratingHint: boolean,
823
+ contentGenError: string,
824
+ designGenError: string,
825
+ showContentTabGenError: boolean,
826
+ showDesignTabGenError: boolean,
827
+ addPageContentMdDisabled: boolean,
828
+ addPageDesignMdDisabled: boolean,
829
+ addPageReferencesDisabled: boolean,
830
+ addPageReferencesDropzoneClass: string,
831
+ showAddPageDiscardConfirm: boolean,
812
832
  showBriefFillThumbnails: boolean,
813
833
  addPageBriefFillThumbRows: Array<AddPageBriefFillThumbRowOfPageViewState>,
814
834
  showSuggestedRouteBanner: boolean,
@@ -836,6 +856,7 @@ interface PageElementRefs {
836
856
  stageResizeLeft: HTMLElementProxy<PageViewState, HTMLDivElement>,
837
857
  stageResizeRight: HTMLElementProxy<PageViewState, HTMLDivElement>,
838
858
  harmonyAssetsBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
859
+ previewUrlBarOpenTabBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
839
860
  breakpointDesktopBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
840
861
  breakpointTabletBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
841
862
  breakpointMobileBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
@@ -883,8 +904,10 @@ interface PageElementRefs {
883
904
  addPageSuggestedRouteApplyBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
884
905
  addPageSuggestedRouteDismissBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
885
906
  addPageContentMd: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
907
+ addPageBriefFillStopContentBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
886
908
  addPageFillContentFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
887
909
  addPageDesignMd: HTMLElementProxy<PageViewState, HTMLTextAreaElement>,
910
+ addPageBriefFillStopDesignBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
888
911
  addPageFillDesignFromImageBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
889
912
  addPageAttachReferenceBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
890
913
  addPageReferenceDrop: HTMLElementProxy<PageViewState, HTMLDivElement>,
@@ -900,6 +923,9 @@ interface PageElementRefs {
900
923
  addPageBriefFillCancelBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
901
924
  addPageBriefFillGenerateBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
902
925
  addPageBriefFillPopover: HTMLElementProxy<PageViewState, HTMLDivElement>,
926
+ addPageDiscardDismissBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
927
+ addPageDiscardConfirmBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,
928
+ addPageDiscardConfirmOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
903
929
  addPageSlideover: HTMLElementProxy<PageViewState, HTMLDivElement>,
904
930
  addPageOverlay: HTMLElementProxy<PageViewState, HTMLDivElement>,
905
931
  pageInfoInspectorBackBtn: HTMLElementProxy<PageViewState, HTMLButtonElement>,