swagger-client 3.27.5 → 3.27.6
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/es/execute/index.js
CHANGED
|
@@ -348,7 +348,7 @@ function buildOas3UrlWithContext(ourUrl = '', contextUrl = '') {
|
|
|
348
348
|
}
|
|
349
349
|
function getVariableTemplateNames(str) {
|
|
350
350
|
const results = [];
|
|
351
|
-
const re = /{([^}]
|
|
351
|
+
const re = /{([^}]{1,29})}/g;
|
|
352
352
|
let text;
|
|
353
353
|
|
|
354
354
|
// eslint-disable-next-line no-cond-assign
|
package/lib/execute/index.js
CHANGED
|
@@ -357,7 +357,7 @@ function buildOas3UrlWithContext(ourUrl = '', contextUrl = '') {
|
|
|
357
357
|
}
|
|
358
358
|
function getVariableTemplateNames(str) {
|
|
359
359
|
const results = [];
|
|
360
|
-
const re = /{([^}]
|
|
360
|
+
const re = /{([^}]{1,29})}/g;
|
|
361
361
|
let text;
|
|
362
362
|
|
|
363
363
|
// eslint-disable-next-line no-cond-assign
|