@supertone/supertone 0.1.0 → 0.1.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/FUNCTIONS.md +2 -2
- package/README.md +59 -45
- package/dist/commonjs/lib/config.d.ts +2 -2
- package/dist/commonjs/lib/config.d.ts.map +1 -1
- package/dist/commonjs/lib/config.js +2 -2
- package/dist/commonjs/lib/config.js.map +1 -1
- package/dist/commonjs/sdk/texttospeech.d.ts.map +1 -1
- package/dist/commonjs/sdk/texttospeech.js +12 -9
- package/dist/commonjs/sdk/texttospeech.js.map +1 -1
- package/dist/esm/lib/config.d.ts +2 -2
- package/dist/esm/lib/config.d.ts.map +1 -1
- package/dist/esm/lib/config.js +2 -2
- package/dist/esm/lib/config.js.map +1 -1
- package/dist/esm/sdk/texttospeech.d.ts.map +1 -1
- package/dist/esm/sdk/texttospeech.js +12 -9
- package/dist/esm/sdk/texttospeech.js.map +1 -1
- package/examples/package.json +2 -2
- package/examples/textToSpeechCreateSpeech.example.ts +2 -2
- package/jsr.json +2 -2
- package/package.json +26 -10
- package/src/lib/config.ts +3 -2
- package/src/sdk/texttospeech.ts +474 -465
package/package.json
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supertone/supertone",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"author": "
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"author": "Supertone, Pillip Youn",
|
|
5
|
+
"bugs": {
|
|
6
|
+
"url": "https://github.com/supertone-inc/supertone-ts/issues"
|
|
7
|
+
},
|
|
8
|
+
"description": "TypeScript Client SDK for Supertone API Generated by Supertone.",
|
|
9
|
+
"homepage": "https://supertone.ai",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"tts",
|
|
12
|
+
"text-to-speech",
|
|
13
|
+
"supertone",
|
|
14
|
+
"voice",
|
|
15
|
+
"ai"
|
|
16
|
+
],
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/supertone-inc/supertone-ts.git"
|
|
20
|
+
},
|
|
5
21
|
"scripts": {
|
|
6
22
|
"lint": "eslint --cache --max-warnings=0 src",
|
|
7
23
|
"build": "tshy",
|
|
@@ -10,7 +26,7 @@
|
|
|
10
26
|
"type": "module",
|
|
11
27
|
"tshy": {
|
|
12
28
|
"sourceDialects": [
|
|
13
|
-
"supertone/source"
|
|
29
|
+
"@supertone/supertone/source"
|
|
14
30
|
],
|
|
15
31
|
"exports": {
|
|
16
32
|
".": "./src/index.ts",
|
|
@@ -42,7 +58,7 @@
|
|
|
42
58
|
"exports": {
|
|
43
59
|
".": {
|
|
44
60
|
"import": {
|
|
45
|
-
"supertone/source": "./src/index.ts",
|
|
61
|
+
"@supertone/supertone/source": "./src/index.ts",
|
|
46
62
|
"types": "./dist/esm/index.d.ts",
|
|
47
63
|
"default": "./dist/esm/index.js"
|
|
48
64
|
},
|
|
@@ -54,7 +70,7 @@
|
|
|
54
70
|
"./package.json": "./package.json",
|
|
55
71
|
"./types": {
|
|
56
72
|
"import": {
|
|
57
|
-
"supertone/source": "./src/types/index.ts",
|
|
73
|
+
"@supertone/supertone/source": "./src/types/index.ts",
|
|
58
74
|
"types": "./dist/esm/types/index.d.ts",
|
|
59
75
|
"default": "./dist/esm/types/index.js"
|
|
60
76
|
},
|
|
@@ -65,7 +81,7 @@
|
|
|
65
81
|
},
|
|
66
82
|
"./models/errors": {
|
|
67
83
|
"import": {
|
|
68
|
-
"supertone/source": "./src/models/errors/index.ts",
|
|
84
|
+
"@supertone/supertone/source": "./src/models/errors/index.ts",
|
|
69
85
|
"types": "./dist/esm/models/errors/index.d.ts",
|
|
70
86
|
"default": "./dist/esm/models/errors/index.js"
|
|
71
87
|
},
|
|
@@ -76,7 +92,7 @@
|
|
|
76
92
|
},
|
|
77
93
|
"./models": {
|
|
78
94
|
"import": {
|
|
79
|
-
"supertone/source": "./src/models/index.ts",
|
|
95
|
+
"@supertone/supertone/source": "./src/models/index.ts",
|
|
80
96
|
"types": "./dist/esm/models/index.d.ts",
|
|
81
97
|
"default": "./dist/esm/models/index.js"
|
|
82
98
|
},
|
|
@@ -87,7 +103,7 @@
|
|
|
87
103
|
},
|
|
88
104
|
"./models/operations": {
|
|
89
105
|
"import": {
|
|
90
|
-
"supertone/source": "./src/models/operations/index.ts",
|
|
106
|
+
"@supertone/supertone/source": "./src/models/operations/index.ts",
|
|
91
107
|
"types": "./dist/esm/models/operations/index.d.ts",
|
|
92
108
|
"default": "./dist/esm/models/operations/index.js"
|
|
93
109
|
},
|
|
@@ -98,7 +114,7 @@
|
|
|
98
114
|
},
|
|
99
115
|
"./*.js": {
|
|
100
116
|
"import": {
|
|
101
|
-
"supertone/source": "./src/*.ts",
|
|
117
|
+
"@supertone/supertone/source": "./src/*.ts",
|
|
102
118
|
"types": "./dist/esm/*.d.ts",
|
|
103
119
|
"default": "./dist/esm/*.js"
|
|
104
120
|
},
|
|
@@ -109,7 +125,7 @@
|
|
|
109
125
|
},
|
|
110
126
|
"./*": {
|
|
111
127
|
"import": {
|
|
112
|
-
"supertone/source": "./src/*.ts",
|
|
128
|
+
"@supertone/supertone/source": "./src/*.ts",
|
|
113
129
|
"types": "./dist/esm/*.d.ts",
|
|
114
130
|
"default": "./dist/esm/*.js"
|
|
115
131
|
},
|
package/src/lib/config.ts
CHANGED
|
@@ -61,7 +61,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
61
61
|
export const SDK_METADATA = {
|
|
62
62
|
language: "typescript",
|
|
63
63
|
openapiDocVersion: "0.8.69",
|
|
64
|
-
sdkVersion: "0.1.
|
|
64
|
+
sdkVersion: "0.1.1",
|
|
65
65
|
genVersion: "2.686.7",
|
|
66
|
-
userAgent:
|
|
66
|
+
userAgent:
|
|
67
|
+
"speakeasy-sdk/typescript 0.1.1 2.686.7 0.8.69 @supertone/supertone",
|
|
67
68
|
} as const;
|