@zerohash-sdk/crypto-buy-js 1.7.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
* @packageDocumentation
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
+
import { CryptoBuyFilters } from '@zerohash-sdk/crypto-buy';
|
|
11
|
+
|
|
10
12
|
/**
|
|
11
13
|
* Generic app event structure
|
|
12
14
|
* @template TType - Event type string
|
|
@@ -402,12 +404,15 @@ declare type CryptoBuyCompletedData = {
|
|
|
402
404
|
};
|
|
403
405
|
|
|
404
406
|
export declare interface CryptoBuyConfig extends BaseConfig<CryptoBuyEvent>, CryptoBuyCallbacks {
|
|
407
|
+
filters?: CryptoBuyFilters;
|
|
405
408
|
}
|
|
406
409
|
|
|
407
410
|
declare type CryptoBuyEvent = AppEvent<CryptoBuyEventType>;
|
|
408
411
|
|
|
409
412
|
declare type CryptoBuyEventType = string;
|
|
410
413
|
|
|
414
|
+
export { CryptoBuyFilters }
|
|
415
|
+
|
|
411
416
|
/**
|
|
412
417
|
* Deposit completed payload — emitted by SDKs that drive a deposit through
|
|
413
418
|
* the integrations flow. Lives on `CommonCallbacks` because both Auth and
|