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.
package/dist/generate-openapi.js
CHANGED
|
@@ -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}
|
|
156
|
+
StackName: `${partnerName}-${environment}`
|
|
157
157
|
});
|
|
158
158
|
const result = await cloudFormationClient.send(describeStacksCommand);
|
|
159
159
|
if (!result.Stacks) {
|
package/package.json
CHANGED
package/src/generate-openapi.ts
CHANGED
|
@@ -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}
|
|
167
|
+
StackName: `${partnerName}-${environment}`
|
|
168
168
|
});
|
|
169
169
|
|
|
170
170
|
const result = await cloudFormationClient.send(describeStacksCommand);
|