- version 2 created
- version 3 update with refined constructor, listeners and missing
properties and methods
- tests amended
- configuration as per DT defaults
Thanks!
* [ember-data] add re-exports for `@ember-data/model`
* [ember-data] add re-exports for `@ember-data/adapter`
* [ember-data] add re-exports for `@ember-data/store`
* [ember-data] add re-exports for `@ember-data/serializer`
* [ember-data] add re-exports for `@ember-data/model`
* [ember-data] use OTHER_FILES for `@ember-data/adapter`
* [ember-data] use OTHER_FILES for `@ember-data/serializer`
* [ember-data] include error test for `@ember-data/adapter`
* [ember-data] use OTHER_FILES for `@ember-data/serializer`
* [ember-data] fix file inclusions and paths
* [ember-data] actually export and test `@ember-data/adapter/error`
* [ember-data] fix more tests
* [ember-data] rework @ember-data/adapter/error exports
* [ember-data] make `@ember-data/adapter/error` exports type-and-value
* [ember-data] make `@ember-data/adapter/error` exports type-and-value correctly
* [ember-data] use `export import` form
* [ember-data] fix mixin re-exports
* [ember-data] fix expanded adapter method test
* Add type definitions for async-stream-emitter, consumable-stream, writable-consumable-stream, stream-demux, ag-channel, ag-simple-broker, ncom, async-iterable-stream
* Upgrade sc-broker to 8.0
* Upgrade socketcluster-client to 15.1
* Rename definition files to match module file names
The files in the module were renamed.
* Move socketcluster-server to v14 folder
In preparation for socketcluster-server v15, since the old version is still used by other type packages.
* Update scc-broker-client to 7.0
* Add current socketcluster-server type definitions
Current version is v15.0
* Move sc-broker-cluster to v6 folder
In preparation for sc-broker-cluster v9, since the old version is still used by other type packages.
* Add current sc-broker-cluster type definitions
Current version is v9.0
* Move sc-channel to v1 folder
In preparation for sc-channel v2, since the old version is still used by other type packages.
* Add current sc-channel type definitions
Current version is v2.0
* Include the relevant sc-broker-cluster type-definitions directly in sc-channel
It can be run using older and newer version of sc-broker-cluster, which have differently versioned dependencies.
* Move sc-channel tests to sc-broker-cluster
In the tests we use sc-broker-cluster. If the tests are in sc-channel, they drag in all dependencies for sc-broker-cluster, including esnext.asynciterable, which we don't want.
* Simplify sc-errors tests
In the tests we used socketcluster-server. That dragged in all of its dependencies, including esnext.asynciterable, which we don't want.
* Move sc-channel to v1 folder
In preparation for sc-channel v2, since the old version is still used by other type packages.
* [heremaps] update to v 3.1 API
* [heremaps] removed not existing interfaces
* [heremaps] migration to "LookAt" interface
* [heremaps] fixed optional parameter
* 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
* Update react-stripe-elements definitions to allow BankAccountOptions to be passed to createToken
Also add some tests for the Iban, IdealBank and PaymentRequestButton elements
* Update stripe-v3 to accept BankAccountOptions on createToken
* Use discriminated union for WebhookNotifications
Change the WebhookNotification types to know their own values for the `kind` property, so that the compiler can automatically infer types from it.
This also requires changing the notification types to be interfaces instead of classes, and changing `WebhookNotification` to be a union type instead of an abstract class.
Ref: https://www.typescriptlang.org/docs/handbook/advanced-types.html#discriminated-unions
The result of all this is that a guard on the returned `notification.kind` will have the effect of narrowing the type of `notification` itself, so that explicit casts aren’t always necessary.
* Update test
* Revert kind to still be WebhookNotificationKind
* Group types for WebhookNotificationKind
* fix: missing semicolon
* Add object type to the MJML package
* Add more a more specific interface
* Add missing types to MJML and make optional ones optional
* Add usage examples to the MJML test file
* Add path for @testing-library/cypress/add-commands
* Reference new file
* Add new file to config
* Add add-commands.d.ts to OTHER_FILES.txt
* Update tsconfig.json
By changing the types for `ChartData["labels"]` and `ChartData["datasets"]`
to ReadonlyArrays we can pass either ReadonlyArrays or Arrays as ChartData.
This is useful when chart.js is used inside a React component where the
props are readonly.