Gathering detailed insights and metrics for @types/dogapi
Gathering detailed insights and metrics for @types/dogapi
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.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
50,028 Stars
89,737 Commits
30,433 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 13, 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
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
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
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
Found 27/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
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
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-07-07
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