@pie-players/pie-section-player-tools-tts-settings 0.3.22 → 0.3.23
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/TtsSettingsPanel.svelte
CHANGED
|
@@ -1448,6 +1448,8 @@ function normalizePreviewSpeechMarkOffsets(
|
|
|
1448
1448
|
} else if (activeTab === "browser") {
|
|
1449
1449
|
const next = {
|
|
1450
1450
|
backend: "browser" as const,
|
|
1451
|
+
serverProvider: undefined,
|
|
1452
|
+
provider: undefined,
|
|
1451
1453
|
defaultVoice: resolveVoiceForBackend("browser"),
|
|
1452
1454
|
rate: normalizeRate(browserRate),
|
|
1453
1455
|
pitch: normalizePitch(browserPitch),
|
|
@@ -1461,6 +1463,8 @@ function normalizePreviewSpeechMarkOffsets(
|
|
|
1461
1463
|
} else if (activeTab === "polly") {
|
|
1462
1464
|
const next = {
|
|
1463
1465
|
backend: "polly" as const,
|
|
1466
|
+
serverProvider: "polly" as const,
|
|
1467
|
+
provider: "polly" as const,
|
|
1464
1468
|
apiEndpoint: normalizeApiEndpoint(pollyApiEndpoint, getDefaultApiEndpoint()),
|
|
1465
1469
|
transportMode: "pie" as const,
|
|
1466
1470
|
endpointMode: "synthesizePath" as const,
|
|
@@ -1487,6 +1491,8 @@ function normalizePreviewSpeechMarkOffsets(
|
|
|
1487
1491
|
} else {
|
|
1488
1492
|
const next = {
|
|
1489
1493
|
backend: "google" as const,
|
|
1494
|
+
serverProvider: "google" as const,
|
|
1495
|
+
provider: "google" as const,
|
|
1490
1496
|
apiEndpoint: normalizeApiEndpoint(googleApiEndpoint, getDefaultApiEndpoint()),
|
|
1491
1497
|
transportMode: "pie" as const,
|
|
1492
1498
|
endpointMode: "synthesizePath" as const,
|
|
@@ -3534,6 +3534,8 @@ function Of(e, t) {
|
|
|
3534
3534
|
if (s(_) === "browser") {
|
|
3535
3535
|
const l = {
|
|
3536
3536
|
backend: "browser",
|
|
3537
|
+
serverProvider: void 0,
|
|
3538
|
+
provider: void 0,
|
|
3537
3539
|
defaultVoice: mr("browser"),
|
|
3538
3540
|
rate: Xt(s(re)),
|
|
3539
3541
|
pitch: Bn(s(vr)),
|
|
@@ -3546,6 +3548,8 @@ function Of(e, t) {
|
|
|
3546
3548
|
} else if (s(_) === "polly") {
|
|
3547
3549
|
const l = {
|
|
3548
3550
|
backend: "polly",
|
|
3551
|
+
serverProvider: "polly",
|
|
3552
|
+
provider: "polly",
|
|
3549
3553
|
apiEndpoint: _t(s(Qe), ze()),
|
|
3550
3554
|
transportMode: "pie",
|
|
3551
3555
|
endpointMode: "synthesizePath",
|
|
@@ -3571,6 +3575,8 @@ function Of(e, t) {
|
|
|
3571
3575
|
} else {
|
|
3572
3576
|
const l = {
|
|
3573
3577
|
backend: "google",
|
|
3578
|
+
serverProvider: "google",
|
|
3579
|
+
provider: "google",
|
|
3574
3580
|
apiEndpoint: _t(s($t), ze()),
|
|
3575
3581
|
transportMode: "pie",
|
|
3576
3582
|
endpointMode: "synthesizePath",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pie-players/pie-section-player-tools-tts-settings",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.23",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Reusable TTS settings panel for PIE section-player development tools",
|
|
6
6
|
"repository": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
],
|
|
40
40
|
"license": "MIT",
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@pie-players/pie-theme": "0.3.
|
|
42
|
+
"@pie-players/pie-theme": "0.3.23"
|
|
43
43
|
},
|
|
44
44
|
"types": "./dist/index.d.ts",
|
|
45
45
|
"scripts": {
|