stacktape 3.2.1 → 3.2.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/package.json +1 -1
- package/plain.d.ts +334 -934
- package/types.d.ts +3 -3
package/types.d.ts
CHANGED
|
@@ -2696,7 +2696,7 @@ export declare class LocalScript extends BaseTypeProperties {
|
|
|
2696
2696
|
*
|
|
2697
2697
|
* The script must define one of the following: `executeCommand`, `executeScript`, `executeCommands`, or `executeScripts`.
|
|
2698
2698
|
*/
|
|
2699
|
-
constructor(properties:
|
|
2699
|
+
constructor(properties: LocalScriptProps);
|
|
2700
2700
|
readonly type: 'local-script';
|
|
2701
2701
|
}
|
|
2702
2702
|
|
|
@@ -2712,7 +2712,7 @@ export declare class BastionScript extends BaseTypeProperties {
|
|
|
2712
2712
|
* This is useful for running commands that need direct access to VPC resources
|
|
2713
2713
|
* or for ensuring consistent execution environments across different machines.
|
|
2714
2714
|
*/
|
|
2715
|
-
constructor(properties:
|
|
2715
|
+
constructor(properties: BastionScriptProps);
|
|
2716
2716
|
readonly type: 'bastion-script';
|
|
2717
2717
|
}
|
|
2718
2718
|
|
|
@@ -2728,7 +2728,7 @@ export declare class LocalScriptWithBastionTunneling extends BaseTypeProperties
|
|
|
2728
2728
|
*
|
|
2729
2729
|
* The environment variables injected by `connectTo` are automatically adjusted to use the tunneled endpoints.
|
|
2730
2730
|
*/
|
|
2731
|
-
constructor(properties:
|
|
2731
|
+
constructor(properties: LocalScriptWithBastionTunnelingProps);
|
|
2732
2732
|
readonly type: 'local-script-with-bastion-tunneling';
|
|
2733
2733
|
}
|
|
2734
2734
|
|