Eyal Keren
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...
## 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:...
### 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...
### 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...
### I tried this: ```wing bring cloud; let b1 = true; let b2 : bool? = true; if b1 == true { } if b2 == true { } if...
### 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 ###...