@redseat/api 0.4.3 → 0.4.4
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.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/library.js +1 -1
- package/dist/sse-fetch.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/dist/library.js
CHANGED
|
@@ -115,7 +115,7 @@ export class LibraryApi {
|
|
|
115
115
|
else if (eventType === 'finished') {
|
|
116
116
|
callbacks.onFinished?.();
|
|
117
117
|
}
|
|
118
|
-
},
|
|
118
|
+
}, undefined, (error) => callbacks.onError?.(error));
|
|
119
119
|
}
|
|
120
120
|
async getTags(query) {
|
|
121
121
|
const params = {};
|
package/dist/sse-fetch.js
CHANGED