lambda-live-debugger 1.1.0 → 1.1.1
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.
|
Binary file
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LldConfig } from './types/lldConfig.js';
|
|
2
|
+
import { LambdaResource } from './types/resourcesDiscovery.js';
|
|
2
3
|
/**
|
|
3
4
|
* Get the names of the supported frameworks
|
|
4
5
|
*/
|
|
@@ -7,20 +8,7 @@ declare function getSupportedFrameworksNames(): string[];
|
|
|
7
8
|
* Get the name of the current framework
|
|
8
9
|
*/
|
|
9
10
|
declare function getCurrentFrameworkName(config: LldConfig): Promise<string | undefined>;
|
|
10
|
-
declare function getLambdas(config: LldConfig): Promise<
|
|
11
|
-
codePath: string;
|
|
12
|
-
functionName: string;
|
|
13
|
-
packageJsonPath?: string | undefined;
|
|
14
|
-
handler?: string | undefined;
|
|
15
|
-
forceBundle?: boolean | undefined;
|
|
16
|
-
bundlingType?: import("./types/resourcesDiscovery.js").BundlingType | undefined;
|
|
17
|
-
esBuildOptions?: import("./types/resourcesDiscovery.js").EsBuildOptions | undefined;
|
|
18
|
-
metadata: {
|
|
19
|
-
framework: string;
|
|
20
|
-
stackName?: string | undefined;
|
|
21
|
-
cdkPath?: string | undefined;
|
|
22
|
-
};
|
|
23
|
-
}[] | undefined>;
|
|
11
|
+
declare function getLambdas(config: LldConfig): Promise<LambdaResource[] | undefined>;
|
|
24
12
|
export declare const ResourceDiscovery: {
|
|
25
13
|
getSupportedFrameworksNames: typeof getSupportedFrameworksNames;
|
|
26
14
|
getCurrentFrameworkName: typeof getCurrentFrameworkName;
|