@talkplay/shared-types 1.0.78 → 1.0.79
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 +1 -2
- package/dist/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1451,7 +1451,6 @@ type VerifyEmailAvailabilityResponse = {
|
|
|
1451
1451
|
};
|
|
1452
1452
|
|
|
1453
1453
|
type ListVoiceProfilesParams = PaginationParams & {
|
|
1454
|
-
name?: string;
|
|
1455
1454
|
source?: VoiceProfileSourcesEnum;
|
|
1456
1455
|
provider?: TtsProvidersEnum;
|
|
1457
1456
|
casterId?: string;
|
|
@@ -1476,7 +1475,7 @@ type ListVoiceTracksParams = PaginationParams & {
|
|
|
1476
1475
|
};
|
|
1477
1476
|
type ListVoiceTracksResponse = PaginatedResponseDTO<VoiceTrackEntity>;
|
|
1478
1477
|
|
|
1479
|
-
type ListCastersParams = Omit<ListVoiceProfilesParams, "
|
|
1478
|
+
type ListCastersParams = Omit<ListVoiceProfilesParams, "source" | "provider" | "casterId"> & {
|
|
1480
1479
|
name?: string;
|
|
1481
1480
|
email?: string;
|
|
1482
1481
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1451,7 +1451,6 @@ type VerifyEmailAvailabilityResponse = {
|
|
|
1451
1451
|
};
|
|
1452
1452
|
|
|
1453
1453
|
type ListVoiceProfilesParams = PaginationParams & {
|
|
1454
|
-
name?: string;
|
|
1455
1454
|
source?: VoiceProfileSourcesEnum;
|
|
1456
1455
|
provider?: TtsProvidersEnum;
|
|
1457
1456
|
casterId?: string;
|
|
@@ -1476,7 +1475,7 @@ type ListVoiceTracksParams = PaginationParams & {
|
|
|
1476
1475
|
};
|
|
1477
1476
|
type ListVoiceTracksResponse = PaginatedResponseDTO<VoiceTrackEntity>;
|
|
1478
1477
|
|
|
1479
|
-
type ListCastersParams = Omit<ListVoiceProfilesParams, "
|
|
1478
|
+
type ListCastersParams = Omit<ListVoiceProfilesParams, "source" | "provider" | "casterId"> & {
|
|
1480
1479
|
name?: string;
|
|
1481
1480
|
email?: string;
|
|
1482
1481
|
};
|