@alanszp/eventbridge-client 10.0.0 → 10.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/basicEventbridgeClient.test.js +4 -4
- package/dist/basicEventbridgeClient.test.js.map +1 -1
- package/dist/helpers/mapLaraEventToAWSEvent.js +1 -1
- package/dist/helpers/mapLaraEventToAWSEvent.js.map +1 -1
- package/node_modules/@cspotcode/source-map-support/LICENSE.md +21 -0
- package/node_modules/@cspotcode/source-map-support/README.md +289 -0
- package/node_modules/@cspotcode/source-map-support/browser-source-map-support.js +114 -0
- package/node_modules/@cspotcode/source-map-support/package.json +50 -0
- package/node_modules/@cspotcode/source-map-support/register-hook-require.d.ts +7 -0
- package/node_modules/@cspotcode/source-map-support/register-hook-require.js +3 -0
- package/node_modules/@cspotcode/source-map-support/register.d.ts +7 -0
- package/node_modules/@cspotcode/source-map-support/register.js +1 -0
- package/node_modules/@cspotcode/source-map-support/source-map-support.d.ts +76 -0
- package/node_modules/@cspotcode/source-map-support/source-map-support.js +938 -0
- package/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
- package/node_modules/@jridgewell/trace-mapping/README.md +193 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +514 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +1 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +528 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +1 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts +8 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/binary-search.d.ts +32 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/by-source.d.ts +7 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/resolve.d.ts +1 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/sort.d.ts +2 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts +16 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/strip-filename.d.ts +4 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts +70 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts +85 -0
- package/node_modules/@jridgewell/trace-mapping/package.json +70 -0
- package/node_modules/@types/node/LICENSE +21 -0
- package/node_modules/@types/node/README.md +15 -0
- package/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/node_modules/@types/node/assert.d.ts +996 -0
- package/node_modules/@types/node/async_hooks.d.ts +539 -0
- package/node_modules/@types/node/buffer.d.ts +2362 -0
- package/node_modules/@types/node/child_process.d.ts +1540 -0
- package/node_modules/@types/node/cluster.d.ts +432 -0
- package/node_modules/@types/node/console.d.ts +415 -0
- package/node_modules/@types/node/constants.d.ts +19 -0
- package/node_modules/@types/node/crypto.d.ts +4487 -0
- package/node_modules/@types/node/dgram.d.ts +596 -0
- package/node_modules/@types/node/diagnostics_channel.d.ts +545 -0
- package/node_modules/@types/node/dns/promises.d.ts +425 -0
- package/node_modules/@types/node/dns.d.ts +809 -0
- package/node_modules/@types/node/dom-events.d.ts +122 -0
- package/node_modules/@types/node/domain.d.ts +170 -0
- package/node_modules/@types/node/events.d.ts +879 -0
- package/node_modules/@types/node/fs/promises.d.ts +1239 -0
- package/node_modules/@types/node/fs.d.ts +4311 -0
- package/node_modules/@types/node/globals.d.ts +411 -0
- package/node_modules/@types/node/globals.global.d.ts +1 -0
- package/node_modules/@types/node/http.d.ts +1887 -0
- package/node_modules/@types/node/http2.d.ts +2382 -0
- package/node_modules/@types/node/https.d.ts +550 -0
- package/node_modules/@types/node/index.d.ts +88 -0
- package/node_modules/@types/node/inspector.d.ts +2747 -0
- package/node_modules/@types/node/module.d.ts +315 -0
- package/node_modules/@types/node/net.d.ts +949 -0
- package/node_modules/@types/node/os.d.ts +478 -0
- package/node_modules/@types/node/package.json +229 -0
- package/node_modules/@types/node/path.d.ts +191 -0
- package/node_modules/@types/node/perf_hooks.d.ts +645 -0
- package/node_modules/@types/node/process.d.ts +1561 -0
- package/node_modules/@types/node/punycode.d.ts +117 -0
- package/node_modules/@types/node/querystring.d.ts +141 -0
- package/node_modules/@types/node/readline/promises.d.ts +150 -0
- package/node_modules/@types/node/readline.d.ts +539 -0
- package/node_modules/@types/node/repl.d.ts +430 -0
- package/node_modules/@types/node/stream/consumers.d.ts +12 -0
- package/node_modules/@types/node/stream/promises.d.ts +83 -0
- package/node_modules/@types/node/stream/web.d.ts +366 -0
- package/node_modules/@types/node/stream.d.ts +1701 -0
- package/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/node_modules/@types/node/test.d.ts +1465 -0
- package/node_modules/@types/node/timers/promises.d.ts +93 -0
- package/node_modules/@types/node/timers.d.ts +240 -0
- package/node_modules/@types/node/tls.d.ts +1210 -0
- package/node_modules/@types/node/trace_events.d.ts +182 -0
- package/node_modules/@types/node/ts4.8/assert/strict.d.ts +8 -0
- package/node_modules/@types/node/ts4.8/assert.d.ts +996 -0
- package/node_modules/@types/node/ts4.8/async_hooks.d.ts +539 -0
- package/node_modules/@types/node/ts4.8/buffer.d.ts +2362 -0
- package/node_modules/@types/node/ts4.8/child_process.d.ts +1540 -0
- package/node_modules/@types/node/ts4.8/cluster.d.ts +432 -0
- package/node_modules/@types/node/ts4.8/console.d.ts +415 -0
- package/node_modules/@types/node/ts4.8/constants.d.ts +19 -0
- package/node_modules/@types/node/ts4.8/crypto.d.ts +4487 -0
- package/node_modules/@types/node/ts4.8/dgram.d.ts +596 -0
- package/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +545 -0
- package/node_modules/@types/node/ts4.8/dns/promises.d.ts +425 -0
- package/node_modules/@types/node/ts4.8/dns.d.ts +809 -0
- package/node_modules/@types/node/ts4.8/dom-events.d.ts +122 -0
- package/node_modules/@types/node/ts4.8/domain.d.ts +170 -0
- package/node_modules/@types/node/ts4.8/events.d.ts +879 -0
- package/node_modules/@types/node/ts4.8/fs/promises.d.ts +1239 -0
- package/node_modules/@types/node/ts4.8/fs.d.ts +4311 -0
- package/node_modules/@types/node/ts4.8/globals.d.ts +411 -0
- package/node_modules/@types/node/ts4.8/globals.global.d.ts +1 -0
- package/node_modules/@types/node/ts4.8/http.d.ts +1887 -0
- package/node_modules/@types/node/ts4.8/http2.d.ts +2382 -0
- package/node_modules/@types/node/ts4.8/https.d.ts +550 -0
- package/node_modules/@types/node/ts4.8/index.d.ts +88 -0
- package/node_modules/@types/node/ts4.8/inspector.d.ts +2747 -0
- package/node_modules/@types/node/ts4.8/module.d.ts +315 -0
- package/node_modules/@types/node/ts4.8/net.d.ts +949 -0
- package/node_modules/@types/node/ts4.8/os.d.ts +478 -0
- package/node_modules/@types/node/ts4.8/path.d.ts +191 -0
- package/node_modules/@types/node/ts4.8/perf_hooks.d.ts +645 -0
- package/node_modules/@types/node/ts4.8/process.d.ts +1561 -0
- package/node_modules/@types/node/ts4.8/punycode.d.ts +117 -0
- package/node_modules/@types/node/ts4.8/querystring.d.ts +141 -0
- package/node_modules/@types/node/ts4.8/readline/promises.d.ts +150 -0
- package/node_modules/@types/node/ts4.8/readline.d.ts +539 -0
- package/node_modules/@types/node/ts4.8/repl.d.ts +430 -0
- package/node_modules/@types/node/ts4.8/stream/consumers.d.ts +12 -0
- package/node_modules/@types/node/ts4.8/stream/promises.d.ts +83 -0
- package/node_modules/@types/node/ts4.8/stream/web.d.ts +366 -0
- package/node_modules/@types/node/ts4.8/stream.d.ts +1701 -0
- package/node_modules/@types/node/ts4.8/string_decoder.d.ts +67 -0
- package/node_modules/@types/node/ts4.8/test.d.ts +1465 -0
- package/node_modules/@types/node/ts4.8/timers/promises.d.ts +93 -0
- package/node_modules/@types/node/ts4.8/timers.d.ts +240 -0
- package/node_modules/@types/node/ts4.8/tls.d.ts +1210 -0
- package/node_modules/@types/node/ts4.8/trace_events.d.ts +182 -0
- package/node_modules/@types/node/ts4.8/tty.d.ts +208 -0
- package/node_modules/@types/node/ts4.8/url.d.ts +927 -0
- package/node_modules/@types/node/ts4.8/util.d.ts +2183 -0
- package/node_modules/@types/node/ts4.8/v8.d.ts +764 -0
- package/node_modules/@types/node/ts4.8/vm.d.ts +903 -0
- package/node_modules/@types/node/ts4.8/wasi.d.ts +179 -0
- package/node_modules/@types/node/ts4.8/worker_threads.d.ts +691 -0
- package/node_modules/@types/node/ts4.8/zlib.d.ts +517 -0
- package/node_modules/@types/node/tty.d.ts +208 -0
- package/node_modules/@types/node/url.d.ts +927 -0
- package/node_modules/@types/node/util.d.ts +2183 -0
- package/node_modules/@types/node/v8.d.ts +764 -0
- package/node_modules/@types/node/vm.d.ts +903 -0
- package/node_modules/@types/node/wasi.d.ts +179 -0
- package/node_modules/@types/node/worker_threads.d.ts +691 -0
- package/node_modules/@types/node/zlib.d.ts +517 -0
- package/package.json +4 -4
- package/src/basicEventbridgeClient.test.ts +4 -4
- package/src/helpers/mapLaraEventToAWSEvent.ts +1 -1
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cspotcode/source-map-support",
|
|
3
|
+
"description": "Fixes stack traces for files with source maps",
|
|
4
|
+
"version": "0.8.1",
|
|
5
|
+
"main": "./source-map-support.js",
|
|
6
|
+
"types": "./source-map-support.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "node build.js",
|
|
9
|
+
"serve-tests": "http-server -p 1336",
|
|
10
|
+
"test": "mocha"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"/register.d.ts",
|
|
14
|
+
"/register.js",
|
|
15
|
+
"/register-hook-require.d.ts",
|
|
16
|
+
"/register-hook-require.js",
|
|
17
|
+
"/source-map-support.d.ts",
|
|
18
|
+
"/source-map-support.js",
|
|
19
|
+
"/browser-source-map-support.js"
|
|
20
|
+
],
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@jridgewell/trace-mapping": "0.3.9"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@types/lodash": "^4.14.182",
|
|
26
|
+
"browserify": "^4.2.3",
|
|
27
|
+
"coffeescript": "^1.12.7",
|
|
28
|
+
"http-server": "^0.11.1",
|
|
29
|
+
"lodash": "^4.17.21",
|
|
30
|
+
"mocha": "^3.5.3",
|
|
31
|
+
"semver": "^7.3.7",
|
|
32
|
+
"source-map": "0.6.1",
|
|
33
|
+
"webpack": "^1.15.0"
|
|
34
|
+
},
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "https://github.com/cspotcode/node-source-map-support"
|
|
38
|
+
},
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/cspotcode/node-source-map-support/issues"
|
|
41
|
+
},
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=12"
|
|
45
|
+
},
|
|
46
|
+
"volta": {
|
|
47
|
+
"node": "16.11.0",
|
|
48
|
+
"npm": "7.24.2"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require('./').install();
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
// Type definitions for source-map-support 0.5
|
|
2
|
+
// Project: https://github.com/evanw/node-source-map-support
|
|
3
|
+
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
|
|
4
|
+
// Jason Cheatham <https://github.com/jason0x43>
|
|
5
|
+
// Alcedo Nathaniel De Guzman Jr <https://github.com/natealcedo>
|
|
6
|
+
// Griffin Yourick <https://github.com/tough-griff>
|
|
7
|
+
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
8
|
+
|
|
9
|
+
export interface RawSourceMap {
|
|
10
|
+
version: 3;
|
|
11
|
+
sources: string[];
|
|
12
|
+
names: string[];
|
|
13
|
+
sourceRoot?: string;
|
|
14
|
+
sourcesContent?: string[];
|
|
15
|
+
mappings: string;
|
|
16
|
+
file: string;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Output of retrieveSourceMap().
|
|
21
|
+
* From source-map-support:
|
|
22
|
+
* The map field may be either a string or the parsed JSON object (i.e.,
|
|
23
|
+
* it must be a valid argument to the SourceMapConsumer constructor).
|
|
24
|
+
*/
|
|
25
|
+
export interface UrlAndMap {
|
|
26
|
+
url: string;
|
|
27
|
+
map: string | RawSourceMap;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Options to install().
|
|
32
|
+
*/
|
|
33
|
+
export interface Options {
|
|
34
|
+
handleUncaughtExceptions?: boolean | undefined;
|
|
35
|
+
hookRequire?: boolean | undefined;
|
|
36
|
+
emptyCacheBetweenOperations?: boolean | undefined;
|
|
37
|
+
environment?: 'auto' | 'browser' | 'node' | undefined;
|
|
38
|
+
overrideRetrieveFile?: boolean | undefined;
|
|
39
|
+
overrideRetrieveSourceMap?: boolean | undefined;
|
|
40
|
+
retrieveFile?(path: string): string;
|
|
41
|
+
retrieveSourceMap?(source: string): UrlAndMap | null;
|
|
42
|
+
/**
|
|
43
|
+
* Set false to disable redirection of require / import `source-map-support` to `@cspotcode/source-map-support`
|
|
44
|
+
*/
|
|
45
|
+
redirectConflictingLibrary?: boolean;
|
|
46
|
+
/**
|
|
47
|
+
* Callback will be called every time we redirect due to `redirectConflictingLibrary`
|
|
48
|
+
* This allows consumers to log helpful warnings if they choose.
|
|
49
|
+
* @param parent NodeJS.Module which made the require() or require.resolve() call
|
|
50
|
+
* @param options options object internally passed to node's `_resolveFilename` hook
|
|
51
|
+
*/
|
|
52
|
+
onConflictingLibraryRedirect?: (request: string, parent: any, isMain: boolean, options: any, redirectedRequest: string) => void;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export interface Position {
|
|
56
|
+
source: string;
|
|
57
|
+
line: number;
|
|
58
|
+
column: number;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export function wrapCallSite(frame: any /* StackFrame */): any /* StackFrame */;
|
|
62
|
+
export function getErrorSource(error: Error): string | null;
|
|
63
|
+
export function mapSourcePosition(position: Position): Position;
|
|
64
|
+
export function retrieveSourceMap(source: string): UrlAndMap | null;
|
|
65
|
+
export function resetRetrieveHandlers(): void;
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Install SourceMap support.
|
|
69
|
+
* @param options Can be used to e.g. disable uncaughtException handler.
|
|
70
|
+
*/
|
|
71
|
+
export function install(options?: Options): void;
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Uninstall SourceMap support.
|
|
75
|
+
*/
|
|
76
|
+
export function uninstall(): void;
|