Michael Barlock

Results 15 comments of Michael Barlock

I opened a PR to allow for a self-hosted option that supports GHE https://github.com/integrations/slack/pull/1055

@humbitious Can you assign this to an epic?

Having slept on it, I've found this which seems to work, but it feels hacky to me. If you pass the following as opts into the module it will connect...

There is at least [an implementation](https://github.com/howdyai/botkit/blob/master/lib/storage/simple_storage.js#L60) in "simple storage" but I am confused as to what the intended api should be. The implementation I linked to says that `delete` should...

I can confirm that all of the `botkit-storage-*` in the howdyai org don't seem to implement delete. Redis implements `remove` though and takes an `id` rather than the whole object

I made a repo to reproduce: https://github.com/barlock/bolt-issue-repro After cloning: 1. Install deps: `yarn install` 2. use `ncc` to compile: `yarn build` 3. start the built app and get error: `yarn...

Guesses as to where its coming from? It doesn't seem to come from this project or `graphql` from a dumb sting matching search.

Error was thrown by swagger2openapi. Can be "fixed" by adding a `patch: true` to the conversion step ```js await Swagger2OpenAPI.convertObj(spec, { patch: true }) ``` or, from the cli until...

I'm also not very familiar with swagger so I'm uncertain of the consequences of auto-patching. Any ideas?