-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix delete request from child account (#324)
* Fix delete request from child account - Fixes #323 * Fix delete from child account * Fix delete in child account * Real fix * Fix deployer param * AppName and SemVer headers * Minor fix to headers
- Loading branch information
Showing
13 changed files
with
638 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
packages/microapps-deployer-lib/src/messages/get-version.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { IDeployVersionRequestBase } from './deploy-version'; | ||
import { IDeployerResponse } from './deployer'; | ||
|
||
/** | ||
* Represents a Get Version Request | ||
*/ | ||
export interface IGetVersionRequest extends Pick<IDeployVersionRequestBase, 'appName' | 'semVer'> { | ||
readonly type: 'getVersion'; | ||
} | ||
|
||
/** | ||
* Represents a Get Version Response | ||
*/ | ||
export interface IGetVersionResponse extends IDeployerResponse { | ||
readonly type: 'getVersion'; | ||
|
||
readonly version?: { | ||
readonly appName: string; | ||
readonly semVer: string; | ||
|
||
readonly type: 'lambda' | 'lambda-url' | 'url' | 'static'; | ||
|
||
readonly lambdaArn?: string; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.