skygear-SDK-JS icon indicating copy to clipboard operation
skygear-SDK-JS copied to clipboard

Skygear SDK for JavaScript

Results 84 skygear-SDK-JS issues
Sort by recently updated
recently updated
newest added

Ref: https://github.com/SkygearIO/features/pull/254 Names are: - currentUser: User - async changePassword(oldPassword: String, newPassword: String, invalidate: Boolean): Promise - async fetchUserRole(users: User[] | String[]): Promise - async login(loginIDs: Object, password: String): Promise...

workflow/Next
next/auth

(Describe the issue here) - Skygear SDK Date/Version: 1.7.1 - JS runtime: Safari iOS 10 - Skygear Server Date/Version: 1.7.1 - [ ] Is this a regression? - [x] Attached...

Since #125, the public_html directory is not served when SERVE_STATIC_ASSETS is turned on. This should be supported to have feature parity with py-skygear.

vote/1

Save a record leading to an asset save, an error will be thrown: ![simulator screen shot - iphone se - 2018-11-06 at 16 01 41](https://user-images.githubusercontent.com/1427085/48050622-5da64580-e1dd-11e8-9054-27338ff0c0b6.png) The offending line should be:...

type/bug

Hi how to make migrate users from my server to skygear database. can I use cloud function to create API to add my users to a skygear server? Thanks.

Currently parameters for lambda are obtained like this: ```javascript skygearCloud.op('foo', function (param, options) { const { context } = options; console.log(param['args']); // the parameters passed by SDKs }); ``` Since...

Currently there is a list of classes accessible as attribute accessor from the default export of the `skygear` module: ```js import skygear from "skygear"; skygear.Query; skygear.Role; skygear.ACL; skygear.Record; skygear.UserRecord; skygear.Sequence;...

type/improvement

The current function signature is ``` static function or(...queries) static function and(...queries) ``` I suggest to change it to ``` function or(...queries) function and(...queries) // for backward compatibility static function...

I would like to suggest we split the cloud container to its own package because the cloud container may (or will) depend on packages that are not necessary on the...