@dataclouder/ngx-agent-cards 0.2.0 → 0.2.2

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.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=18.0.0",
6
6
  "@angular/core": ">=18.0.0",
@@ -411,6 +411,7 @@ declare enum EAgentType {
411
411
  interface VoiceCloning {
412
412
  sample: AudioStorage;
413
413
  transcription: string;
414
+ main: VoiceTTS;
414
415
  }
415
416
  interface IAgentCard {
416
417
  version?: string;
@@ -427,6 +428,7 @@ interface IAgentCard {
427
428
  conversationFlow?: IConversationFlow;
428
429
  manageable?: IManageable;
429
430
  learnable?: ILearnable;
431
+ auditable?: IAuditable;
430
432
  voiceCloning?: VoiceCloning;
431
433
  metaApp?: IAgentMetadata;
432
434
  }
@@ -644,7 +646,6 @@ declare class DefaultAgentCardsService extends EntityCommunicationService<IAgent
644
646
  getAllConversationCards(): Promise<IAgentCard[]>;
645
647
  findFilteredAgentCards(paginator: FiltersConfig): Promise<IFilterQueryResponse<IAgentCard>>;
646
648
  findAgentCardByTitle(title: string): Promise<IAgentCard>;
647
- remove(id: string): Promise<void>;
648
649
  getConversationUserChatSettings(): Promise<ChatUserSettings>;
649
650
  getListModels(provider: string): Promise<ModelName[]>;
650
651
  translateConversation(currentLang: string, targetLang: string, id: string): Promise<ChatUserSettings>;
@@ -984,6 +985,8 @@ declare class VideoPlayerNativeService implements OnDestroy {
984
985
  private defaultVideoUrl;
985
986
  private moodSubscription;
986
987
  private onVideoEndedBound;
988
+ private pendingPlayingHandler;
989
+ private pendingPlayingTarget;
987
990
  agentCard: _angular_core.WritableSignal<IAgentCard>;
988
991
  isVideoPlaying: _angular_core.WritableSignal<boolean>;
989
992
  constructor();
@@ -1230,7 +1233,6 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
1230
1233
  form: _angular_forms.FormGroup<{
1231
1234
  version: _angular_forms.FormControl<string>;
1232
1235
  id: _angular_forms.FormControl<string>;
1233
- title: _angular_forms.FormControl<string>;
1234
1236
  name: _angular_forms.FormControl<string>;
1235
1237
  description: _angular_forms.FormControl<string>;
1236
1238
  lang: _angular_forms.FormControl<string>;