@gearbox-protocol/cli-utils 5.35.2 → 5.35.4
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/SSMManager.d.ts +1 -1
- package/dist/SecretsManager.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/resolveYamlFiles.d.ts +1 -1
- package/dist/uncensorMap.d.ts +4 -0
- package/dist/uncensorMap.js +3 -0
- package/package.json +1 -1
package/dist/SSMManager.d.ts
CHANGED
|
@@ -2,4 +2,4 @@ export declare class SSMManager {
|
|
|
2
2
|
#private;
|
|
3
3
|
parameter(name: string): Promise<string>;
|
|
4
4
|
}
|
|
5
|
-
export declare const ssmManagerProxy: (mgr?: SSMManager) => Record<string, Promise<
|
|
5
|
+
export declare const ssmManagerProxy: (mgr?: SSMManager) => Record<string, Promise<unknown>>;
|
package/dist/SecretsManager.d.ts
CHANGED
|
@@ -3,4 +3,4 @@ export declare class SecretsManager {
|
|
|
3
3
|
secret(key: string): Promise<string>;
|
|
4
4
|
secretRaw(key: string): Promise<unknown>;
|
|
5
5
|
}
|
|
6
|
-
export declare const secretsManagerProxy: (mgr?: SecretsManager) => Record<string, Promise<
|
|
6
|
+
export declare const secretsManagerProxy: (mgr?: SecretsManager) => Record<string, Promise<unknown>>;
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED