@dataclouder/ngx-agent-cards 0.2.0 → 0.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataclouder/ngx-agent-cards",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=18.0.0",
6
6
  "@angular/core": ">=18.0.0",
@@ -427,6 +427,7 @@ interface IAgentCard {
427
427
  conversationFlow?: IConversationFlow;
428
428
  manageable?: IManageable;
429
429
  learnable?: ILearnable;
430
+ auditable?: IAuditable;
430
431
  voiceCloning?: VoiceCloning;
431
432
  metaApp?: IAgentMetadata;
432
433
  }
@@ -644,7 +645,6 @@ declare class DefaultAgentCardsService extends EntityCommunicationService<IAgent
644
645
  getAllConversationCards(): Promise<IAgentCard[]>;
645
646
  findFilteredAgentCards(paginator: FiltersConfig): Promise<IFilterQueryResponse<IAgentCard>>;
646
647
  findAgentCardByTitle(title: string): Promise<IAgentCard>;
647
- remove(id: string): Promise<void>;
648
648
  getConversationUserChatSettings(): Promise<ChatUserSettings>;
649
649
  getListModels(provider: string): Promise<ModelName[]>;
650
650
  translateConversation(currentLang: string, targetLang: string, id: string): Promise<ChatUserSettings>;
@@ -984,6 +984,8 @@ declare class VideoPlayerNativeService implements OnDestroy {
984
984
  private defaultVideoUrl;
985
985
  private moodSubscription;
986
986
  private onVideoEndedBound;
987
+ private pendingPlayingHandler;
988
+ private pendingPlayingTarget;
987
989
  agentCard: _angular_core.WritableSignal<IAgentCard>;
988
990
  isVideoPlaying: _angular_core.WritableSignal<boolean>;
989
991
  constructor();