James R Swift
James R Swift
Allow addons to hide tools from the tool menu. It is already possible to disallow the use of a tool by a player by means of the SANDBOX:CanTool hook, however,...
The code passed to a lua_run entity is now precompiled and sandboxed, such that the ACTIVATOR, CALLER and TRIGGER_PLAYER globals are no longer present in the global namespace, however are...
19/02/2021 | United Kingdom | calculated total | 4,105,399 (+1,447) | no data | no data | 120,363 (+98) -- | -- | -- | -- | -- | --...
Remove NSP which has been deprecated, and upgrade axios
The functions `Result.wrap` and `Result.wrapAsync` have been rewritten such that argument `op` can be a function **0 or more** arguments (previously only **0** arguments). An additional variadic argument is added...
From looking at the responses from the getHot listing, the submission class is missing type declarations for the properties ```is_created_from_ads_ui```, ```allow_live_comments```, ```rte_mode```, and ```discussion_type```.
Been combing through some more code today, and I found that the following properties do not have corresponding type definitions on the subreddit class: ```typescript restrict_posting: boolean; free_form_reports: boolean; original_content_tag_enabled:...
In the example code below: ```typescript mySubreddit.getWikiPage(args).fetch().then( wiki: Snoowrap.WikiPage ) =>{ /// Do Stuff wiki.edit({ text: edittedWikiPage, reason: 'reason', }); }) ``` produces the below error: ``` url: "r/".concat(_this4.subreddit.display_name, "/api/wiki/edit"),...
https://github.com/not-an-aardvark/snoowrap/blob/498a8d5cb83181c53209a7c60de1c45b36358114/src/snoowrap.d.ts#L225 Marked without optional qualifier, however, in the javascript source, this member is autofilled to be equal to the parent object's display name: ```javascript submitLink(options) { return this._r.submitLink(_objectSpread({}, options, {...
https://github.com/not-an-aardvark/snoowrap/blob/fdf5c2af0443cfc3e6ee544445aaa46e602d4f1b/src/objects/WikiPage.d.ts#L32 Reads `perviousRevision` rather than `previousRevision`. Underlying javascript does not have the typo, only the typescript declaration.