@runapi.ai/suno 0.2.6 → 0.2.8
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/README.md +9 -7
- package/dist/index.d.mts +566 -8
- package/dist/index.d.ts +566 -8
- package/dist/index.js +1608 -27
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1615 -34
- package/dist/index.mjs.map +1 -1
- package/package.json +18 -4
- package/skills/suno/README.md +4 -3
- package/skills/suno/SKILL.md +16 -11
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# Suno
|
|
1
|
+
# Suno API JavaScript SDK for RunAPI
|
|
2
2
|
|
|
3
|
-
The
|
|
3
|
+
The Suno JavaScript SDK is the language-specific package for Suno on RunAPI. Use this package for song generation, lyrics, vocals, extension, and audio transformation workflows when your application needs request bodies, task status lookup, and consistent RunAPI errors in JavaScript.
|
|
4
4
|
|
|
5
|
-
This
|
|
5
|
+
This README is the JavaScript package guide inside the public `suno-sdk` repository. For the repository overview, start at `../README.md`; for model details, use https://runapi.ai/models/suno; for API reference, use https://runapi.ai/docs#suno; for SDK docs, use https://runapi.ai/docs#sdk-suno.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
@@ -16,24 +16,26 @@ npm install @runapi.ai/suno
|
|
|
16
16
|
import { SunoClient } from '@runapi.ai/suno';
|
|
17
17
|
|
|
18
18
|
const client = new SunoClient();
|
|
19
|
-
const task = await client.
|
|
19
|
+
const task = await client.textToMusic.create({
|
|
20
20
|
// Pass the Suno JSON request body from https://runapi.ai/docs#suno.
|
|
21
21
|
});
|
|
22
|
-
const status = await client.
|
|
22
|
+
const status = await client.textToMusic.get(task.id);
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
Use `create` when you want to submit a task and return quickly, `get` when you need the latest task state, and `run` when a script should create and poll until completion. In web request handlers, prefer `create` plus webhook or later `get` polling so a worker is not held open.
|
|
26
26
|
|
|
27
|
+
RunAPI-generated file URLs are temporary. Download and store generated images, videos, audio, or other files in your own durable storage within 7 days; do not treat returned URLs as long-term assets.
|
|
28
|
+
|
|
27
29
|
## Language notes
|
|
28
30
|
|
|
29
|
-
Use the TypeScript types in `src/types.ts` and the resource classes under `src/resources` when building music applications. The available resources
|
|
31
|
+
Use the TypeScript types in `src/types.ts` and the resource classes under `src/resources` when building music applications. The available resources are `textToMusic`, `extendMusic`, `generateArtwork`, `coverAudio`, `addInstrumental`, `addVocals`, `separateAudioStems`, `generateMidi`, `convertAudio`, `visualizeMusic`, `generateLyrics`, `getTimestampedLyrics`, `replaceSection`, `createMashup`, `textToSound`, `generatePersona`, `boostStyle`, `voiceToValidationPhrase`, `regenerateValidationPhrase`, `generateVoice`, and `checkVoice`. Keep `RUNAPI_API_KEY` in the environment or your secret manager; never commit API keys or callback secrets.
|
|
30
32
|
|
|
31
33
|
## Links
|
|
32
34
|
|
|
33
35
|
- Model page: https://runapi.ai/models/suno
|
|
34
36
|
- SDK docs: https://runapi.ai/docs#sdk-suno
|
|
35
37
|
- Product docs: https://runapi.ai/docs#suno
|
|
36
|
-
- Pricing and rate limits: https://runapi.ai/models/suno/
|
|
38
|
+
- Pricing and rate limits: https://runapi.ai/models/suno/v4
|
|
37
39
|
- Provider comparison: https://runapi.ai/providers/suno
|
|
38
40
|
- Full catalog: https://runapi.ai/models
|
|
39
41
|
- Repository: https://github.com/runapi-ai/suno-sdk
|