Split into success and error responses. The 'message' of an error response can
also be an instance of Error when the jsonp request to MailChimp fails
(e.g. due to timeout errors). Also, bump minor version.
* Types for meteor/dburles:collection-helpers
* new Collection<T> now returns a Collection<T>, not a Collection<Data<T>>
* Modifier<T> -> Modifier<Data<T>>
* Retab mongo.d.ts; Data<T> no longer uses NonData<T>
* Types now distribute over unions
* Multiple improvements
- Fix behavior with null, undefined, void, and unions containing them
- Add OptionalHelper<T>
- Add AllowPartial
- Thoroughly document collectionHelpers.d.ts
* New definitions for node-red
* [@node-red/util] Add jsonata dep
* [node-red] Add v0
* [node-red] Merge namespaces
* Fix compilation error caused by a space from prettier
* Replacing _ChainIteratee with Iteratee now that wrapped return types have been updated to return collection types where appropriate.
* Making it so the CollectionIterator key and collection parameters for sortedIndex include undefined as a possibility for when it is called to transform the value argument.
* Updating iteratee type comments in tests to better match Underscore nomenclature.
* Updating a test to reflect a compromise that I'm not super happy about but that I don't have a better solution for.
* Changing the default wrapped value for _Chain to T[] to better match what it used to be to reduce errors from functions that haven't been updated to use a correct wrapped value yet (e.g. array proxy functions).
* Also updating the default V for Underscore <T, V> to T[] since that was also what was historically assumed there by iterators if nothing else.
* Mocha parallel and jobs options
* Remove deprecated functions
* Removed deprecated types
* Replace MochaSetupOptions for MochaOptions in browser mode
* Update deps to not use deprecated interfaces
* Added unloadFiles to mocha
* Mocha RootHook type
* Added generateId to SocketIO.Server.engine
* Changed generateId function to take string param and return a string
* Changed generateId to take "http.IncomingMessage" as first parameter.
* Test
* Added testOverwriteGenerateId test
* testOverwriteGenerateId test now throws an error if it fails
* 17.3.26 added
* Error fixed
* Removed Bad character
* Removed new line
* Added new line
* 17.4.39 added
* Commit index and ej file
* Revert "Commit index and ej file"
This reverts commit 2f2905412930ebcdea1a80d147febd011f7c5686.
* changed ts file
* Adde non-npm package
* Removed bad character
* removed irregular whitespace
* 17.4.46 added
* Removed unwanted character
* Added the chnages
* Removed Space
* 18.1.36-beta added
* Removed unwanted character
* Added changes
* Commit add non-npm changes
* Remove Space
* Add value for line
* Add datepicker line
* Commit with space
* Removed line
* Encoding format as UTF-8
* Added new line
* Removed Trailing spaces
* Removed line
* rempved trailing spaces
* 18.1.42 added
* Changed convert type to utf-8
* commit irregular space issue
* commit remove space issue
* commit non npm added
* 18.1.52 added
* remove unwanted character
* Convert to utf-8
* Removed blank line
* 18.2.44 added
* Removed Unwanted character
* Commit package.json files changes
* Added comma
* commit package.json
* Reverted package.json files
* [@types/urijs] Added test for URI.buildQuery().
* [@types/urijs] Improve types for URI.parseQuery, search(true) and query(true).
* [@types/urijs] Add apepper as co-author.
* Updating type definitions for pick and omit and adding tests.
* Fixing a few parameter names and summary comments.
* Updating _Pick to not translate any to any since _Pick<any, K> is useful and doesn't present the same issues as _Omit<any, K>.
* Removing the object constraint on V for pick and omit since it seems to work with strings as well.
* Moving the array case to the first overload and updating the second overload to only take an iterator.
* Removing references to whitelisting and blacklisting from summary comments.
* Minor comment update.
* Tossing an extends string constraint on K because I can now and it seems like a nice thing to do.