mirror of
https://github.com/azure/login.git
synced 2026-06-06 19:47:08 +00:00
* Bump lodash from 4.17.15 to 4.17.19 (#52) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * Bump @actions/core from 1.1.3 to 1.2.6 (#60) Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.1.3 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * updating node_nodules * updated package-lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
108 lines
2.8 KiB
Text
108 lines
2.8 KiB
Text
{{# def.definitions }}
|
|
{{# def.errors }}
|
|
{{# def.missing }}
|
|
{{# def.setupKeyword }}
|
|
{{# def.$data }}
|
|
|
|
{{ var $vSchema = 'schema' + $lvl; }}
|
|
|
|
{{## def.setupLoop:
|
|
{{? !$isData }}
|
|
var {{=$vSchema}} = validate.schema{{=$schemaPath}};
|
|
{{?}}
|
|
|
|
{{
|
|
var $i = 'i' + $lvl
|
|
, $propertyPath = 'schema' + $lvl + '[' + $i + ']'
|
|
, $missingProperty = '\' + ' + $propertyPath + ' + \'';
|
|
if (it.opts._errorDataPathProperty) {
|
|
it.errorPath = it.util.getPathExpr($currentErrorPath, $propertyPath, it.opts.jsonPointers);
|
|
}
|
|
}}
|
|
#}}
|
|
|
|
|
|
{{## def.isRequiredOwnProperty:
|
|
Object.prototype.hasOwnProperty.call({{=$data}}, {{=$vSchema}}[{{=$i}}])
|
|
#}}
|
|
|
|
|
|
{{? !$isData }}
|
|
{{? $schema.length < it.opts.loopRequired &&
|
|
it.schema.properties && Object.keys(it.schema.properties).length }}
|
|
{{ var $required = []; }}
|
|
{{~ $schema:$property }}
|
|
{{ var $propertySch = it.schema.properties[$property]; }}
|
|
{{? !($propertySch && {{# def.nonEmptySchema:$propertySch}}) }}
|
|
{{ $required[$required.length] = $property; }}
|
|
{{?}}
|
|
{{~}}
|
|
{{??}}
|
|
{{ var $required = $schema; }}
|
|
{{?}}
|
|
{{?}}
|
|
|
|
|
|
{{? $isData || $required.length }}
|
|
{{
|
|
var $currentErrorPath = it.errorPath
|
|
, $loopRequired = $isData || $required.length >= it.opts.loopRequired
|
|
, $ownProperties = it.opts.ownProperties;
|
|
}}
|
|
|
|
{{? $breakOnError }}
|
|
var missing{{=$lvl}};
|
|
{{? $loopRequired }}
|
|
{{# def.setupLoop }}
|
|
var {{=$valid}} = true;
|
|
|
|
{{?$isData}}{{# def.check$dataIsArray }}{{?}}
|
|
|
|
for (var {{=$i}} = 0; {{=$i}} < {{=$vSchema}}.length; {{=$i}}++) {
|
|
{{=$valid}} = {{=$data}}[{{=$vSchema}}[{{=$i}}]] !== undefined
|
|
{{? $ownProperties }}
|
|
&& {{# def.isRequiredOwnProperty }}
|
|
{{?}};
|
|
if (!{{=$valid}}) break;
|
|
}
|
|
|
|
{{? $isData }} } {{?}}
|
|
|
|
{{# def.checkError:'required' }}
|
|
else {
|
|
{{??}}
|
|
if ({{# def.checkMissingProperty:$required }}) {
|
|
{{# def.errorMissingProperty:'required' }}
|
|
} else {
|
|
{{?}}
|
|
{{??}}
|
|
{{? $loopRequired }}
|
|
{{# def.setupLoop }}
|
|
{{? $isData }}
|
|
if ({{=$vSchema}} && !Array.isArray({{=$vSchema}})) {
|
|
{{# def.addError:'required' }}
|
|
} else if ({{=$vSchema}} !== undefined) {
|
|
{{?}}
|
|
|
|
for (var {{=$i}} = 0; {{=$i}} < {{=$vSchema}}.length; {{=$i}}++) {
|
|
if ({{=$data}}[{{=$vSchema}}[{{=$i}}]] === undefined
|
|
{{? $ownProperties }}
|
|
|| !{{# def.isRequiredOwnProperty }}
|
|
{{?}}) {
|
|
{{# def.addError:'required' }}
|
|
}
|
|
}
|
|
|
|
{{? $isData }} } {{?}}
|
|
{{??}}
|
|
{{~ $required:$propertyKey }}
|
|
{{# def.allErrorsMissingProperty:'required' }}
|
|
{{~}}
|
|
{{?}}
|
|
{{?}}
|
|
|
|
{{ it.errorPath = $currentErrorPath; }}
|
|
|
|
{{?? $breakOnError }}
|
|
if (true) {
|
|
{{?}}
|