Daniel (dB.) Doubrovkine
Daniel (dB.) Doubrovkine
You raise a good point. I'd rather not introduce a breaking change here eliminating the header. How do other libraries deal with this?
Claude suggested two approaches, both modifying `inspect`. ``` ⏺ Update(lib/slack/web/api/errors/slack_error.rb) ⎿ User rejected update to lib/slack/web/api/errors/slack_error.rb 22 def response_metadata 23 response.body.response_metadata 24 end 25 + 26 + def inspect 27...
@levenleven want to make a PR along those lines? doesn't have to be that code
I think this belongs to alerting, moved.
I think @wwqwq2313 is an AI (!)
Thank you! Needs some `npm run lint--fix`, CHANGELOG, etc, please.
@andrross @harishbhakuni @kalsak @gbbafna
@Xtansia Code looks ok to me, find someone who understands neural search to do a detailed CR?
Tracks let you get the original and the modified version. ```ruby track = post.history_tracks.first track.original # {} track.modified # { "title" => "Test", "body" => "Post", "comments" => [{ "_id"...
> Thanks. This will give me the original value of changed fields. So to get the whole collection with all its fields, I'll need to loop over the tracks and...