@pushprotocol/restapi
Advanced tools
Comparing version 1.2.6 to 1.2.7
@@ -5,2 +5,12 @@ # Changelog | ||
## [1.2.7](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.6...restapi-1.2.7) (2023-04-27) | ||
### Bug Fixes | ||
* Merge branch 'deployment' ([0d184dc](https://github.com/ethereum-push-notification-service/push-sdk/commit/0d184dc75d8680ac8a77f1124204af86befac82c)) | ||
* senderType is optional param ([#329](https://github.com/ethereum-push-notification-service/push-sdk/issues/329)) ([ed3d6e6](https://github.com/ethereum-push-notification-service/push-sdk/commit/ed3d6e611975da054d5e1b3809e614450a563cd5)) | ||
## [1.2.6](https://github.com/ethereum-push-notification-service/push-sdk/compare/restapi-1.2.5...restapi-1.2.6) (2023-04-27) | ||
@@ -7,0 +17,0 @@ |
{ | ||
"name": "@pushprotocol/restapi", | ||
"version": "1.2.6", | ||
"version": "1.2.7", | ||
"type": "commonjs", | ||
@@ -5,0 +5,0 @@ "publishConfig": { |
@@ -69,3 +69,3 @@ import { ethers } from 'ethers'; | ||
export interface ISendNotificationInputOptions { | ||
senderType: 0 | 1; | ||
senderType?: 0 | 1; | ||
signer: any; | ||
@@ -72,0 +72,0 @@ type: NOTIFICATION_TYPE; |
493054