@notifi-network/notifi-react-hooks
Advanced tools
Comparing version 0.0.1-alpha.16 to 0.0.1-alpha.17
@@ -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 |
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" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
1
42491
288