Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@notifi-network/notifi-react-hooks

Package Overview
Dependencies
Maintainers
1
Versions
522
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@notifi-network/notifi-react-hooks - npm Package Compare versions

Comparing version 0.0.1-alpha.16 to 0.0.1-alpha.17

16

dist/hooks/index.d.ts

@@ -12,15 +12,3 @@ import useCreateAlert from './useCreateAlert';

import useUpdateTargetGroup from './useUpdateTargetGroup';
export {
useCreateAlert,
useCreateEmailTarget,
useCreateSmsTarget,
useCreateTargetGroup,
useCreateTelegramTarget,
useGetFilters,
useGetSourceGroups,
useGetTargetGroups,
useLoginFromDao,
useNotifiJwt,
useUpdateTargetGroup
};
//# sourceMappingURL=index.d.ts.map
export { useCreateAlert, useCreateEmailTarget, useCreateSmsTarget, useCreateTargetGroup, useCreateTelegramTarget, useGetFilters, useGetSourceGroups, useGetTargetGroups, useLoginFromDao, useNotifiJwt, useUpdateTargetGroup };
//# sourceMappingURL=index.d.ts.map

2

dist/hooks/useAxiosNotifiService.d.ts
import { AxiosNotifiService } from '@notifi-network/notifi-axios-adapter';
declare const useAxiosNotifiService: () => AxiosNotifiService;
export default useAxiosNotifiService;
//# sourceMappingURL=useAxiosNotifiService.d.ts.map
//# sourceMappingURL=useAxiosNotifiService.d.ts.map

@@ -1,9 +0,4 @@

import {
CreateAlertPayload,
CreateAlertResult
} from '@notifi-network/notifi-core';
declare const useCreateAlert: () => (
payload: CreateAlertPayload
) => Promise<CreateAlertResult>;
import { CreateAlertPayload, CreateAlertResult } from '@notifi-network/notifi-core';
declare const useCreateAlert: () => (payload: CreateAlertPayload) => Promise<CreateAlertResult>;
export default useCreateAlert;
//# sourceMappingURL=useCreateAlert.d.ts.map
//# sourceMappingURL=useCreateAlert.d.ts.map

@@ -1,9 +0,4 @@

import {
CreateEmailTargetPayload,
CreateEmailTargetResult
} from '@notifi-network/notifi-core';
declare const useCreateEmailTarget: () => (
payload: CreateEmailTargetPayload
) => Promise<CreateEmailTargetResult>;
import { CreateEmailTargetPayload, CreateEmailTargetResult } from '@notifi-network/notifi-core';
declare const useCreateEmailTarget: () => (payload: CreateEmailTargetPayload) => Promise<CreateEmailTargetResult>;
export default useCreateEmailTarget;
//# sourceMappingURL=useCreateEmailTarget.d.ts.map
//# sourceMappingURL=useCreateEmailTarget.d.ts.map

@@ -1,9 +0,4 @@

import {
CreateSmsTargetPayload,
CreateSmsTargetResult
} from '@notifi-network/notifi-core';
declare const useCreateSmsTarget: () => (
payload: CreateSmsTargetPayload
) => Promise<CreateSmsTargetResult>;
import { CreateSmsTargetPayload, CreateSmsTargetResult } from '@notifi-network/notifi-core';
declare const useCreateSmsTarget: () => (payload: CreateSmsTargetPayload) => Promise<CreateSmsTargetResult>;
export default useCreateSmsTarget;
//# sourceMappingURL=useCreateSmsTarget.d.ts.map
//# sourceMappingURL=useCreateSmsTarget.d.ts.map

@@ -1,9 +0,4 @@

import {
CreateTargetGroupPayload,
CreateTargetGroupResult
} from '@notifi-network/notifi-core';
declare const useCreateTargetGroup: () => (
payload: CreateTargetGroupPayload
) => Promise<CreateTargetGroupResult>;
import { CreateTargetGroupPayload, CreateTargetGroupResult } from '@notifi-network/notifi-core';
declare const useCreateTargetGroup: () => (payload: CreateTargetGroupPayload) => Promise<CreateTargetGroupResult>;
export default useCreateTargetGroup;
//# sourceMappingURL=useCreateTargetGroup.d.ts.map
//# sourceMappingURL=useCreateTargetGroup.d.ts.map

@@ -1,9 +0,4 @@

