@keystrokehq/spotify 0.0.15 → 0.0.16-integration-id-canonicalization.0
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 +22 -53
- package/dist/{schemas.mjs → browse-BaBol4IR.mjs} +87 -72
- package/dist/credential-sets/index.d.mts +2 -0
- package/dist/credential-sets/index.mjs +4 -0
- package/dist/index.d.mts +4 -1
- package/dist/index.mjs +6 -1
- package/dist/operations/index.d.mts +2 -0
- package/dist/operations/index.mjs +3 -0
- package/dist/{schemas.d.mts → schemas/index.d.mts} +408 -398
- package/dist/schemas/index.mjs +3 -0
- package/dist/spotify-app.credential-set-DT2fivE7.d.mts +34 -0
- package/dist/spotify-app.credential-set-O5UKOpLR.mjs +16 -0
- package/dist/spotify.credential-set-CS3lCW-x.mjs +44 -0
- package/dist/upload-playlist-cover-image.operation-CnyIlv11.mjs +4247 -0
- package/dist/upload-playlist-cover-image.operation-Cqbmylzz.d.mts +5246 -0
- package/package.json +12 -128
- package/dist/_official/index.d.mts +0 -28
- package/dist/_official/index.mjs +0 -3
- package/dist/_runtime/index.d.mts +0 -1
- package/dist/_runtime/index.mjs +0 -1
- package/dist/albums.d.mts +0 -256
- package/dist/albums.mjs +0 -72
- package/dist/artists.d.mts +0 -226
- package/dist/artists.mjs +0 -84
- package/dist/audio-analysis.d.mts +0 -88
- package/dist/audio-analysis.mjs +0 -19
- package/dist/audio-features.d.mts +0 -56
- package/dist/audio-features.mjs +0 -31
- package/dist/audiobooks.d.mts +0 -169
- package/dist/audiobooks.mjs +0 -59
- package/dist/browse.d.mts +0 -71
- package/dist/browse.mjs +0 -31
- package/dist/categories.d.mts +0 -111
- package/dist/categories.mjs +0 -66
- package/dist/chapters.d.mts +0 -158
- package/dist/chapters.mjs +0 -39
- package/dist/client.d.mts +0 -3486
- package/dist/client.mjs +0 -758
- package/dist/connection.d.mts +0 -2
- package/dist/connection.mjs +0 -3
- package/dist/episodes.d.mts +0 -144
- package/dist/episodes.mjs +0 -39
- package/dist/errors.d.mts +0 -34
- package/dist/errors.mjs +0 -89
- package/dist/events.d.mts +0 -613
- package/dist/events.mjs +0 -55
- package/dist/factory-DMprpzS1.mjs +0 -8
- package/dist/follow.d.mts +0 -74
- package/dist/follow.mjs +0 -65
- package/dist/genres.d.mts +0 -11
- package/dist/genres.mjs +0 -19
- package/dist/integration-B5oEi2sg.d.mts +0 -27
- package/dist/integration-D9ABjTOP.mjs +0 -51
- package/dist/library.d.mts +0 -431
- package/dist/library.mjs +0 -225
- package/dist/markets.d.mts +0 -11
- package/dist/markets.mjs +0 -20
- package/dist/me.d.mts +0 -162
- package/dist/me.mjs +0 -58
- package/dist/messaging.d.mts +0 -1
- package/dist/messaging.mjs +0 -1
- package/dist/operations.d.mts +0 -6
- package/dist/operations.mjs +0 -237
- package/dist/player.d.mts +0 -846
- package/dist/player.mjs +0 -220
- package/dist/playlists.d.mts +0 -517
- package/dist/playlists.mjs +0 -243
- package/dist/recommendations.d.mts +0 -141
- package/dist/recommendations.mjs +0 -137
- package/dist/search.d.mts +0 -386
- package/dist/search.mjs +0 -42
- package/dist/shows.d.mts +0 -152
- package/dist/shows.mjs +0 -59
- package/dist/tracks.d.mts +0 -168
- package/dist/tracks.mjs +0 -37
- package/dist/triggers.d.mts +0 -45
- package/dist/triggers.mjs +0 -186
- package/dist/users.d.mts +0 -32
- package/dist/users.mjs +0 -20
- package/dist/verification.d.mts +0 -1
- package/dist/verification.mjs +0 -1
package/README.md
CHANGED
|
@@ -17,18 +17,26 @@ This package provides official Spotify authoring surfaces for:
|
|
|
17
17
|
pnpm add @keystrokehq/spotify
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
-
##
|
|
20
|
+
## Package Shape
|
|
21
|
+
|
|
22
|
+
Canonical public barrels:
|
|
23
|
+
|
|
24
|
+
- `@keystrokehq/spotify` — re-exports credential sets, operations, and schemas
|
|
25
|
+
- `@keystrokehq/spotify/credential-sets` — user OAuth and platform-app credential sets
|
|
26
|
+
- `@keystrokehq/spotify/operations` — all Spotify operations (plus `*Tool` aliases)
|
|
27
|
+
- `@keystrokehq/spotify/schemas` — shared Zod schemas for Spotify API payloads
|
|
21
28
|
|
|
22
|
-
|
|
29
|
+
The residual provider seed descriptor remains at `catalog discovery via `src/provider-apps/`` until the provider-app primitive refactor deletes it.
|
|
23
30
|
|
|
24
|
-
|
|
31
|
+
## Credentials
|
|
25
32
|
|
|
26
|
-
|
|
33
|
+
Import credential sets from `@keystrokehq/spotify/credential-sets`:
|
|
27
34
|
|
|
28
|
-
- `
|
|
29
|
-
- `clientSecret`
|
|
35
|
+
- `spotifyCredentialSet` — user OAuth connection (`SPOTIFY_ACCESS_TOKEN`)
|
|
36
|
+
- `spotifyAppCredentialSet` — Keystroke-managed platform app (`clientId`, `clientSecret`, `exposure: 'platform-only'`)
|
|
37
|
+
- `SPOTIFY_OAUTH_SCOPES` — documented OAuth scope list for the user credential set
|
|
30
38
|
|
|
31
|
-
Spotify access tokens are short-lived and the public connection is modeled as OAuth. Provider-owned app credentials stay on the internal platform-app seed rather than the public user connection.
|
|
39
|
+
Spotify access tokens are short-lived and the public connection is modeled as OAuth with a standard refresh-token flow. Provider-owned app credentials stay on the internal platform-app seed rather than the public user connection.
|
|
32
40
|
|
|
33
41
|
## Safety Model
|
|
34
42
|
|
|
@@ -39,56 +47,17 @@ Spotify playback writes also inherit Spotify's own Premium and device-availabili
|
|
|
39
47
|
## Example
|
|
40
48
|
|
|
41
49
|
```ts
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import { createPlaylist } from '@keystrokehq/spotify/playlists';
|
|
50
|
+
import { spotifyCredentialSet } from '@keystrokehq/spotify/credential-sets';
|
|
51
|
+
import { getAlbumOperation, createPlaylistOperation } from '@keystrokehq/spotify/operations';
|
|
45
52
|
|
|
46
|
-
void
|
|
47
|
-
void
|
|
48
|
-
void
|
|
53
|
+
void spotifyCredentialSet;
|
|
54
|
+
void getAlbumOperation;
|
|
55
|
+
void createPlaylistOperation;
|
|
49
56
|
```
|
|
50
57
|
|
|
51
|
-
|
|
52
|
-
import { spotifyOperations } from '@keystrokehq/spotify/operations';
|
|
53
|
-
|
|
54
|
-
void spotifyOperations.get_spotify_album;
|
|
55
|
-
void spotifyOperations.SPOTIFY_GET_AN_ARTIST;
|
|
56
|
-
void spotifyOperations.SPOTIFY_GET_RECENTLY_PLAYED_TRACKS;
|
|
57
|
-
```
|
|
58
|
-
|
|
59
|
-
```ts
|
|
60
|
-
import { polling } from '@keystrokehq/spotify/triggers';
|
|
61
|
-
|
|
62
|
-
void polling.newDeviceAdded({ schedule: '5m' });
|
|
63
|
-
void polling.playlistItemsChanged({ playlistId: 'playlist-123', schedule: '10m' });
|
|
64
|
-
void polling.savedItemAdded({ itemType: 'track', schedule: '15m' });
|
|
65
|
-
```
|
|
58
|
+
Composio-compatible operation aliases remain available for compile-time docs via internal test utilities; prefer importing operations directly from `@keystrokehq/spotify/operations`.
|
|
66
59
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
- `@keystrokehq/spotify/albums`
|
|
70
|
-
- `@keystrokehq/spotify/artists`
|
|
71
|
-
- `@keystrokehq/spotify/tracks`
|
|
72
|
-
- `@keystrokehq/spotify/shows`
|
|
73
|
-
- `@keystrokehq/spotify/episodes`
|
|
74
|
-
- `@keystrokehq/spotify/audiobooks`
|
|
75
|
-
- `@keystrokehq/spotify/chapters`
|
|
76
|
-
- `@keystrokehq/spotify/search`
|
|
77
|
-
- `@keystrokehq/spotify/browse`
|
|
78
|
-
- `@keystrokehq/spotify/markets`
|
|
79
|
-
- `@keystrokehq/spotify/genres`
|
|
80
|
-
- `@keystrokehq/spotify/categories`
|
|
81
|
-
- `@keystrokehq/spotify/recommendations`
|
|
82
|
-
- `@keystrokehq/spotify/playlists`
|
|
83
|
-
- `@keystrokehq/spotify/users`
|
|
84
|
-
- `@keystrokehq/spotify/me`
|
|
85
|
-
- `@keystrokehq/spotify/follow`
|
|
86
|
-
- `@keystrokehq/spotify/player`
|
|
87
|
-
- `@keystrokehq/spotify/library`
|
|
88
|
-
- `@keystrokehq/spotify/audio-features`
|
|
89
|
-
- `@keystrokehq/spotify/audio-analysis`
|
|
90
|
-
- `@keystrokehq/spotify/operations`
|
|
91
|
-
- `@keystrokehq/spotify/triggers`
|
|
60
|
+
Polling trigger helpers live under `src/utils/triggers.ts` inside the package until a future trigger barrel is added.
|
|
92
61
|
|
|
93
62
|
## Polling Triggers
|
|
94
63
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
|
-
//#region src/schemas.ts
|
|
3
|
+
//#region src/schemas/shared.ts
|
|
4
4
|
const spotifyIdSchema = z.string().min(1);
|
|
5
5
|
const spotifyUriSchema = z.string().min(1);
|
|
6
6
|
const spotifyMarketSchema = z.string().length(2);
|
|
@@ -30,6 +30,37 @@ const spotifyResumePointSchema = z.object({
|
|
|
30
30
|
fullyPlayed: z.boolean(),
|
|
31
31
|
resumePositionMs: z.number().int().nonnegative()
|
|
32
32
|
});
|
|
33
|
+
const spotifyBooleanListSchema = z.array(z.boolean());
|
|
34
|
+
const spotifyMutationSuccessSchema = z.object({ success: z.literal(true) });
|
|
35
|
+
const spotifySnapshotResponseSchema = z.object({ snapshotId: z.string().min(1) });
|
|
36
|
+
function createSpotifyOffsetPageSchema(item) {
|
|
37
|
+
return z.object({
|
|
38
|
+
href: z.url().optional(),
|
|
39
|
+
items: z.array(item),
|
|
40
|
+
limit: z.number().int().nonnegative(),
|
|
41
|
+
nextPageToken: z.string().min(1).optional(),
|
|
42
|
+
offset: z.number().int().nonnegative(),
|
|
43
|
+
previousPageToken: z.string().min(1).optional(),
|
|
44
|
+
total: z.number().int().nonnegative().optional()
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
function createSpotifyCursorPageSchema(item) {
|
|
48
|
+
return z.object({
|
|
49
|
+
href: z.url().optional(),
|
|
50
|
+
items: z.array(item),
|
|
51
|
+
limit: z.number().int().nonnegative(),
|
|
52
|
+
nextPageToken: z.string().min(1).optional(),
|
|
53
|
+
previousPageToken: z.string().min(1).optional(),
|
|
54
|
+
total: z.number().int().nonnegative().optional(),
|
|
55
|
+
cursors: z.object({
|
|
56
|
+
after: z.string().optional(),
|
|
57
|
+
before: z.string().optional()
|
|
58
|
+
}).optional()
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
//#endregion
|
|
63
|
+
//#region src/schemas/catalog.ts
|
|
33
64
|
const spotifyUserSchema = z.object({
|
|
34
65
|
displayName: z.string().nullable().optional(),
|
|
35
66
|
externalUrls: spotifyExternalUrlsSchema.optional(),
|
|
@@ -205,32 +236,32 @@ const spotifyChapterSchema = z.object({
|
|
|
205
236
|
uri: spotifyUriSchema.optional()
|
|
206
237
|
});
|
|
207
238
|
const spotifyTrackOrEpisodeSchema = z.discriminatedUnion("type", [spotifyTrackSchema, spotifyEpisodeSchema]);
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
id: spotifyIdSchema,
|
|
215
|
-
images: z.array(spotifyImageSchema),
|
|
216
|
-
name: z.string().min(1),
|
|
217
|
-
owner: spotifyUserSchema,
|
|
218
|
-
public: z.boolean().nullable().optional(),
|
|
219
|
-
snapshotId: z.string().min(1).optional(),
|
|
220
|
-
tracks: z.object({
|
|
221
|
-
href: z.url().optional(),
|
|
222
|
-
total: z.number().int().nonnegative().optional()
|
|
223
|
-
}).optional(),
|
|
224
|
-
type: z.literal("playlist"),
|
|
225
|
-
uri: spotifyUriSchema.optional()
|
|
239
|
+
|
|
240
|
+
//#endregion
|
|
241
|
+
//#region src/schemas/library.ts
|
|
242
|
+
const spotifySavedAlbumItemSchema = z.object({
|
|
243
|
+
addedAt: spotifyTimestampSchema,
|
|
244
|
+
album: spotifyAlbumSchema
|
|
226
245
|
});
|
|
227
|
-
const
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
246
|
+
const spotifySavedTrackItemSchema = z.object({
|
|
247
|
+
addedAt: spotifyTimestampSchema,
|
|
248
|
+
track: spotifyTrackSchema
|
|
249
|
+
});
|
|
250
|
+
const spotifySavedShowItemSchema = z.object({
|
|
251
|
+
addedAt: spotifyTimestampSchema,
|
|
252
|
+
show: spotifyShowSchema
|
|
233
253
|
});
|
|
254
|
+
const spotifySavedEpisodeItemSchema = z.object({
|
|
255
|
+
addedAt: spotifyTimestampSchema,
|
|
256
|
+
episode: spotifyEpisodeSchema
|
|
257
|
+
});
|
|
258
|
+
const spotifySavedAudiobookItemSchema = z.object({
|
|
259
|
+
addedAt: spotifyTimestampSchema,
|
|
260
|
+
audiobook: spotifyAudiobookSchema
|
|
261
|
+
});
|
|
262
|
+
|
|
263
|
+
//#endregion
|
|
264
|
+
//#region src/schemas/player.ts
|
|
234
265
|
const spotifyDeviceSchema = z.object({
|
|
235
266
|
id: z.string().nullable().optional(),
|
|
236
267
|
isActive: z.boolean(),
|
|
@@ -277,26 +308,38 @@ const spotifyRecentlyPlayedItemSchema = z.object({
|
|
|
277
308
|
playedAt: spotifyTimestampSchema,
|
|
278
309
|
track: spotifyTrackSchema
|
|
279
310
|
});
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
311
|
+
|
|
312
|
+
//#endregion
|
|
313
|
+
//#region src/schemas/playlist.ts
|
|
314
|
+
const spotifyPlaylistSchema = z.object({
|
|
315
|
+
collaborative: z.boolean(),
|
|
316
|
+
description: z.string().nullable().optional(),
|
|
317
|
+
externalUrls: spotifyExternalUrlsSchema.optional(),
|
|
318
|
+
followers: spotifyFollowersSchema.optional(),
|
|
319
|
+
href: z.url().optional(),
|
|
320
|
+
id: spotifyIdSchema,
|
|
321
|
+
images: z.array(spotifyImageSchema),
|
|
322
|
+
name: z.string().min(1),
|
|
323
|
+
owner: spotifyUserSchema,
|
|
324
|
+
public: z.boolean().nullable().optional(),
|
|
325
|
+
snapshotId: z.string().min(1).optional(),
|
|
326
|
+
tracks: z.object({
|
|
327
|
+
href: z.url().optional(),
|
|
328
|
+
total: z.number().int().nonnegative().optional()
|
|
329
|
+
}).optional(),
|
|
330
|
+
type: z.literal("playlist"),
|
|
331
|
+
uri: spotifyUriSchema.optional()
|
|
295
332
|
});
|
|
296
|
-
const
|
|
297
|
-
|
|
298
|
-
|
|
333
|
+
const spotifyPlaylistImageSchema = spotifyImageSchema;
|
|
334
|
+
const spotifyPlaylistItemSchema = z.object({
|
|
335
|
+
addedAt: z.union([spotifyTimestampSchema, z.null()]).optional(),
|
|
336
|
+
addedBy: spotifyUserSchema.optional(),
|
|
337
|
+
isLocal: z.boolean(),
|
|
338
|
+
track: spotifyTrackOrEpisodeSchema.nullish()
|
|
299
339
|
});
|
|
340
|
+
|
|
341
|
+
//#endregion
|
|
342
|
+
//#region src/schemas/browse.ts
|
|
300
343
|
const spotifyCategorySchema = z.object({
|
|
301
344
|
href: z.url().optional(),
|
|
302
345
|
icons: z.array(spotifyImageSchema),
|
|
@@ -402,34 +445,6 @@ const spotifyRecommendationsSchema = z.object({
|
|
|
402
445
|
seeds: z.array(spotifyRecommendationSeedSchema),
|
|
403
446
|
tracks: z.array(spotifyTrackSchema)
|
|
404
447
|
});
|
|
405
|
-
const spotifyBooleanListSchema = z.array(z.boolean());
|
|
406
|
-
const spotifyMutationSuccessSchema = z.object({ success: z.literal(true) });
|
|
407
|
-
const spotifySnapshotResponseSchema = z.object({ snapshotId: z.string().min(1) });
|
|
408
|
-
function createSpotifyOffsetPageSchema(item) {
|
|
409
|
-
return z.object({
|
|
410
|
-
href: z.url().optional(),
|
|
411
|
-
items: z.array(item),
|
|
412
|
-
limit: z.number().int().nonnegative(),
|
|
413
|
-
nextPageToken: z.string().min(1).optional(),
|
|
414
|
-
offset: z.number().int().nonnegative(),
|
|
415
|
-
previousPageToken: z.string().min(1).optional(),
|
|
416
|
-
total: z.number().int().nonnegative().optional()
|
|
417
|
-
});
|
|
418
|
-
}
|
|
419
|
-
function createSpotifyCursorPageSchema(item) {
|
|
420
|
-
return z.object({
|
|
421
|
-
href: z.url().optional(),
|
|
422
|
-
items: z.array(item),
|
|
423
|
-
limit: z.number().int().nonnegative(),
|
|
424
|
-
nextPageToken: z.string().min(1).optional(),
|
|
425
|
-
previousPageToken: z.string().min(1).optional(),
|
|
426
|
-
total: z.number().int().nonnegative().optional(),
|
|
427
|
-
cursors: z.object({
|
|
428
|
-
after: z.string().optional(),
|
|
429
|
-
before: z.string().optional()
|
|
430
|
-
}).optional()
|
|
431
|
-
});
|
|
432
|
-
}
|
|
433
448
|
const spotifyAlbumPageSchema = createSpotifyOffsetPageSchema(spotifyAlbumSummarySchema);
|
|
434
449
|
const spotifyArtistPageSchema = createSpotifyOffsetPageSchema(spotifyArtistSchema);
|
|
435
450
|
const spotifyTrackPageSchema = createSpotifyOffsetPageSchema(spotifyTrackSchema);
|
|
@@ -457,4 +472,4 @@ const spotifySearchResultSchema = z.object({
|
|
|
457
472
|
});
|
|
458
473
|
|
|
459
474
|
//#endregion
|
|
460
|
-
export {
|
|
475
|
+
export { spotifyExternalIdsSchema as $, spotifyRecentlyPlayedItemSchema as A, spotifyAudiobookSchema as B, spotifyPlaylistImageSchema as C, spotifyPlaybackContextSchema as D, spotifyDeviceSchema as E, spotifySavedTrackItemSchema as F, spotifyShowSummarySchema as G, spotifyChapterSchema as H, spotifyAlbumSchema as I, spotifyUserSchema as J, spotifyTrackOrEpisodeSchema as K, spotifyAlbumSummarySchema as L, spotifySavedAudiobookItemSchema as M, spotifySavedEpisodeItemSchema as N, spotifyPlaybackStateSchema as O, spotifySavedShowItemSchema as P, spotifyCopyrightSchema as Q, spotifyArtistSchema as R, spotifyTrackPageSchema as S, spotifyPlaylistSchema as T, spotifyEpisodeSchema as U, spotifyAudiobookSummarySchema as V, spotifyShowSchema as W, createSpotifyOffsetPageSchema as X, createSpotifyCursorPageSchema as Y, spotifyBooleanListSchema as Z, spotifySavedEpisodePageSchema as _, spotifyAudiobookPageSchema as a, spotifyMutationSuccessSchema as at, spotifySearchResultSchema as b, spotifyChapterPageSchema as c, spotifyResumePointSchema as ct, spotifyPlaylistPageSchema as d, spotifyUriSchema as dt, spotifyExternalUrlsSchema as et, spotifyRecentlyPlayedPageSchema as f, spotifySavedAudiobookPageSchema as g, spotifySavedAlbumPageSchema as h, spotifyAudioFeaturesSchema as i, spotifyMarketSchema as it, spotifySavedAlbumItemSchema as j, spotifyQueueSchema as k, spotifyEpisodePageSchema as l, spotifySnapshotResponseSchema as lt, spotifyRecommendationsSchema as m, spotifyArtistPageSchema as n, spotifyIdSchema as nt, spotifyCategoryPageSchema as o, spotifyNamedReferenceSchema as ot, spotifyRecommendationSeedSchema as p, spotifyTrackSchema as q, spotifyAudioAnalysisSchema as r, spotifyImageSchema as rt, spotifyCategorySchema as s, spotifyRestrictionsSchema as st, spotifyAlbumPageSchema as t, spotifyFollowersSchema as tt, spotifyPlaylistItemPageSchema as u, spotifyTimestampSchema as ut, spotifySavedShowPageSchema as v, spotifyPlaylistItemSchema as w, spotifyShowPageSchema as x, spotifySavedTrackPageSchema as y, spotifyArtistSummarySchema as z };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { a as spotifyCredentialSet, i as SpotifyCredentials, n as spotifyAppCredentialSet, r as SPOTIFY_OAUTH_SCOPES, t as SpotifyAppCredentials } from "../spotify-app.credential-set-DT2fivE7.mjs";
|
|
2
|
+
export { SPOTIFY_OAUTH_SCOPES, type SpotifyAppCredentials, type SpotifyCredentials, spotifyCredentialSet as spotify, spotifyCredentialSet, spotifyAppCredentialSet };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { n as spotifyCredentialSet, t as SPOTIFY_OAUTH_SCOPES } from "../spotify.credential-set-CS3lCW-x.mjs";
|
|
2
|
+
import { t as spotifyAppCredentialSet } from "../spotify-app.credential-set-O5UKOpLR.mjs";
|
|
3
|
+
|
|
4
|
+
export { SPOTIFY_OAUTH_SCOPES, spotifyCredentialSet as spotify, spotifyCredentialSet, spotifyAppCredentialSet };
|
package/dist/index.d.mts
CHANGED
|
@@ -1 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import { a as spotifyCredentialSet, i as SpotifyCredentials, n as spotifyAppCredentialSet, r as SPOTIFY_OAUTH_SCOPES, t as SpotifyAppCredentials } from "./spotify-app.credential-set-DT2fivE7.mjs";
|
|
2
|
+
import { $ as getEpisodeOperation, A as listSavedEpisodesOperation, At as checkSavedShowsOperation, B as getSeveralEpisodesOperation, C as removeSavedAudiobooksOperation, Ct as getAvailableDevicesOperation, D as listUserPlaylistsOperation, Dt as checkUsersFollowPlaylistOperation, E as pausePlaybackOperation, Et as createPlaylistOperation, F as getTrackOperation, Ft as addItemsToPlaylistOperation, G as getSeveralAlbumsOperation, H as getSeveralAudiobooksOperation, I as getShowEpisodesOperation, J as getMyTopTracksOperation, K as getRecommendationsOperation, L as getShowOperation, M as listSavedAlbumsOperation, Mt as checkSavedAudiobooksOperation, N as listMyPlaylistsOperation, Nt as checkSavedAlbumsOperation, O as listSavedTracksOperation, Ot as checkFollowingArtistsOrUsersOperation, P as getUserOperation, Pt as addToQueueOperation, Q as getFeaturedPlaylistsOperation, R as getSeveralTracksOperation, S as removeSavedEpisodesOperation, St as getCurrentlyPlayingOperation, T as removeItemsFromPlaylistOperation, Tt as followPlaylistOperation, U as getSeveralAudioFeaturesOperation, V as getSeveralChaptersOperation, W as getSeveralArtistsOperation, X as getMeOperation, Y as getMyTopArtistsOperation, Z as getFollowedArtistsOperation, _ as saveAudiobooksOperation, _t as getQueueOperation, a as transferPlaybackOperation, at as getAvailableGenreSeedsOperation, b as removeSavedTracksOperation, bt as getPlaylistOperation, c as skipToNextOperation, ct as getAudioFeaturesOperation, d as setPlaybackVolumeOperation, dt as getArtistRelatedArtistsOperation, et as getChapterOperation, f as seekToPositionOperation, ft as getArtistAlbumsOperation, g as saveEpisodesOperation, gt as getRecentlyPlayedOperation, h as saveShowsOperation, ht as getAlbumOperation, i as unfollowPlaylistOperation, it as getAvailableMarketsOperation, j as listSavedAudiobooksOperation, jt as checkSavedEpisodesOperation, k as listSavedShowsOperation, kt as checkSavedTracksOperation, l as setShuffleModeOperation, lt as getAudioAnalysisOperation, m as saveTracksOperation, mt as getAlbumTracksOperation, n as updatePlaylistDetailsOperation, nt as getBrowseCategoryOperation, o as startOrResumePlaybackOperation, ot as getAudiobookChaptersOperation, p as searchOperation, pt as getArtistOperation, q as getNewReleasesOperation, r as unfollowArtistsOrUsersOperation, rt as getBrowseCategoriesOperation, s as skipToPreviousOperation, st as getAudiobookOperation, t as uploadPlaylistCoverImageOperation, tt as getCategoryPlaylistsOperation, u as setRepeatModeOperation, ut as getArtistTopTracksOperation, v as saveAlbumsOperation, vt as getPlaylistItemsOperation, w as removeSavedAlbumsOperation, wt as followArtistsOrUsersOperation, x as removeSavedShowsOperation, xt as getPlaybackStateOperation, y as reorderOrReplacePlaylistItemsOperation, yt as getPlaylistCoverImageOperation, z as getSeveralShowsOperation } from "./upload-playlist-cover-image.operation-Cqbmylzz.mjs";
|
|
3
|
+
import { SpotifyAlbum, SpotifyArtist, SpotifyAudioAnalysis, SpotifyAudioFeatures, SpotifyAudiobook, SpotifyChapter, SpotifyDevice, SpotifyEpisode, SpotifyPlaybackState, SpotifyPlaylist, SpotifyPlaylistItem, SpotifyQueue, SpotifyRecommendations, SpotifySearchResult, SpotifyShow, SpotifyTrack, SpotifyUser, createSpotifyCursorPageSchema, createSpotifyOffsetPageSchema, spotifyAlbumPageSchema, spotifyAlbumSchema, spotifyAlbumSummarySchema, spotifyArtistPageSchema, spotifyArtistSchema, spotifyArtistSummarySchema, spotifyAudioAnalysisSchema, spotifyAudioFeaturesSchema, spotifyAudiobookPageSchema, spotifyAudiobookSchema, spotifyAudiobookSummarySchema, spotifyBooleanListSchema, spotifyCategoryPageSchema, spotifyCategorySchema, spotifyChapterPageSchema, spotifyChapterSchema, spotifyCopyrightSchema, spotifyDeviceSchema, spotifyEpisodePageSchema, spotifyEpisodeSchema, spotifyExternalIdsSchema, spotifyExternalUrlsSchema, spotifyFollowersSchema, spotifyIdSchema, spotifyImageSchema, spotifyMarketSchema, spotifyMutationSuccessSchema, spotifyNamedReferenceSchema, spotifyPlaybackContextSchema, spotifyPlaybackStateSchema, spotifyPlaylistImageSchema, spotifyPlaylistItemPageSchema, spotifyPlaylistItemSchema, spotifyPlaylistPageSchema, spotifyPlaylistSchema, spotifyQueueSchema, spotifyRecentlyPlayedItemSchema, spotifyRecentlyPlayedPageSchema, spotifyRecommendationSeedSchema, spotifyRecommendationsSchema, spotifyRestrictionsSchema, spotifyResumePointSchema, spotifySavedAlbumItemSchema, spotifySavedAlbumPageSchema, spotifySavedAudiobookItemSchema, spotifySavedAudiobookPageSchema, spotifySavedEpisodeItemSchema, spotifySavedEpisodePageSchema, spotifySavedShowItemSchema, spotifySavedShowPageSchema, spotifySavedTrackItemSchema, spotifySavedTrackPageSchema, spotifySearchResultSchema, spotifyShowPageSchema, spotifyShowSchema, spotifyShowSummarySchema, spotifySnapshotResponseSchema, spotifyTimestampSchema, spotifyTrackOrEpisodeSchema, spotifyTrackPageSchema, spotifyTrackSchema, spotifyUriSchema, spotifyUserSchema } from "./schemas/index.mjs";
|
|
4
|
+
export { SPOTIFY_OAUTH_SCOPES, SpotifyAlbum, SpotifyAppCredentials, SpotifyArtist, SpotifyAudioAnalysis, SpotifyAudioFeatures, SpotifyAudiobook, SpotifyChapter, SpotifyCredentials, SpotifyDevice, SpotifyEpisode, SpotifyPlaybackState, SpotifyPlaylist, SpotifyPlaylistItem, SpotifyQueue, SpotifyRecommendations, SpotifySearchResult, SpotifyShow, SpotifyTrack, SpotifyUser, addItemsToPlaylistOperation, addItemsToPlaylistOperation as addItemsToPlaylistTool, addToQueueOperation, addToQueueOperation as addToQueueTool, checkFollowingArtistsOrUsersOperation, checkFollowingArtistsOrUsersOperation as checkFollowingArtistsOrUsersTool, checkSavedAlbumsOperation, checkSavedAlbumsOperation as checkSavedAlbumsTool, checkSavedAudiobooksOperation, checkSavedAudiobooksOperation as checkSavedAudiobooksTool, checkSavedEpisodesOperation, checkSavedEpisodesOperation as checkSavedEpisodesTool, checkSavedShowsOperation, checkSavedShowsOperation as checkSavedShowsTool, checkSavedTracksOperation, checkSavedTracksOperation as checkSavedTracksTool, checkUsersFollowPlaylistOperation, checkUsersFollowPlaylistOperation as checkUsersFollowPlaylistTool, createPlaylistOperation, createPlaylistOperation as createPlaylistTool, createSpotifyCursorPageSchema, createSpotifyOffsetPageSchema, followArtistsOrUsersOperation, followArtistsOrUsersOperation as followArtistsOrUsersTool, followPlaylistOperation, followPlaylistOperation as followPlaylistTool, getAlbumOperation, getAlbumOperation as getAlbumTool, getAlbumTracksOperation, getAlbumTracksOperation as getAlbumTracksTool, getArtistAlbumsOperation, getArtistAlbumsOperation as getArtistAlbumsTool, getArtistOperation, getArtistOperation as getArtistTool, getArtistRelatedArtistsOperation, getArtistRelatedArtistsOperation as getArtistRelatedArtistsTool, getArtistTopTracksOperation, getArtistTopTracksOperation as getArtistTopTracksTool, getAudioAnalysisOperation, getAudioAnalysisOperation as getAudioAnalysisTool, getAudioFeaturesOperation, getAudioFeaturesOperation as getAudioFeaturesTool, getAudiobookChaptersOperation, getAudiobookChaptersOperation as getAudiobookChaptersTool, getAudiobookOperation, getAudiobookOperation as getAudiobookTool, getAvailableDevicesOperation, getAvailableDevicesOperation as getAvailableDevicesTool, getAvailableGenreSeedsOperation, getAvailableGenreSeedsOperation as getAvailableGenreSeedsTool, getAvailableMarketsOperation, getAvailableMarketsOperation as getAvailableMarketsTool, getBrowseCategoriesOperation, getBrowseCategoriesOperation as getBrowseCategoriesTool, getBrowseCategoryOperation, getBrowseCategoryOperation as getBrowseCategoryTool, getCategoryPlaylistsOperation, getCategoryPlaylistsOperation as getCategoryPlaylistsTool, getChapterOperation, getChapterOperation as getChapterTool, getCurrentlyPlayingOperation, getCurrentlyPlayingOperation as getCurrentlyPlayingTool, getEpisodeOperation, getEpisodeOperation as getEpisodeTool, getFeaturedPlaylistsOperation, getFeaturedPlaylistsOperation as getFeaturedPlaylistsTool, getFollowedArtistsOperation, getFollowedArtistsOperation as getFollowedArtistsTool, getMeOperation, getMeOperation as getMeTool, getMyTopArtistsOperation, getMyTopArtistsOperation as getMyTopArtistsTool, getMyTopTracksOperation, getMyTopTracksOperation as getMyTopTracksTool, getNewReleasesOperation, getNewReleasesOperation as getNewReleasesTool, getPlaybackStateOperation, getPlaybackStateOperation as getPlaybackStateTool, getPlaylistCoverImageOperation, getPlaylistCoverImageOperation as getPlaylistCoverImageTool, getPlaylistItemsOperation, getPlaylistItemsOperation as getPlaylistItemsTool, getPlaylistOperation, getPlaylistOperation as getPlaylistTool, getQueueOperation, getQueueOperation as getQueueTool, getRecentlyPlayedOperation, getRecentlyPlayedOperation as getRecentlyPlayedTool, getRecommendationsOperation, getRecommendationsOperation as getRecommendationsTool, getSeveralAlbumsOperation, getSeveralAlbumsOperation as getSeveralAlbumsTool, getSeveralArtistsOperation, getSeveralArtistsOperation as getSeveralArtistsTool, getSeveralAudioFeaturesOperation, getSeveralAudioFeaturesOperation as getSeveralAudioFeaturesTool, getSeveralAudiobooksOperation, getSeveralAudiobooksOperation as getSeveralAudiobooksTool, getSeveralChaptersOperation, getSeveralChaptersOperation as getSeveralChaptersTool, getSeveralEpisodesOperation, getSeveralEpisodesOperation as getSeveralEpisodesTool, getSeveralShowsOperation, getSeveralShowsOperation as getSeveralShowsTool, getSeveralTracksOperation, getSeveralTracksOperation as getSeveralTracksTool, getShowEpisodesOperation, getShowEpisodesOperation as getShowEpisodesTool, getShowOperation, getShowOperation as getShowTool, getTrackOperation, getTrackOperation as getTrackTool, getUserOperation, getUserOperation as getUserTool, listMyPlaylistsOperation, listMyPlaylistsOperation as listMyPlaylistsTool, listSavedAlbumsOperation, listSavedAlbumsOperation as listSavedAlbumsTool, listSavedAudiobooksOperation, listSavedAudiobooksOperation as listSavedAudiobooksTool, listSavedEpisodesOperation, listSavedEpisodesOperation as listSavedEpisodesTool, listSavedShowsOperation, listSavedShowsOperation as listSavedShowsTool, listSavedTracksOperation, listSavedTracksOperation as listSavedTracksTool, listUserPlaylistsOperation, listUserPlaylistsOperation as listUserPlaylistsTool, pausePlaybackOperation, pausePlaybackOperation as pausePlaybackTool, removeItemsFromPlaylistOperation, removeItemsFromPlaylistOperation as removeItemsFromPlaylistTool, removeSavedAlbumsOperation, removeSavedAlbumsOperation as removeSavedAlbumsTool, removeSavedAudiobooksOperation, removeSavedAudiobooksOperation as removeSavedAudiobooksTool, removeSavedEpisodesOperation, removeSavedEpisodesOperation as removeSavedEpisodesTool, removeSavedShowsOperation, removeSavedShowsOperation as removeSavedShowsTool, removeSavedTracksOperation, removeSavedTracksOperation as removeSavedTracksTool, reorderOrReplacePlaylistItemsOperation, reorderOrReplacePlaylistItemsOperation as reorderOrReplacePlaylistItemsTool, saveAlbumsOperation, saveAlbumsOperation as saveAlbumsTool, saveAudiobooksOperation, saveAudiobooksOperation as saveAudiobooksTool, saveEpisodesOperation, saveEpisodesOperation as saveEpisodesTool, saveShowsOperation, saveShowsOperation as saveShowsTool, saveTracksOperation, saveTracksOperation as saveTracksTool, searchOperation, searchOperation as searchTool, seekToPositionOperation, seekToPositionOperation as seekToPositionTool, setPlaybackVolumeOperation, setPlaybackVolumeOperation as setPlaybackVolumeTool, setRepeatModeOperation, setRepeatModeOperation as setRepeatModeTool, setShuffleModeOperation, setShuffleModeOperation as setShuffleModeTool, skipToNextOperation, skipToNextOperation as skipToNextTool, skipToPreviousOperation, skipToPreviousOperation as skipToPreviousTool, spotifyCredentialSet as spotify, spotifyCredentialSet, spotifyAlbumPageSchema, spotifyAlbumSchema, spotifyAlbumSummarySchema, spotifyAppCredentialSet, spotifyArtistPageSchema, spotifyArtistSchema, spotifyArtistSummarySchema, spotifyAudioAnalysisSchema, spotifyAudioFeaturesSchema, spotifyAudiobookPageSchema, spotifyAudiobookSchema, spotifyAudiobookSummarySchema, spotifyBooleanListSchema, spotifyCategoryPageSchema, spotifyCategorySchema, spotifyChapterPageSchema, spotifyChapterSchema, spotifyCopyrightSchema, spotifyDeviceSchema, spotifyEpisodePageSchema, spotifyEpisodeSchema, spotifyExternalIdsSchema, spotifyExternalUrlsSchema, spotifyFollowersSchema, spotifyIdSchema, spotifyImageSchema, spotifyMarketSchema, spotifyMutationSuccessSchema, spotifyNamedReferenceSchema, spotifyPlaybackContextSchema, spotifyPlaybackStateSchema, spotifyPlaylistImageSchema, spotifyPlaylistItemPageSchema, spotifyPlaylistItemSchema, spotifyPlaylistPageSchema, spotifyPlaylistSchema, spotifyQueueSchema, spotifyRecentlyPlayedItemSchema, spotifyRecentlyPlayedPageSchema, spotifyRecommendationSeedSchema, spotifyRecommendationsSchema, spotifyRestrictionsSchema, spotifyResumePointSchema, spotifySavedAlbumItemSchema, spotifySavedAlbumPageSchema, spotifySavedAudiobookItemSchema, spotifySavedAudiobookPageSchema, spotifySavedEpisodeItemSchema, spotifySavedEpisodePageSchema, spotifySavedShowItemSchema, spotifySavedShowPageSchema, spotifySavedTrackItemSchema, spotifySavedTrackPageSchema, spotifySearchResultSchema, spotifyShowPageSchema, spotifyShowSchema, spotifyShowSummarySchema, spotifySnapshotResponseSchema, spotifyTimestampSchema, spotifyTrackOrEpisodeSchema, spotifyTrackPageSchema, spotifyTrackSchema, spotifyUriSchema, spotifyUserSchema, startOrResumePlaybackOperation, startOrResumePlaybackOperation as startOrResumePlaybackTool, transferPlaybackOperation, transferPlaybackOperation as transferPlaybackTool, unfollowArtistsOrUsersOperation, unfollowArtistsOrUsersOperation as unfollowArtistsOrUsersTool, unfollowPlaylistOperation, unfollowPlaylistOperation as unfollowPlaylistTool, updatePlaylistDetailsOperation, updatePlaylistDetailsOperation as updatePlaylistDetailsTool, uploadPlaylistCoverImageOperation, uploadPlaylistCoverImageOperation as uploadPlaylistCoverImageTool };
|
package/dist/index.mjs
CHANGED
|
@@ -1 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { n as spotifyCredentialSet, t as SPOTIFY_OAUTH_SCOPES } from "./spotify.credential-set-CS3lCW-x.mjs";
|
|
2
|
+
import { t as spotifyAppCredentialSet } from "./spotify-app.credential-set-O5UKOpLR.mjs";
|
|
3
|
+
import { $ as spotifyExternalIdsSchema, A as spotifyRecentlyPlayedItemSchema, B as spotifyAudiobookSchema, C as spotifyPlaylistImageSchema, D as spotifyPlaybackContextSchema, E as spotifyDeviceSchema, F as spotifySavedTrackItemSchema, G as spotifyShowSummarySchema, H as spotifyChapterSchema, I as spotifyAlbumSchema, J as spotifyUserSchema, K as spotifyTrackOrEpisodeSchema, L as spotifyAlbumSummarySchema, M as spotifySavedAudiobookItemSchema, N as spotifySavedEpisodeItemSchema, O as spotifyPlaybackStateSchema, P as spotifySavedShowItemSchema, Q as spotifyCopyrightSchema, R as spotifyArtistSchema, S as spotifyTrackPageSchema, T as spotifyPlaylistSchema, U as spotifyEpisodeSchema, V as spotifyAudiobookSummarySchema, W as spotifyShowSchema, X as createSpotifyOffsetPageSchema, Y as createSpotifyCursorPageSchema, Z as spotifyBooleanListSchema, _ as spotifySavedEpisodePageSchema, a as spotifyAudiobookPageSchema, at as spotifyMutationSuccessSchema, b as spotifySearchResultSchema, c as spotifyChapterPageSchema, ct as spotifyResumePointSchema, d as spotifyPlaylistPageSchema, dt as spotifyUriSchema, et as spotifyExternalUrlsSchema, f as spotifyRecentlyPlayedPageSchema, g as spotifySavedAudiobookPageSchema, h as spotifySavedAlbumPageSchema, i as spotifyAudioFeaturesSchema, it as spotifyMarketSchema, j as spotifySavedAlbumItemSchema, k as spotifyQueueSchema, l as spotifyEpisodePageSchema, lt as spotifySnapshotResponseSchema, m as spotifyRecommendationsSchema, n as spotifyArtistPageSchema, nt as spotifyIdSchema, o as spotifyCategoryPageSchema, ot as spotifyNamedReferenceSchema, p as spotifyRecommendationSeedSchema, q as spotifyTrackSchema, r as spotifyAudioAnalysisSchema, rt as spotifyImageSchema, s as spotifyCategorySchema, st as spotifyRestrictionsSchema, t as spotifyAlbumPageSchema, tt as spotifyFollowersSchema, u as spotifyPlaylistItemPageSchema, ut as spotifyTimestampSchema, v as spotifySavedShowPageSchema, w as spotifyPlaylistItemSchema, x as spotifyShowPageSchema, y as spotifySavedTrackPageSchema, z as spotifyArtistSummarySchema } from "./browse-BaBol4IR.mjs";
|
|
4
|
+
import { $ as getEpisodeOperation, A as listSavedEpisodesOperation, At as checkSavedShowsOperation, B as getSeveralEpisodesOperation, C as removeSavedAudiobooksOperation, Ct as getAvailableDevicesOperation, D as listUserPlaylistsOperation, Dt as checkUsersFollowPlaylistOperation, E as pausePlaybackOperation, Et as createPlaylistOperation, F as getTrackOperation, Ft as addItemsToPlaylistOperation, G as getSeveralAlbumsOperation, H as getSeveralAudiobooksOperation, I as getShowEpisodesOperation, J as getMyTopTracksOperation, K as getRecommendationsOperation, L as getShowOperation, M as listSavedAlbumsOperation, Mt as checkSavedAudiobooksOperation, N as listMyPlaylistsOperation, Nt as checkSavedAlbumsOperation, O as listSavedTracksOperation, Ot as checkFollowingArtistsOrUsersOperation, P as getUserOperation, Pt as addToQueueOperation, Q as getFeaturedPlaylistsOperation, R as getSeveralTracksOperation, S as removeSavedEpisodesOperation, St as getCurrentlyPlayingOperation, T as removeItemsFromPlaylistOperation, Tt as followPlaylistOperation, U as getSeveralAudioFeaturesOperation, V as getSeveralChaptersOperation, W as getSeveralArtistsOperation, X as getMeOperation, Y as getMyTopArtistsOperation, Z as getFollowedArtistsOperation, _ as saveAudiobooksOperation, _t as getQueueOperation, a as transferPlaybackOperation, at as getAvailableGenreSeedsOperation, b as removeSavedTracksOperation, bt as getPlaylistOperation, c as skipToNextOperation, ct as getAudioFeaturesOperation, d as setPlaybackVolumeOperation, dt as getArtistRelatedArtistsOperation, et as getChapterOperation, f as seekToPositionOperation, ft as getArtistAlbumsOperation, g as saveEpisodesOperation, gt as getRecentlyPlayedOperation, h as saveShowsOperation, ht as getAlbumOperation, i as unfollowPlaylistOperation, it as getAvailableMarketsOperation, j as listSavedAudiobooksOperation, jt as checkSavedEpisodesOperation, k as listSavedShowsOperation, kt as checkSavedTracksOperation, l as setShuffleModeOperation, lt as getAudioAnalysisOperation, m as saveTracksOperation, mt as getAlbumTracksOperation, n as updatePlaylistDetailsOperation, nt as getBrowseCategoryOperation, o as startOrResumePlaybackOperation, ot as getAudiobookChaptersOperation, p as searchOperation, pt as getArtistOperation, q as getNewReleasesOperation, r as unfollowArtistsOrUsersOperation, rt as getBrowseCategoriesOperation, s as skipToPreviousOperation, st as getAudiobookOperation, t as uploadPlaylistCoverImageOperation, tt as getCategoryPlaylistsOperation, u as setRepeatModeOperation, ut as getArtistTopTracksOperation, v as saveAlbumsOperation, vt as getPlaylistItemsOperation, w as removeSavedAlbumsOperation, wt as followArtistsOrUsersOperation, x as removeSavedShowsOperation, xt as getPlaybackStateOperation, y as reorderOrReplacePlaylistItemsOperation, yt as getPlaylistCoverImageOperation, z as getSeveralShowsOperation } from "./upload-playlist-cover-image.operation-CnyIlv11.mjs";
|
|
5
|
+
|
|
6
|
+
export { SPOTIFY_OAUTH_SCOPES, addItemsToPlaylistOperation, addItemsToPlaylistOperation as addItemsToPlaylistTool, addToQueueOperation, addToQueueOperation as addToQueueTool, checkFollowingArtistsOrUsersOperation, checkFollowingArtistsOrUsersOperation as checkFollowingArtistsOrUsersTool, checkSavedAlbumsOperation, checkSavedAlbumsOperation as checkSavedAlbumsTool, checkSavedAudiobooksOperation, checkSavedAudiobooksOperation as checkSavedAudiobooksTool, checkSavedEpisodesOperation, checkSavedEpisodesOperation as checkSavedEpisodesTool, checkSavedShowsOperation, checkSavedShowsOperation as checkSavedShowsTool, checkSavedTracksOperation, checkSavedTracksOperation as checkSavedTracksTool, checkUsersFollowPlaylistOperation, checkUsersFollowPlaylistOperation as checkUsersFollowPlaylistTool, createPlaylistOperation, createPlaylistOperation as createPlaylistTool, createSpotifyCursorPageSchema, createSpotifyOffsetPageSchema, followArtistsOrUsersOperation, followArtistsOrUsersOperation as followArtistsOrUsersTool, followPlaylistOperation, followPlaylistOperation as followPlaylistTool, getAlbumOperation, getAlbumOperation as getAlbumTool, getAlbumTracksOperation, getAlbumTracksOperation as getAlbumTracksTool, getArtistAlbumsOperation, getArtistAlbumsOperation as getArtistAlbumsTool, getArtistOperation, getArtistOperation as getArtistTool, getArtistRelatedArtistsOperation, getArtistRelatedArtistsOperation as getArtistRelatedArtistsTool, getArtistTopTracksOperation, getArtistTopTracksOperation as getArtistTopTracksTool, getAudioAnalysisOperation, getAudioAnalysisOperation as getAudioAnalysisTool, getAudioFeaturesOperation, getAudioFeaturesOperation as getAudioFeaturesTool, getAudiobookChaptersOperation, getAudiobookChaptersOperation as getAudiobookChaptersTool, getAudiobookOperation, getAudiobookOperation as getAudiobookTool, getAvailableDevicesOperation, getAvailableDevicesOperation as getAvailableDevicesTool, getAvailableGenreSeedsOperation, getAvailableGenreSeedsOperation as getAvailableGenreSeedsTool, getAvailableMarketsOperation, getAvailableMarketsOperation as getAvailableMarketsTool, getBrowseCategoriesOperation, getBrowseCategoriesOperation as getBrowseCategoriesTool, getBrowseCategoryOperation, getBrowseCategoryOperation as getBrowseCategoryTool, getCategoryPlaylistsOperation, getCategoryPlaylistsOperation as getCategoryPlaylistsTool, getChapterOperation, getChapterOperation as getChapterTool, getCurrentlyPlayingOperation, getCurrentlyPlayingOperation as getCurrentlyPlayingTool, getEpisodeOperation, getEpisodeOperation as getEpisodeTool, getFeaturedPlaylistsOperation, getFeaturedPlaylistsOperation as getFeaturedPlaylistsTool, getFollowedArtistsOperation, getFollowedArtistsOperation as getFollowedArtistsTool, getMeOperation, getMeOperation as getMeTool, getMyTopArtistsOperation, getMyTopArtistsOperation as getMyTopArtistsTool, getMyTopTracksOperation, getMyTopTracksOperation as getMyTopTracksTool, getNewReleasesOperation, getNewReleasesOperation as getNewReleasesTool, getPlaybackStateOperation, getPlaybackStateOperation as getPlaybackStateTool, getPlaylistCoverImageOperation, getPlaylistCoverImageOperation as getPlaylistCoverImageTool, getPlaylistItemsOperation, getPlaylistItemsOperation as getPlaylistItemsTool, getPlaylistOperation, getPlaylistOperation as getPlaylistTool, getQueueOperation, getQueueOperation as getQueueTool, getRecentlyPlayedOperation, getRecentlyPlayedOperation as getRecentlyPlayedTool, getRecommendationsOperation, getRecommendationsOperation as getRecommendationsTool, getSeveralAlbumsOperation, getSeveralAlbumsOperation as getSeveralAlbumsTool, getSeveralArtistsOperation, getSeveralArtistsOperation as getSeveralArtistsTool, getSeveralAudioFeaturesOperation, getSeveralAudioFeaturesOperation as getSeveralAudioFeaturesTool, getSeveralAudiobooksOperation, getSeveralAudiobooksOperation as getSeveralAudiobooksTool, getSeveralChaptersOperation, getSeveralChaptersOperation as getSeveralChaptersTool, getSeveralEpisodesOperation, getSeveralEpisodesOperation as getSeveralEpisodesTool, getSeveralShowsOperation, getSeveralShowsOperation as getSeveralShowsTool, getSeveralTracksOperation, getSeveralTracksOperation as getSeveralTracksTool, getShowEpisodesOperation, getShowEpisodesOperation as getShowEpisodesTool, getShowOperation, getShowOperation as getShowTool, getTrackOperation, getTrackOperation as getTrackTool, getUserOperation, getUserOperation as getUserTool, listMyPlaylistsOperation, listMyPlaylistsOperation as listMyPlaylistsTool, listSavedAlbumsOperation, listSavedAlbumsOperation as listSavedAlbumsTool, listSavedAudiobooksOperation, listSavedAudiobooksOperation as listSavedAudiobooksTool, listSavedEpisodesOperation, listSavedEpisodesOperation as listSavedEpisodesTool, listSavedShowsOperation, listSavedShowsOperation as listSavedShowsTool, listSavedTracksOperation, listSavedTracksOperation as listSavedTracksTool, listUserPlaylistsOperation, listUserPlaylistsOperation as listUserPlaylistsTool, pausePlaybackOperation, pausePlaybackOperation as pausePlaybackTool, removeItemsFromPlaylistOperation, removeItemsFromPlaylistOperation as removeItemsFromPlaylistTool, removeSavedAlbumsOperation, removeSavedAlbumsOperation as removeSavedAlbumsTool, removeSavedAudiobooksOperation, removeSavedAudiobooksOperation as removeSavedAudiobooksTool, removeSavedEpisodesOperation, removeSavedEpisodesOperation as removeSavedEpisodesTool, removeSavedShowsOperation, removeSavedShowsOperation as removeSavedShowsTool, removeSavedTracksOperation, removeSavedTracksOperation as removeSavedTracksTool, reorderOrReplacePlaylistItemsOperation, reorderOrReplacePlaylistItemsOperation as reorderOrReplacePlaylistItemsTool, saveAlbumsOperation, saveAlbumsOperation as saveAlbumsTool, saveAudiobooksOperation, saveAudiobooksOperation as saveAudiobooksTool, saveEpisodesOperation, saveEpisodesOperation as saveEpisodesTool, saveShowsOperation, saveShowsOperation as saveShowsTool, saveTracksOperation, saveTracksOperation as saveTracksTool, searchOperation, searchOperation as searchTool, seekToPositionOperation, seekToPositionOperation as seekToPositionTool, setPlaybackVolumeOperation, setPlaybackVolumeOperation as setPlaybackVolumeTool, setRepeatModeOperation, setRepeatModeOperation as setRepeatModeTool, setShuffleModeOperation, setShuffleModeOperation as setShuffleModeTool, skipToNextOperation, skipToNextOperation as skipToNextTool, skipToPreviousOperation, skipToPreviousOperation as skipToPreviousTool, spotifyCredentialSet as spotify, spotifyCredentialSet, spotifyAlbumPageSchema, spotifyAlbumSchema, spotifyAlbumSummarySchema, spotifyAppCredentialSet, spotifyArtistPageSchema, spotifyArtistSchema, spotifyArtistSummarySchema, spotifyAudioAnalysisSchema, spotifyAudioFeaturesSchema, spotifyAudiobookPageSchema, spotifyAudiobookSchema, spotifyAudiobookSummarySchema, spotifyBooleanListSchema, spotifyCategoryPageSchema, spotifyCategorySchema, spotifyChapterPageSchema, spotifyChapterSchema, spotifyCopyrightSchema, spotifyDeviceSchema, spotifyEpisodePageSchema, spotifyEpisodeSchema, spotifyExternalIdsSchema, spotifyExternalUrlsSchema, spotifyFollowersSchema, spotifyIdSchema, spotifyImageSchema, spotifyMarketSchema, spotifyMutationSuccessSchema, spotifyNamedReferenceSchema, spotifyPlaybackContextSchema, spotifyPlaybackStateSchema, spotifyPlaylistImageSchema, spotifyPlaylistItemPageSchema, spotifyPlaylistItemSchema, spotifyPlaylistPageSchema, spotifyPlaylistSchema, spotifyQueueSchema, spotifyRecentlyPlayedItemSchema, spotifyRecentlyPlayedPageSchema, spotifyRecommendationSeedSchema, spotifyRecommendationsSchema, spotifyRestrictionsSchema, spotifyResumePointSchema, spotifySavedAlbumItemSchema, spotifySavedAlbumPageSchema, spotifySavedAudiobookItemSchema, spotifySavedAudiobookPageSchema, spotifySavedEpisodeItemSchema, spotifySavedEpisodePageSchema, spotifySavedShowItemSchema, spotifySavedShowPageSchema, spotifySavedTrackItemSchema, spotifySavedTrackPageSchema, spotifySearchResultSchema, spotifyShowPageSchema, spotifyShowSchema, spotifyShowSummarySchema, spotifySnapshotResponseSchema, spotifyTimestampSchema, spotifyTrackOrEpisodeSchema, spotifyTrackPageSchema, spotifyTrackSchema, spotifyUriSchema, spotifyUserSchema, startOrResumePlaybackOperation, startOrResumePlaybackOperation as startOrResumePlaybackTool, transferPlaybackOperation, transferPlaybackOperation as transferPlaybackTool, unfollowArtistsOrUsersOperation, unfollowArtistsOrUsersOperation as unfollowArtistsOrUsersTool, unfollowPlaylistOperation, unfollowPlaylistOperation as unfollowPlaylistTool, updatePlaylistDetailsOperation, updatePlaylistDetailsOperation as updatePlaylistDetailsTool, uploadPlaylistCoverImageOperation, uploadPlaylistCoverImageOperation as uploadPlaylistCoverImageTool };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { $ as getEpisodeOperation, A as listSavedEpisodesOperation, At as checkSavedShowsOperation, B as getSeveralEpisodesOperation, C as removeSavedAudiobooksOperation, Ct as getAvailableDevicesOperation, D as listUserPlaylistsOperation, Dt as checkUsersFollowPlaylistOperation, E as pausePlaybackOperation, Et as createPlaylistOperation, F as getTrackOperation, Ft as addItemsToPlaylistOperation, G as getSeveralAlbumsOperation, H as getSeveralAudiobooksOperation, I as getShowEpisodesOperation, J as getMyTopTracksOperation, K as getRecommendationsOperation, L as getShowOperation, M as listSavedAlbumsOperation, Mt as checkSavedAudiobooksOperation, N as listMyPlaylistsOperation, Nt as checkSavedAlbumsOperation, O as listSavedTracksOperation, Ot as checkFollowingArtistsOrUsersOperation, P as getUserOperation, Pt as addToQueueOperation, Q as getFeaturedPlaylistsOperation, R as getSeveralTracksOperation, S as removeSavedEpisodesOperation, St as getCurrentlyPlayingOperation, T as removeItemsFromPlaylistOperation, Tt as followPlaylistOperation, U as getSeveralAudioFeaturesOperation, V as getSeveralChaptersOperation, W as getSeveralArtistsOperation, X as getMeOperation, Y as getMyTopArtistsOperation, Z as getFollowedArtistsOperation, _ as saveAudiobooksOperation, _t as getQueueOperation, a as transferPlaybackOperation, at as getAvailableGenreSeedsOperation, b as removeSavedTracksOperation, bt as getPlaylistOperation, c as skipToNextOperation, ct as getAudioFeaturesOperation, d as setPlaybackVolumeOperation, dt as getArtistRelatedArtistsOperation, et as getChapterOperation, f as seekToPositionOperation, ft as getArtistAlbumsOperation, g as saveEpisodesOperation, gt as getRecentlyPlayedOperation, h as saveShowsOperation, ht as getAlbumOperation, i as unfollowPlaylistOperation, it as getAvailableMarketsOperation, j as listSavedAudiobooksOperation, jt as checkSavedEpisodesOperation, k as listSavedShowsOperation, kt as checkSavedTracksOperation, l as setShuffleModeOperation, lt as getAudioAnalysisOperation, m as saveTracksOperation, mt as getAlbumTracksOperation, n as updatePlaylistDetailsOperation, nt as getBrowseCategoryOperation, o as startOrResumePlaybackOperation, ot as getAudiobookChaptersOperation, p as searchOperation, pt as getArtistOperation, q as getNewReleasesOperation, r as unfollowArtistsOrUsersOperation, rt as getBrowseCategoriesOperation, s as skipToPreviousOperation, st as getAudiobookOperation, t as uploadPlaylistCoverImageOperation, tt as getCategoryPlaylistsOperation, u as setRepeatModeOperation, ut as getArtistTopTracksOperation, v as saveAlbumsOperation, vt as getPlaylistItemsOperation, w as removeSavedAlbumsOperation, wt as followArtistsOrUsersOperation, x as removeSavedShowsOperation, xt as getPlaybackStateOperation, y as reorderOrReplacePlaylistItemsOperation, yt as getPlaylistCoverImageOperation, z as getSeveralShowsOperation } from "../upload-playlist-cover-image.operation-Cqbmylzz.mjs";
|
|
2
|
+
export { addItemsToPlaylistOperation, addItemsToPlaylistOperation as addItemsToPlaylistTool, addToQueueOperation, addToQueueOperation as addToQueueTool, checkFollowingArtistsOrUsersOperation, checkFollowingArtistsOrUsersOperation as checkFollowingArtistsOrUsersTool, checkSavedAlbumsOperation, checkSavedAlbumsOperation as checkSavedAlbumsTool, checkSavedAudiobooksOperation, checkSavedAudiobooksOperation as checkSavedAudiobooksTool, checkSavedEpisodesOperation, checkSavedEpisodesOperation as checkSavedEpisodesTool, checkSavedShowsOperation, checkSavedShowsOperation as checkSavedShowsTool, checkSavedTracksOperation, checkSavedTracksOperation as checkSavedTracksTool, checkUsersFollowPlaylistOperation, checkUsersFollowPlaylistOperation as checkUsersFollowPlaylistTool, createPlaylistOperation, createPlaylistOperation as createPlaylistTool, followArtistsOrUsersOperation, followArtistsOrUsersOperation as followArtistsOrUsersTool, followPlaylistOperation, followPlaylistOperation as followPlaylistTool, getAlbumOperation, getAlbumOperation as getAlbumTool, getAlbumTracksOperation, getAlbumTracksOperation as getAlbumTracksTool, getArtistAlbumsOperation, getArtistAlbumsOperation as getArtistAlbumsTool, getArtistOperation, getArtistOperation as getArtistTool, getArtistRelatedArtistsOperation, getArtistRelatedArtistsOperation as getArtistRelatedArtistsTool, getArtistTopTracksOperation, getArtistTopTracksOperation as getArtistTopTracksTool, getAudioAnalysisOperation, getAudioAnalysisOperation as getAudioAnalysisTool, getAudioFeaturesOperation, getAudioFeaturesOperation as getAudioFeaturesTool, getAudiobookChaptersOperation, getAudiobookChaptersOperation as getAudiobookChaptersTool, getAudiobookOperation, getAudiobookOperation as getAudiobookTool, getAvailableDevicesOperation, getAvailableDevicesOperation as getAvailableDevicesTool, getAvailableGenreSeedsOperation, getAvailableGenreSeedsOperation as getAvailableGenreSeedsTool, getAvailableMarketsOperation, getAvailableMarketsOperation as getAvailableMarketsTool, getBrowseCategoriesOperation, getBrowseCategoriesOperation as getBrowseCategoriesTool, getBrowseCategoryOperation, getBrowseCategoryOperation as getBrowseCategoryTool, getCategoryPlaylistsOperation, getCategoryPlaylistsOperation as getCategoryPlaylistsTool, getChapterOperation, getChapterOperation as getChapterTool, getCurrentlyPlayingOperation, getCurrentlyPlayingOperation as getCurrentlyPlayingTool, getEpisodeOperation, getEpisodeOperation as getEpisodeTool, getFeaturedPlaylistsOperation, getFeaturedPlaylistsOperation as getFeaturedPlaylistsTool, getFollowedArtistsOperation, getFollowedArtistsOperation as getFollowedArtistsTool, getMeOperation, getMeOperation as getMeTool, getMyTopArtistsOperation, getMyTopArtistsOperation as getMyTopArtistsTool, getMyTopTracksOperation, getMyTopTracksOperation as getMyTopTracksTool, getNewReleasesOperation, getNewReleasesOperation as getNewReleasesTool, getPlaybackStateOperation, getPlaybackStateOperation as getPlaybackStateTool, getPlaylistCoverImageOperation, getPlaylistCoverImageOperation as getPlaylistCoverImageTool, getPlaylistItemsOperation, getPlaylistItemsOperation as getPlaylistItemsTool, getPlaylistOperation, getPlaylistOperation as getPlaylistTool, getQueueOperation, getQueueOperation as getQueueTool, getRecentlyPlayedOperation, getRecentlyPlayedOperation as getRecentlyPlayedTool, getRecommendationsOperation, getRecommendationsOperation as getRecommendationsTool, getSeveralAlbumsOperation, getSeveralAlbumsOperation as getSeveralAlbumsTool, getSeveralArtistsOperation, getSeveralArtistsOperation as getSeveralArtistsTool, getSeveralAudioFeaturesOperation, getSeveralAudioFeaturesOperation as getSeveralAudioFeaturesTool, getSeveralAudiobooksOperation, getSeveralAudiobooksOperation as getSeveralAudiobooksTool, getSeveralChaptersOperation, getSeveralChaptersOperation as getSeveralChaptersTool, getSeveralEpisodesOperation, getSeveralEpisodesOperation as getSeveralEpisodesTool, getSeveralShowsOperation, getSeveralShowsOperation as getSeveralShowsTool, getSeveralTracksOperation, getSeveralTracksOperation as getSeveralTracksTool, getShowEpisodesOperation, getShowEpisodesOperation as getShowEpisodesTool, getShowOperation, getShowOperation as getShowTool, getTrackOperation, getTrackOperation as getTrackTool, getUserOperation, getUserOperation as getUserTool, listMyPlaylistsOperation, listMyPlaylistsOperation as listMyPlaylistsTool, listSavedAlbumsOperation, listSavedAlbumsOperation as listSavedAlbumsTool, listSavedAudiobooksOperation, listSavedAudiobooksOperation as listSavedAudiobooksTool, listSavedEpisodesOperation, listSavedEpisodesOperation as listSavedEpisodesTool, listSavedShowsOperation, listSavedShowsOperation as listSavedShowsTool, listSavedTracksOperation, listSavedTracksOperation as listSavedTracksTool, listUserPlaylistsOperation, listUserPlaylistsOperation as listUserPlaylistsTool, pausePlaybackOperation, pausePlaybackOperation as pausePlaybackTool, removeItemsFromPlaylistOperation, removeItemsFromPlaylistOperation as removeItemsFromPlaylistTool, removeSavedAlbumsOperation, removeSavedAlbumsOperation as removeSavedAlbumsTool, removeSavedAudiobooksOperation, removeSavedAudiobooksOperation as removeSavedAudiobooksTool, removeSavedEpisodesOperation, removeSavedEpisodesOperation as removeSavedEpisodesTool, removeSavedShowsOperation, removeSavedShowsOperation as removeSavedShowsTool, removeSavedTracksOperation, removeSavedTracksOperation as removeSavedTracksTool, reorderOrReplacePlaylistItemsOperation, reorderOrReplacePlaylistItemsOperation as reorderOrReplacePlaylistItemsTool, saveAlbumsOperation, saveAlbumsOperation as saveAlbumsTool, saveAudiobooksOperation, saveAudiobooksOperation as saveAudiobooksTool, saveEpisodesOperation, saveEpisodesOperation as saveEpisodesTool, saveShowsOperation, saveShowsOperation as saveShowsTool, saveTracksOperation, saveTracksOperation as saveTracksTool, searchOperation, searchOperation as searchTool, seekToPositionOperation, seekToPositionOperation as seekToPositionTool, setPlaybackVolumeOperation, setPlaybackVolumeOperation as setPlaybackVolumeTool, setRepeatModeOperation, setRepeatModeOperation as setRepeatModeTool, setShuffleModeOperation, setShuffleModeOperation as setShuffleModeTool, skipToNextOperation, skipToNextOperation as skipToNextTool, skipToPreviousOperation, skipToPreviousOperation as skipToPreviousTool, startOrResumePlaybackOperation, startOrResumePlaybackOperation as startOrResumePlaybackTool, transferPlaybackOperation, transferPlaybackOperation as transferPlaybackTool, unfollowArtistsOrUsersOperation, unfollowArtistsOrUsersOperation as unfollowArtistsOrUsersTool, unfollowPlaylistOperation, unfollowPlaylistOperation as unfollowPlaylistTool, updatePlaylistDetailsOperation, updatePlaylistDetailsOperation as updatePlaylistDetailsTool, uploadPlaylistCoverImageOperation, uploadPlaylistCoverImageOperation as uploadPlaylistCoverImageTool };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { $ as getEpisodeOperation, A as listSavedEpisodesOperation, At as checkSavedShowsOperation, B as getSeveralEpisodesOperation, C as removeSavedAudiobooksOperation, Ct as getAvailableDevicesOperation, D as listUserPlaylistsOperation, Dt as checkUsersFollowPlaylistOperation, E as pausePlaybackOperation, Et as createPlaylistOperation, F as getTrackOperation, Ft as addItemsToPlaylistOperation, G as getSeveralAlbumsOperation, H as getSeveralAudiobooksOperation, I as getShowEpisodesOperation, J as getMyTopTracksOperation, K as getRecommendationsOperation, L as getShowOperation, M as listSavedAlbumsOperation, Mt as checkSavedAudiobooksOperation, N as listMyPlaylistsOperation, Nt as checkSavedAlbumsOperation, O as listSavedTracksOperation, Ot as checkFollowingArtistsOrUsersOperation, P as getUserOperation, Pt as addToQueueOperation, Q as getFeaturedPlaylistsOperation, R as getSeveralTracksOperation, S as removeSavedEpisodesOperation, St as getCurrentlyPlayingOperation, T as removeItemsFromPlaylistOperation, Tt as followPlaylistOperation, U as getSeveralAudioFeaturesOperation, V as getSeveralChaptersOperation, W as getSeveralArtistsOperation, X as getMeOperation, Y as getMyTopArtistsOperation, Z as getFollowedArtistsOperation, _ as saveAudiobooksOperation, _t as getQueueOperation, a as transferPlaybackOperation, at as getAvailableGenreSeedsOperation, b as removeSavedTracksOperation, bt as getPlaylistOperation, c as skipToNextOperation, ct as getAudioFeaturesOperation, d as setPlaybackVolumeOperation, dt as getArtistRelatedArtistsOperation, et as getChapterOperation, f as seekToPositionOperation, ft as getArtistAlbumsOperation, g as saveEpisodesOperation, gt as getRecentlyPlayedOperation, h as saveShowsOperation, ht as getAlbumOperation, i as unfollowPlaylistOperation, it as getAvailableMarketsOperation, j as listSavedAudiobooksOperation, jt as checkSavedEpisodesOperation, k as listSavedShowsOperation, kt as checkSavedTracksOperation, l as setShuffleModeOperation, lt as getAudioAnalysisOperation, m as saveTracksOperation, mt as getAlbumTracksOperation, n as updatePlaylistDetailsOperation, nt as getBrowseCategoryOperation, o as startOrResumePlaybackOperation, ot as getAudiobookChaptersOperation, p as searchOperation, pt as getArtistOperation, q as getNewReleasesOperation, r as unfollowArtistsOrUsersOperation, rt as getBrowseCategoriesOperation, s as skipToPreviousOperation, st as getAudiobookOperation, t as uploadPlaylistCoverImageOperation, tt as getCategoryPlaylistsOperation, u as setRepeatModeOperation, ut as getArtistTopTracksOperation, v as saveAlbumsOperation, vt as getPlaylistItemsOperation, w as removeSavedAlbumsOperation, wt as followArtistsOrUsersOperation, x as removeSavedShowsOperation, xt as getPlaybackStateOperation, y as reorderOrReplacePlaylistItemsOperation, yt as getPlaylistCoverImageOperation, z as getSeveralShowsOperation } from "../upload-playlist-cover-image.operation-CnyIlv11.mjs";
|
|
2
|
+
|
|
3
|
+
export { addItemsToPlaylistOperation, addItemsToPlaylistOperation as addItemsToPlaylistTool, addToQueueOperation, addToQueueOperation as addToQueueTool, checkFollowingArtistsOrUsersOperation, checkFollowingArtistsOrUsersOperation as checkFollowingArtistsOrUsersTool, checkSavedAlbumsOperation, checkSavedAlbumsOperation as checkSavedAlbumsTool, checkSavedAudiobooksOperation, checkSavedAudiobooksOperation as checkSavedAudiobooksTool, checkSavedEpisodesOperation, checkSavedEpisodesOperation as checkSavedEpisodesTool, checkSavedShowsOperation, checkSavedShowsOperation as checkSavedShowsTool, checkSavedTracksOperation, checkSavedTracksOperation as checkSavedTracksTool, checkUsersFollowPlaylistOperation, checkUsersFollowPlaylistOperation as checkUsersFollowPlaylistTool, createPlaylistOperation, createPlaylistOperation as createPlaylistTool, followArtistsOrUsersOperation, followArtistsOrUsersOperation as followArtistsOrUsersTool, followPlaylistOperation, followPlaylistOperation as followPlaylistTool, getAlbumOperation, getAlbumOperation as getAlbumTool, getAlbumTracksOperation, getAlbumTracksOperation as getAlbumTracksTool, getArtistAlbumsOperation, getArtistAlbumsOperation as getArtistAlbumsTool, getArtistOperation, getArtistOperation as getArtistTool, getArtistRelatedArtistsOperation, getArtistRelatedArtistsOperation as getArtistRelatedArtistsTool, getArtistTopTracksOperation, getArtistTopTracksOperation as getArtistTopTracksTool, getAudioAnalysisOperation, getAudioAnalysisOperation as getAudioAnalysisTool, getAudioFeaturesOperation, getAudioFeaturesOperation as getAudioFeaturesTool, getAudiobookChaptersOperation, getAudiobookChaptersOperation as getAudiobookChaptersTool, getAudiobookOperation, getAudiobookOperation as getAudiobookTool, getAvailableDevicesOperation, getAvailableDevicesOperation as getAvailableDevicesTool, getAvailableGenreSeedsOperation, getAvailableGenreSeedsOperation as getAvailableGenreSeedsTool, getAvailableMarketsOperation, getAvailableMarketsOperation as getAvailableMarketsTool, getBrowseCategoriesOperation, getBrowseCategoriesOperation as getBrowseCategoriesTool, getBrowseCategoryOperation, getBrowseCategoryOperation as getBrowseCategoryTool, getCategoryPlaylistsOperation, getCategoryPlaylistsOperation as getCategoryPlaylistsTool, getChapterOperation, getChapterOperation as getChapterTool, getCurrentlyPlayingOperation, getCurrentlyPlayingOperation as getCurrentlyPlayingTool, getEpisodeOperation, getEpisodeOperation as getEpisodeTool, getFeaturedPlaylistsOperation, getFeaturedPlaylistsOperation as getFeaturedPlaylistsTool, getFollowedArtistsOperation, getFollowedArtistsOperation as getFollowedArtistsTool, getMeOperation, getMeOperation as getMeTool, getMyTopArtistsOperation, getMyTopArtistsOperation as getMyTopArtistsTool, getMyTopTracksOperation, getMyTopTracksOperation as getMyTopTracksTool, getNewReleasesOperation, getNewReleasesOperation as getNewReleasesTool, getPlaybackStateOperation, getPlaybackStateOperation as getPlaybackStateTool, getPlaylistCoverImageOperation, getPlaylistCoverImageOperation as getPlaylistCoverImageTool, getPlaylistItemsOperation, getPlaylistItemsOperation as getPlaylistItemsTool, getPlaylistOperation, getPlaylistOperation as getPlaylistTool, getQueueOperation, getQueueOperation as getQueueTool, getRecentlyPlayedOperation, getRecentlyPlayedOperation as getRecentlyPlayedTool, getRecommendationsOperation, getRecommendationsOperation as getRecommendationsTool, getSeveralAlbumsOperation, getSeveralAlbumsOperation as getSeveralAlbumsTool, getSeveralArtistsOperation, getSeveralArtistsOperation as getSeveralArtistsTool, getSeveralAudioFeaturesOperation, getSeveralAudioFeaturesOperation as getSeveralAudioFeaturesTool, getSeveralAudiobooksOperation, getSeveralAudiobooksOperation as getSeveralAudiobooksTool, getSeveralChaptersOperation, getSeveralChaptersOperation as getSeveralChaptersTool, getSeveralEpisodesOperation, getSeveralEpisodesOperation as getSeveralEpisodesTool, getSeveralShowsOperation, getSeveralShowsOperation as getSeveralShowsTool, getSeveralTracksOperation, getSeveralTracksOperation as getSeveralTracksTool, getShowEpisodesOperation, getShowEpisodesOperation as getShowEpisodesTool, getShowOperation, getShowOperation as getShowTool, getTrackOperation, getTrackOperation as getTrackTool, getUserOperation, getUserOperation as getUserTool, listMyPlaylistsOperation, listMyPlaylistsOperation as listMyPlaylistsTool, listSavedAlbumsOperation, listSavedAlbumsOperation as listSavedAlbumsTool, listSavedAudiobooksOperation, listSavedAudiobooksOperation as listSavedAudiobooksTool, listSavedEpisodesOperation, listSavedEpisodesOperation as listSavedEpisodesTool, listSavedShowsOperation, listSavedShowsOperation as listSavedShowsTool, listSavedTracksOperation, listSavedTracksOperation as listSavedTracksTool, listUserPlaylistsOperation, listUserPlaylistsOperation as listUserPlaylistsTool, pausePlaybackOperation, pausePlaybackOperation as pausePlaybackTool, removeItemsFromPlaylistOperation, removeItemsFromPlaylistOperation as removeItemsFromPlaylistTool, removeSavedAlbumsOperation, removeSavedAlbumsOperation as removeSavedAlbumsTool, removeSavedAudiobooksOperation, removeSavedAudiobooksOperation as removeSavedAudiobooksTool, removeSavedEpisodesOperation, removeSavedEpisodesOperation as removeSavedEpisodesTool, removeSavedShowsOperation, removeSavedShowsOperation as removeSavedShowsTool, removeSavedTracksOperation, removeSavedTracksOperation as removeSavedTracksTool, reorderOrReplacePlaylistItemsOperation, reorderOrReplacePlaylistItemsOperation as reorderOrReplacePlaylistItemsTool, saveAlbumsOperation, saveAlbumsOperation as saveAlbumsTool, saveAudiobooksOperation, saveAudiobooksOperation as saveAudiobooksTool, saveEpisodesOperation, saveEpisodesOperation as saveEpisodesTool, saveShowsOperation, saveShowsOperation as saveShowsTool, saveTracksOperation, saveTracksOperation as saveTracksTool, searchOperation, searchOperation as searchTool, seekToPositionOperation, seekToPositionOperation as seekToPositionTool, setPlaybackVolumeOperation, setPlaybackVolumeOperation as setPlaybackVolumeTool, setRepeatModeOperation, setRepeatModeOperation as setRepeatModeTool, setShuffleModeOperation, setShuffleModeOperation as setShuffleModeTool, skipToNextOperation, skipToNextOperation as skipToNextTool, skipToPreviousOperation, skipToPreviousOperation as skipToPreviousTool, startOrResumePlaybackOperation, startOrResumePlaybackOperation as startOrResumePlaybackTool, transferPlaybackOperation, transferPlaybackOperation as transferPlaybackTool, unfollowArtistsOrUsersOperation, unfollowArtistsOrUsersOperation as unfollowArtistsOrUsersTool, unfollowPlaylistOperation, unfollowPlaylistOperation as unfollowPlaylistTool, updatePlaylistDetailsOperation, updatePlaylistDetailsOperation as updatePlaylistDetailsTool, uploadPlaylistCoverImageOperation, uploadPlaylistCoverImageOperation as uploadPlaylistCoverImageTool };
|