@talkplay/shared-types 1.0.68 → 1.0.69

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/dist/index.d.mts CHANGED
@@ -929,6 +929,14 @@ type CasterEntity = BaseEntity & {
929
929
  bio: string;
930
930
  email: string;
931
931
  password: string;
932
+ voiceGender: VoiceGenderEnum;
933
+ segments: ProgramSegmentEnum[];
934
+ communicationTones: CommunicationToneEnum[];
935
+ emotionStyles: EmotionStyleEnum[];
936
+ formalityLevels: FormalityLevelEnum[];
937
+ humorStyle: HumorStyleEnum[];
938
+ languageStyles: LanguageStyleEnum[];
939
+ voiceEnergy: VoiceEnergyEnum[];
932
940
  avatarImgId: string;
933
941
  avatarImg?: S3FileEntity;
934
942
  voiceProfileId: string;
@@ -1458,7 +1466,7 @@ type ListVoiceTracksParams = PaginationParams & {
1458
1466
  };
1459
1467
  type ListVoiceTracksResponse = PaginatedResponseDTO<VoiceTrackEntity>;
1460
1468
 
1461
- type ListCastersParams = Omit<ListVoiceProfilesParams, "source" | "provider" | "casterId"> & {
1469
+ type ListCastersParams = Omit<ListVoiceProfilesParams, "name" | "source" | "provider" | "casterId"> & {
1462
1470
  name?: string;
1463
1471
  email?: string;
1464
1472
  };
package/dist/index.d.ts CHANGED
@@ -929,6 +929,14 @@ type CasterEntity = BaseEntity & {
929
929
  bio: string;
930
930
  email: string;
931
931
  password: string;
932
+ voiceGender: VoiceGenderEnum;
933
+ segments: ProgramSegmentEnum[];
934
+ communicationTones: CommunicationToneEnum[];
935
+ emotionStyles: EmotionStyleEnum[];
936
+ formalityLevels: FormalityLevelEnum[];
937
+ humorStyle: HumorStyleEnum[];
938
+ languageStyles: LanguageStyleEnum[];
939
+ voiceEnergy: VoiceEnergyEnum[];
932
940
  avatarImgId: string;
933
941
  avatarImg?: S3FileEntity;
934
942
  voiceProfileId: string;
@@ -1458,7 +1466,7 @@ type ListVoiceTracksParams = PaginationParams & {
1458
1466
  };
1459
1467
  type ListVoiceTracksResponse = PaginatedResponseDTO<VoiceTrackEntity>;
1460
1468
 
1461
- type ListCastersParams = Omit<ListVoiceProfilesParams, "source" | "provider" | "casterId"> & {
1469
+ type ListCastersParams = Omit<ListVoiceProfilesParams, "name" | "source" | "provider" | "casterId"> & {
1462
1470
  name?: string;
1463
1471
  email?: string;
1464
1472
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@talkplay/shared-types",
3
- "version": "1.0.68",
3
+ "version": "1.0.69",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",