New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@notifi-network/notifi-dataplane

Package Overview
Dependencies
Maintainers
8
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@notifi-network/notifi-dataplane - npm Package Compare versions

Comparing version 0.90.2 to 0.90.4

39

lib/types/FusionMessage.ts

@@ -0,26 +1,29 @@

import { Types } from 'notifi-graphql/dist';
export interface FusionMessage {
eventTypeId: string;
variablesJson: any;
variablesJson: object | VariablesJsonPayload;
specificWallets?: ReadonlyArray<
Readonly<{
walletPublicKey: string;
// NOTE: Blockchain duplicated here because there would be a circular reference otherwise
walletBlockchain:
| 'SOLANA'
| 'ETHEREUM'
| 'AVALANCHE'
| 'APTOS'
| 'ACALA'
| 'POLYGON'
| 'ARBITRUM'
| 'BINANCE'
| 'NEAR'
| 'OPTIMISM'
| 'INJECTIVE'
| 'OSMOSIS'
| 'NIBIRU'
| 'SUI'
| 'ZKSYNC';
walletBlockchain: Types.WalletBlockchain;
}>
>;
}
export type OptionalTargetType = 'Sms' | 'Telegram' | 'Discord' | 'Email';
export type VariablesJsonPayload = { Platform: TargetVariables } & {
[key in OptionalTargetType]?: TargetVariables;
};
/**
* @param message - only plain text is supported.
* @param message__markdown - markdown string here will be converted to html.
*/
export type TargetVariables = {
subject?: string;
message?: string;
message__markdown?: string;
[key: string]: string | undefined;
};
{
"name": "@notifi-network/notifi-dataplane",
"version": "0.90.2",
"version": "0.90.4",
"description": "The Dataplane API for Notifi",

@@ -24,2 +24,5 @@ "main": "./dist/index.js",

},
"dependencies": {
"@notifi-network/notifi-graphql": "^0.90.4"
},
"repository": {

@@ -35,3 +38,3 @@ "type": "git",

"homepage": "https://github.com/notifi-network/notifi-sdk-ts#readme",
"gitHead": "565f9b0cdcd4eb40512b8116253a2fa9fe22a9ff"
"gitHead": "66aa45e6e8b75a7215f91a1f4e1c8e4cddd74d01"
}

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc