Eyal Keren

Results 13 issues of Eyal Keren

The commit message for file deletion is hardcoded, we would like to allow the same api as `writeFile` The new signature should be: `function deleteFile(branch, path, message, options, cb)` instead...

As documented in the https://developer.mixpanel.com/docs/javascript#adding-users-to-a-group ``` //Assign Company A and Company B to a user mixpanel.set_group(“company”, [“Company A”, “Company B”]) ``` How can this be done in nodejs?

### I tried this: ```wing bring cloud; let b = new cloud.Bucket(); let sqs = new cloud.Queue(); b.onCreate(inflight (f) => { sqs.push(f); }); sqs.setConsumer(inflight (m) => { log("{m}"); }); let...

🐛 bug
🛫 console

## Checklist - [ ] Title matches [Winglang's style guide](https://www.winglang.io/contributing/start-here/pull_requests#how-are-pull-request-titles-formatted) - [ ] Description explains motivation and solution - [ ] Tests added (always) - [ ] Docs updated (only...

### I tried this: ```wing bring cloud; let api = new cloud.Api(); let b = new cloud.Bucket(); api.post("/doc/:id", inflight (req) => { b.put(req.vars.get("id"), req.body! ); }); ``` ### This happened:...

🐛 bug
🛫 console

### I tried this: Start with this code: ```wing bring cloud; class X { b: cloud.Bucket; new(){ this.b = new cloud.Bucket(); } pub f(){ this.b.onEvent(inflight () => {}); } pub...

🐛 bug
🛫 console

### I tried this: I tried using the tsoa service from two different entrypoints (different directories). It turns out that the folder resolution is based on the location of the...

🐛 bug
Stale
📚 libraries

### I tried this: ```wing bring cloud; let b1 = true; let b2 : bool? = true; if b1 == true { } if b2 == true { } if...

🐛 bug
📐 language-design
🛠️ compiler
good first issue

### Use Case you can now create a bucket with a name ### Proposed Solution ```wing new cloud.Bucket(name: "a-globally-unique-name-or-it-will-fail-when-trying-to-deploy-on-aws") ; ``` ### Implementation Notes _No response_ ### Component SDK ###...

✨ enhancement
🎨 sdk
Stale
needs-discussion