Robert Brennan
Robert Brennan
Thanks for the report! We don't yet have an API spec for v4, but we'll work on it.
The GitLab API is generated using this OpenAPI definition: https://github.com/DataFire/Integrations/blob/master/integrations/generated/gitlab/openapi.json We'd need an OpenAPI definition for v4 in order to update. [This issue](https://gitlab.com/gitlab-org/gitlab-ce/issues/22700) will hopefully get us an official spec....
Hi there, Thanks for the report! Looks like we missed the `page` parameter for Basecamp's list operations. It was just added in `v2.0.1`. If you update, you should be able...
No problem! You could write, e.g. ```js basecamp.buckets.bucketId.client.approvals.json.get({ bucketId: "abcd", page: 2, }, context) ``` If you're using the latest version of Node, you can easily use async/await to accomplish...
Whoops, looks like we missed `recordings.json.get` - one sec...
OK - should be ready in `@datafire/[email protected]`. Let me know if you spot any more issues!
Using your code, I get the error "Error: data should have required property 'bucketId'". Adding `bucketId` gets me to a 404 error (which I expect since I don't have a...
Can you share the full script? What do you see if you run `datafire describe basecamp/buckets.bucketId.client.approvals.json.get`?
Hmm...looks like it's somehow it's still using 2.0.1. What do you see when you run: ```bash cat node_modules/@datafire/basecamp/package.json | grep version ``` Can you try `rm -rf ./node_modules` and reinstalling?
Yes it would - do you have them saved in `package.json`? You can also just run `rm -rf node_modules/@datafire/basecamp`. But in general I'd suggest using the `--save` flag when running...