vls-openapi-generator 1.8.0 → 1.8.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.
@@ -153,7 +153,7 @@ exports.generateOpenAPI = generateOpenAPI;
153
153
  async function getStackURL(partnerName, environment) {
154
154
  const cloudFormationClient = new client_cloudformation_1.CloudFormationClient();
155
155
  const describeStacksCommand = new client_cloudformation_1.DescribeStacksCommand({
156
- StackName: `${partnerName}-development`
156
+ StackName: `${partnerName}-${environment}`
157
157
  });
158
158
  const result = await cloudFormationClient.send(describeStacksCommand);
159
159
  if (!result.Stacks) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vls-openapi-generator",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -164,7 +164,7 @@ async function getStackURL(partnerName: string, environment: 'development' | 'pr
164
164
  const cloudFormationClient = new CloudFormationClient();
165
165
 
166
166
  const describeStacksCommand = new DescribeStacksCommand({
167
- StackName: `${partnerName}-development`
167
+ StackName: `${partnerName}-${environment}`
168
168
  });
169
169
 
170
170
  const result = await cloudFormationClient.send(describeStacksCommand);