import {
CreateTelegramTargetPayload,
CreateTelegramTargetResult
} from '@notifi-network/notifi-core';
declare const useCreateTelegramTarget: () => (
payload: CreateTelegramTargetPayload
) => Promise<CreateTelegramTargetResult>;
import { CreateTelegramTargetPayload, CreateTelegramTargetResult } from '@notifi-network/notifi-core';
declare const useCreateTelegramTarget: () => (payload: CreateTelegramTargetPayload) => Promise<CreateTelegramTargetResult>;
export default useCreateTelegramTarget;
//# sourceMappingURL=useCreateTelegramTarget.d.ts.map
//# sourceMappingURL=useCreateTelegramTarget.d.ts.map
import { GetFiltersResult } from '@notifi-network/notifi-core';
declare const useGetFilters: () => () => Promise<GetFiltersResult>;
declare const useGetFilters: () => (() => Promise<GetFiltersResult>);
export default useGetFilters;
//# sourceMappingURL=useGetFilters.d.ts.map
//# sourceMappingURL=useGetFilters.d.ts.map
import { GetSourceGroupsResult } from '@notifi-network/notifi-core';
declare const useGetSourceGroups: () => () => Promise<GetSourceGroupsResult>;
declare const useGetSourceGroups: () => (() => Promise<GetSourceGroupsResult>);
export default useGetSourceGroups;
//# sourceMappingURL=useGetSourceGroups.d.ts.map
//# sourceMappingURL=useGetSourceGroups.d.ts.map
import { GetTargetGroupsResult } from '@notifi-network/notifi-core';
declare const useGetTargetGroups: () => () => Promise<GetTargetGroupsResult>;
declare const useGetTargetGroups: () => (() => Promise<GetTargetGroupsResult>);
export default useGetTargetGroups;
//# sourceMappingURL=useGetTargetGroups.d.ts.map
//# sourceMappingURL=useGetTargetGroups.d.ts.map

@@ -1,9 +0,4 @@

import {
LogInFromDaoPayload,
LogInFromDaoResult
} from '@notifi-network/notifi-core';
declare const useLoginFromDao: () => (
payload: LogInFromDaoPayload
) => Promise<LogInFromDaoResult>;
import { LogInFromDaoPayload, LogInFromDaoResult } from '@notifi-network/notifi-core';
declare const useLoginFromDao: () => (payload: LogInFromDaoPayload) => Promise<LogInFromDaoResult>;
export default useLoginFromDao;
//# sourceMappingURL=useLoginFromDao.d.ts.map
//# sourceMappingURL=useLoginFromDao.d.ts.map

@@ -1,7 +0,7 @@

export declare const LOCAL_STORAGE_KEY = 'notifi:jwt';
export declare const LOCAL_STORAGE_KEY = "notifi:jwt";
declare const useNotifiJwt: () => Readonly<{
jwtRef: React.MutableRefObject<string | null>;
setJwt: (jwt: string | null) => void;
jwtRef: React.MutableRefObject<string | null>;
setJwt: (jwt: string | null) => void;
}>;
export default useNotifiJwt;
//# sourceMappingURL=useNotifiJwt.d.ts.map
//# sourceMappingURL=useNotifiJwt.d.ts.map

@@ -1,9 +0,4 @@

import {
UpdateTargetGroupPayload,
UpdateTargetGroupResult
} from '@notifi-network/notifi-core';
declare const useUpdateTargetGroup: () => (
payload: UpdateTargetGroupPayload
) => Promise<UpdateTargetGroupResult>;
import { UpdateTargetGroupPayload, UpdateTargetGroupResult } from '@notifi-network/notifi-core';
declare const useUpdateTargetGroup: () => (payload: UpdateTargetGroupPayload) => Promise<UpdateTargetGroupResult>;
export default useUpdateTargetGroup;
//# sourceMappingURL=useUpdateTargetGroup.d.ts.map
//# sourceMappingURL=useUpdateTargetGroup.d.ts.map
export * from './hooks';
//# sourceMappingURL=index.d.ts.map
//# sourceMappingURL=index.d.ts.map
{
"name": "@notifi-network/notifi-react-hooks",
"version": "0.0.1-alpha.16+8596b14",
"version": "0.0.1-alpha.17+fc854a1",
"description": "React hooks provided as a convenience wrapper around notifi.network platform functionality",

@@ -41,4 +41,4 @@ "author": "Juni Kim <73hKrn@gmail.com>",

"dependencies": {
"@notifi-network/notifi-axios-adapter": "^0.0.1-alpha.16+8596b14",
"@notifi-network/notifi-core": "^0.0.1-alpha.16+8596b14",
"@notifi-network/notifi-axios-adapter": "^0.0.1-alpha.17+fc854a1",
"@notifi-network/notifi-core": "^0.0.1-alpha.17+fc854a1",
"axios": "^0.26.0",

@@ -49,3 +49,3 @@ "react": "^17.0.2",

},
"gitHead": "8596b14428baecd45eea321a558b20366c5e537f"
"gitHead": "fc854a15d866700737f4ddee19c1b8dd40909110"
}
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