1
0
mirror of synced 2025-12-25 02:17:36 -05:00

Pretty format (#20352)

* Update prettier flow to include JS

* Run prettier

* ...run prettier
This commit is contained in:
Kevin Heis
2021-07-14 14:35:01 -07:00
committed by GitHub
parent ae3db795f4
commit 8a56437c93
333 changed files with 6904 additions and 5350 deletions

View File

@@ -12,78 +12,79 @@ export default {
required: true,
description: 'the version string',
type: 'string',
pattern: versionPattern
pattern: versionPattern,
},
versionTitle: {
required: true,
description: 'the version title',
type: 'string'
type: 'string',
},
latestVersion: {
required: true,
description: 'the version name that includes the latest release',
type: 'string',
pattern: versionPattern
pattern: versionPattern,
},
currentRelease: {
required: true,
description: 'the release substring in the version string',
type: 'string',
pattern: releasePattern
pattern: releasePattern,
},
plan: {
description: 'the plan substring in the version string',
type: 'string',
pattern: planPattern
pattern: planPattern,
},
planTitle: {
required: true,
description: 'the plan title', // this is the same as the version title, sans numbered release
type: 'string'
type: 'string',
},
shortName: {
required: true,
description: 'the short name for the version to be used in Liquid conditionals',
type: 'string'
type: 'string',
},
releases: {
required: true,
description: 'an array of all supported releases for the version',
type: 'array'
type: 'array',
},
latestRelease: {
required: true,
description: 'the value of the latest release',
type: 'string',
pattern: releasePattern
pattern: releasePattern,
},
hasNumberedReleases: {
description: 'boolean indicating whether the plan has numbered releases; if not, the release defalts to "latest"',
type: 'boolean'
description:
'boolean indicating whether the plan has numbered releases; if not, the release defalts to "latest"',
type: 'boolean',
},
nonEnterpriseDefault: {
description: 'boolean indicating whether the plan is the default non-Enterprise version', // helper if the plan name changes
type: 'boolean'
type: 'boolean',
},
openApiBaseName: {
required: true,
description: 'base name used to map an openAPI schema name to the current version',
type: 'string'
type: 'string',
},
openApiVersionName: {
required: true,
description: 'final name used to map an openAPI schema name to the current version',
type: 'string'
type: 'string',
},
miscBaseName: {
required: true,
description: 'base name used to map GraphQL and webhook schema names to the current version',
type: 'string'
type: 'string',
},
miscVersionName: {
required: true,
description: 'final name used to map GraphQL and webhook schema names to the current version',
type: 'string'
}
}
type: 'string',
},
},
}