Gathering detailed insights and metrics for @types/dogapi
Gathering detailed insights and metrics for @types/dogapi
The repository for high quality TypeScript type definitions.
npm install @types/dogapi
Typescript
Module System
100
Supply Chain
99.6
Quality
75.7
Maintenance
100
Vulnerability
100
License
TypeScript (99.9%)
JavaScript (0.09%)
Shell (0.01%)
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Total Downloads
13,961,620
Last Day
26,422
Last Week
125,097
Last Month
512,053
Last Year
3,980,887
NOASSERTION License
49,412 Stars
88,911 Commits
30,335 Forks
640 Watchers
8 Branches
9,958 Contributors
Updated on Mar 14, 2025
Latest Version
2.8.10
Package Id
@types/dogapi@2.8.10
Unpacked Size
7.14 kB
Size
2.13 kB
File Count
5
Published on
Nov 20, 2023
Cumulative downloads
Total Downloads
Last Day
3%
26,422
Compared to previous day
Last Week
2.2%
125,097
Compared to previous week
Last Month
15.4%
512,053
Compared to previous month
Last Year
3.9%
3,980,887
Compared to previous year
npm install --save @types/dogapi
This package contains type definitions for dogapi (https://github.com/brettlangdon/node-dogapi#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/dogapi.
1export function initialize(opts: { api_key: string; app_key: string; api_host?: string | undefined }): void; 2 3interface event { 4 create(title: string, text: string, callback: (err: Error | null, res: EventCreateResponse) => void): void; 5 create( 6 title: string, 7 text: string, 8 properties: { 9 date_happened?: number | undefined; 10 priority?: "normal" | "low" | undefined; 11 host?: string | undefined; 12 tags?: readonly string[] | undefined; 13 alert_type?: "error" | "warning" | "info" | "success" | undefined; 14 aggregation_key?: string | undefined; 15 source_type_name?: 16 | "nagios" 17 | "hudson" 18 | "jenkins" 19 | "user" 20 | "my apps" 21 | "feed" 22 | "chef" 23 | "puppet" 24 | "git" 25 | "bitbucket" 26 | "fabric" 27 | "capistrano" 28 | undefined; 29 }, 30 callback: (err: Error | null, res: EventCreateResponse) => void, 31 ): void; 32} 33 34export const event: event; 35 36interface metric { 37 send(metric: string, points: number | number[], callback: (err: Error | null, res: "ok") => void): void; 38 send( 39 metric: string, 40 points: number | number[], 41 extra: { 42 type?: "gauge" | "rate" | "count" | undefined; 43 metric_type?: "gauge" | "count" | undefined; 44 host?: string | undefined; 45 tags?: readonly string[] | undefined; 46 }, 47 callback: (err: Error | null, res: "ok") => void, 48 ): void; 49 send_all( 50 metrics: Array<{ 51 metric: string; 52 points: number | number[] | Array<[string, number]>; 53 tags?: string[] | undefined; 54 type?: string | undefined; 55 metric_type?: string | undefined; 56 }>, 57 callback: (err: Error | null, res: EventCreateResponse) => void, 58 ): void; 59} 60 61export const metric: metric; 62 63export interface EventCreateResponse { 64 ok: boolean; 65 event: { 66 date_happened: number; 67 handle: any; 68 id: bigint; 69 priority: "normal" | "low"; 70 related_event_id: number | null; 71 tags: readonly string[]; 72 text: string; 73 title: string; 74 url: string; 75 }; 76 status: "ok"; 77} 78 79export {}; 80
These definitions were written by olebedev.
No vulnerabilities found.
Reason
30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
security policy file detected
Details
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
Found 29/30 approved changesets -- score normalized to 9
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-03-10
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More