@notifi-network/notifi-core
Advanced tools
Comparing version 0.1.2-alpha.4 to 0.1.2-alpha.7
@@ -9,2 +9,3 @@ /** | ||
* @property {string | null} name - Friendly name (must be unique) | ||
* @property {string} type - Type of the filter | ||
* | ||
@@ -15,3 +16,4 @@ */ | ||
name: string | null; | ||
type: string; | ||
}>; | ||
//# sourceMappingURL=Filter.d.ts.map |
@@ -5,2 +5,3 @@ export * from './Alert'; | ||
export * from './Operation'; | ||
export * from './Source'; | ||
export * from './SourceGroup'; | ||
@@ -7,0 +8,0 @@ export * from './SmsTarget'; |
@@ -17,2 +17,3 @@ "use strict"; | ||
__exportStar(require("./Operation"), exports); | ||
__exportStar(require("./Source"), exports); | ||
__exportStar(require("./SourceGroup"), exports); | ||
@@ -23,2 +24,2 @@ __exportStar(require("./SmsTarget"), exports); | ||
__exportStar(require("./User"), exports); | ||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9saWIvbW9kZWxzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7OztBQUFBLDBDQUF3QjtBQUN4QixnREFBOEI7QUFDOUIsMkNBQXlCO0FBQ3pCLDhDQUE0QjtBQUM1QixnREFBOEI7QUFDOUIsOENBQTRCO0FBQzVCLGdEQUE4QjtBQUM5QixtREFBaUM7QUFDakMseUNBQXVCIn0= | ||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9saWIvbW9kZWxzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7OztBQUFBLDBDQUF3QjtBQUN4QixnREFBOEI7QUFDOUIsMkNBQXlCO0FBQ3pCLDhDQUE0QjtBQUM1QiwyQ0FBeUI7QUFDekIsZ0RBQThCO0FBQzlCLDhDQUE0QjtBQUM1QixnREFBOEI7QUFDOUIsbURBQWlDO0FBQ2pDLHlDQUF1QiJ9 |
@@ -0,1 +1,2 @@ | ||
import { Source } from "./Source"; | ||
/** | ||
@@ -9,2 +10,3 @@ * Object describing a SourceGroup | ||
* @property {string | null} name - Friendly name (must be unique) | ||
* @property {Source[]} sources - The Sources associated with the SourceGroup | ||
* | ||
@@ -15,3 +17,4 @@ */ | ||
name: string | null; | ||
sources: ReadonlyArray<Source>; | ||
}>; | ||
//# sourceMappingURL=SourceGroup.d.ts.map |
@@ -46,3 +46,3 @@ import { Alert, Filter, SourceGroup, TargetGroup, User } from './models'; | ||
name: string; | ||
sourceGroupId: string; | ||
sourceId: string; | ||
filterId: string; | ||
@@ -49,0 +49,0 @@ filterOptions?: FilterOptions; |
import * as Operations from './operations'; | ||
export declare type NotifiService = Operations.CreateAlertService & Operations.CreateEmailTargetService & Operations.CreateSmsTargetService & Operations.CreateTargetGroupService & Operations.CreateTelegramTargetService & Operations.DeleteAlertService & Operations.GetAlertsService & Operations.GetEmailTargetsService & Operations.GetFiltersService & Operations.GetSmsTargetsService & Operations.GetSourceGroupsService & Operations.GetTargetGroupsService & Operations.GetTelegramTargetsService & Operations.LogInFromDappService & Operations.UpdateTargetGroupService & Readonly<{ | ||
export declare type NotifiService = Operations.CreateAlertService & Operations.CreateEmailTargetService & Operations.CreateSmsTargetService & Operations.CreateSourceGroupService & Operations.CreateTargetGroupService & Operations.CreateTelegramTargetService & Operations.DeleteAlertService & Operations.DeleteSourceGroupService & Operations.DeleteTargetGroupService & Operations.GetAlertsService & Operations.GetEmailTargetsService & Operations.GetFiltersService & Operations.GetSmsTargetsService & Operations.GetSourcesService & Operations.GetSourceGroupsService & Operations.GetTargetGroupsService & Operations.GetTelegramTargetsService & Operations.LogInFromDappService & Operations.UpdateTargetGroupService & Readonly<{ | ||
setJwt: (jwt: string | null) => void; | ||
}>; | ||
//# sourceMappingURL=NotifiService.d.ts.map |
export * from './CreateAlert'; | ||
export * from './CreateEmailTarget'; | ||
export * from './CreateSmsTarget'; | ||
export * from './CreateSourceGroup'; | ||
export * from './CreateTargetGroup'; | ||
export * from './CreateTelegramTarget'; | ||
export * from './DeleteAlert'; | ||
export * from './DeleteSourceGroup'; | ||
export * from './DeleteTargetGroup'; | ||
export * from './GetAlerts'; | ||
@@ -11,2 +14,3 @@ export * from './GetEmailTargets'; | ||
export * from './GetSmsTargets'; | ||
export * from './GetSources'; | ||
export * from './GetSourceGroups'; | ||
@@ -13,0 +17,0 @@ export * from './GetTargetGroups'; |
@@ -16,5 +16,8 @@ "use strict"; | ||
__exportStar(require("./CreateSmsTarget"), exports); | ||
__exportStar(require("./CreateSourceGroup"), exports); | ||
__exportStar(require("./CreateTargetGroup"), exports); | ||
__exportStar(require("./CreateTelegramTarget"), exports); | ||
__exportStar(require("./DeleteAlert"), exports); | ||
__exportStar(require("./DeleteSourceGroup"), exports); | ||
__exportStar(require("./DeleteTargetGroup"), exports); | ||
__exportStar(require("./GetAlerts"), exports); | ||
@@ -24,2 +27,3 @@ __exportStar(require("./GetEmailTargets"), exports); | ||
__exportStar(require("./GetSmsTargets"), exports); | ||
__exportStar(require("./GetSources"), exports); | ||
__exportStar(require("./GetSourceGroups"), exports); | ||
@@ -30,2 +34,2 @@ __exportStar(require("./GetTargetGroups"), exports); | ||
__exportStar(require("./UpdateTargetGroup"), exports); | ||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9saWIvb3BlcmF0aW9ucy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7QUFBQSxnREFBOEI7QUFDOUIsc0RBQW9DO0FBQ3BDLG9EQUFrQztBQUNsQyxzREFBb0M7QUFDcEMseURBQXVDO0FBQ3ZDLGdEQUE4QjtBQUM5Qiw4Q0FBNEI7QUFDNUIsb0RBQWtDO0FBQ2xDLCtDQUE2QjtBQUM3QixrREFBZ0M7QUFDaEMsb0RBQWtDO0FBQ2xDLG9EQUFrQztBQUNsQyx1REFBcUM7QUFDckMsa0RBQWdDO0FBQ2hDLHNEQUFvQyJ9 | ||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9saWIvb3BlcmF0aW9ucy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7QUFBQSxnREFBOEI7QUFDOUIsc0RBQW9DO0FBQ3BDLG9EQUFrQztBQUNsQyxzREFBb0M7QUFDcEMsc0RBQW9DO0FBQ3BDLHlEQUF1QztBQUN2QyxnREFBOEI7QUFDOUIsc0RBQW9DO0FBQ3BDLHNEQUFvQztBQUNwQyw4Q0FBNEI7QUFDNUIsb0RBQWtDO0FBQ2xDLCtDQUE2QjtBQUM3QixrREFBZ0M7QUFDaEMsK0NBQTZCO0FBQzdCLG9EQUFrQztBQUNsQyxvREFBa0M7QUFDbEMsdURBQXFDO0FBQ3JDLGtEQUFnQztBQUNoQyxzREFBb0MifQ== |
{ | ||
"name": "@notifi-network/notifi-core", | ||
"version": "0.1.2-alpha.4+ccd96dd", | ||
"version": "0.1.2-alpha.7+8d8de82", | ||
"description": "The interfaces for the core functionality provided by the SDK", | ||
@@ -39,3 +39,3 @@ "author": "Juni Kim <73hKrn@gmail.com>", | ||
}, | ||
"gitHead": "ccd96dd9874d4e0f348992d9b6323a2819aa2539" | ||
"gitHead": "8d8de82f09526540ca6ff9e936d5e36026c0af4f" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
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
82487
106
569