@types/ineum
Advanced tools
Comparing version 1.0.0 to 175.0.0
@@ -1,13 +0,15 @@ | ||
// Type definitions for non-npm package ineum-browser 1.0 | ||
// Type definitions for non-npm package ineum-browser 175.0 | ||
// Project: https://docs.instana.io/products/website_monitoring/api/ | ||
// Definitions by: Enzo Volkmann <https://github.com/evolkmann> | ||
// Definitions by: Enzo Volkmann <https://github.com/evolkmann>, Benjamin Blackmore <https://github.com/bripkens> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
// TypeScript Version: 3.2 | ||
// Website Monitoring API from Instana (status: 2019-09-10) | ||
// Website Monitoring API from Instana (status: 2020-04-19) | ||
declare function ineum(command: 'key' | 'reportingUrl' | 'page' | 'traceId', value: string): void; | ||
declare function ineum(command: 'user', userId: string, userName?: string, userEmail?: string): void; | ||
declare function ineum(command: 'meta', key: string, value: string): void; | ||
declare function ineum(command: 'user', userId?: string, userName?: string, userEmail?: string): void; | ||
declare function ineum(command: 'meta', key: string, value: string | number | boolean): void; | ||
declare function ineum(command: 'autoClearResourceTimings' | 'wrapEventHandlers' | 'wrapTimers', enable: boolean): void; | ||
declare function ineum(command: 'trackSessions', sessionInactivityTimeout?: number, sessionTerminationTimeout?: number): void; | ||
declare function ineum(command: 'terminateSession'): void; | ||
declare function ineum(command: 'getPageLoadId'): string | undefined; | ||
@@ -17,2 +19,11 @@ declare function ineum(command: 'reportError', error: string, opts?: { | ||
}): void; | ||
declare function ineum(command: 'ignoreUrls' | 'ignoreErrorMessages' | 'whitelistedOrigins', values: RegExp[]): void; | ||
declare function ineum(command: 'reportEvent', name: string, opts?: { | ||
duration?: number, | ||
backendTraceId?: string, | ||
error?: Error, | ||
componentStack?: string, | ||
meta?: { | ||
[key: string]: string | number | boolean | ||
}, | ||
}): void; | ||
declare function ineum(command: 'ignoreUrls' | 'ignoreErrorMessages' | 'whitelistedOrigins' | 'ignoreUserTimings', values: RegExp[]): void; |
{ | ||
"name": "@types/ineum", | ||
"version": "1.0.0", | ||
"version": "175.0.0", | ||
"description": "TypeScript definitions for ineum-browser", | ||
@@ -11,6 +11,11 @@ "license": "MIT", | ||
"githubUsername": "evolkmann" | ||
}, | ||
{ | ||
"name": "Benjamin Blackmore", | ||
"url": "https://github.com/bripkens", | ||
"githubUsername": "bripkens" | ||
} | ||
], | ||
"main": "", | ||
"types": "index", | ||
"types": "index.d.ts", | ||
"repository": { | ||
@@ -23,4 +28,4 @@ "type": "git", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "082994f45ec6e2762dcc5c5091aea40d6accf4e23db8fc2479cfff95cf63fb4d", | ||
"typesPublisherContentHash": "115a8e96d06eb9830c4aaf9350d970dcf016f09f1088f94372f9a704fec93b61", | ||
"typeScriptVersion": "3.2" | ||
} |
@@ -8,10 +8,10 @@ # Installation | ||
# Details | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ineum | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ineum. | ||
Additional Details | ||
* Last updated: Fri, 13 Sep 2019 16:24:56 GMT | ||
### Additional Details | ||
* Last updated: Mon, 27 Apr 2020 09:30:10 GMT | ||
* Dependencies: none | ||
* Global values: ineum | ||
* Global values: `ineum` | ||
# Credits | ||
These definitions were written by Enzo Volkmann <https://github.com/evolkmann>. | ||
These definitions were written by [Enzo Volkmann](https://github.com/evolkmann), and [Benjamin Blackmore](https://github.com/bripkens). |
Sorry, the diff of this file is not supported yet
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
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
4134
26