Pontus Fagerström
Pontus Fagerström
Update description in API to be more aligned with https://developer.kaltura.com/api-docs/VPaaS-API-Getting-Started/application-tokens.html I've seen user try adding session privileges like so: BASE_USER_SESSION_PERMISSION,WIDGET_SESSION_PERMISSION etc. From the current API description I can see why...
It's confusing to use the same name and systemName for livestream source and non-livestream source. For instance, when doing KMC bulk-action download. Let's say we download a mixed bag of...
Password param used during login can be read in clear text in stack trace. Put the password argument in an array, that way removing it from stack trace.
failed sphinx update queries should end up in error log
This PR will: 1. Add explicit testing of shape() method 2. Add explicit testing of extend() method, currently not covered 3. Update readme.md for deno (due to ad4385439d7c0d7a584052dee5aa578fde5a6efd)
When I use the exclude parameter, my build breaks. ```js eslint({ exclude: ["**/src/App.tsx"] }), ``` `vite build` fails with: ```bash [commonjs--resolver] Failed to load config "airbnb" to extend from. [...]...
Thank you for a very good library! I'm able to mock populate() when called in a chain like so: ``` find() .sort({ createdAt: -1 }) .limit(5) .populate("foreignKey"); ``` I'm not...