-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps-dev): bump prettier from 2.2.1 to 2.3.1 (#2075)
* chore(deps-dev): bump prettier from 2.2.1 to 2.3.1 Bumps [prettier](https://github.com/prettier/prettier) from 2.2.1 to 2.3.1. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](prettier/prettier@2.2.1...2.3.1) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * ref: run npm lint * ref: run npm run lint-html Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kar Rui Lau <[email protected]>
- Loading branch information
1 parent
f8f235a
commit 93b46a6
Showing
112 changed files
with
1,325 additions
and
1,382 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
import { FeatureNames, RegisterableFeature } from './types' | ||
|
||
const aggregateCollectionFeature: RegisterableFeature<FeatureNames.AggregateStats> = { | ||
name: FeatureNames.AggregateStats, | ||
schema: { | ||
aggregateCollection: { | ||
doc: | ||
'Has to be defined (i.e. =true) if FormStats collection is to be used', | ||
format: '*', | ||
default: null, | ||
env: 'AGGREGATE_COLLECTION', | ||
const aggregateCollectionFeature: RegisterableFeature<FeatureNames.AggregateStats> = | ||
{ | ||
name: FeatureNames.AggregateStats, | ||
schema: { | ||
aggregateCollection: { | ||
doc: 'Has to be defined (i.e. =true) if FormStats collection is to be used', | ||
format: '*', | ||
default: null, | ||
env: 'AGGREGATE_COLLECTION', | ||
}, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
export default aggregateCollectionFeature |
21 changes: 11 additions & 10 deletions
21
src/app/config/feature-manager/google-analytics.config.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
import { FeatureNames, RegisterableFeature } from './types' | ||
|
||
const googleAnalyticsFeature: RegisterableFeature<FeatureNames.GoogleAnalytics> = { | ||
name: FeatureNames.GoogleAnalytics, | ||
schema: { | ||
GATrackingID: { | ||
doc: 'Google Analytics tracking ID', | ||
format: String, | ||
default: null, | ||
env: 'GA_TRACKING_ID', | ||
const googleAnalyticsFeature: RegisterableFeature<FeatureNames.GoogleAnalytics> = | ||
{ | ||
name: FeatureNames.GoogleAnalytics, | ||
schema: { | ||
GATrackingID: { | ||
doc: 'Google Analytics tracking ID', | ||
format: String, | ||
default: null, | ||
env: 'GA_TRACKING_ID', | ||
}, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
export default googleAnalyticsFeature |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
import { FeatureNames, RegisterableFeature } from './types' | ||
|
||
const verifiedFieldsFeature: RegisterableFeature<FeatureNames.VerifiedFields> = { | ||
name: FeatureNames.VerifiedFields, | ||
schema: { | ||
verificationSecretKey: { | ||
doc: 'The secret key for signing verified responses (email, mobile)', | ||
format: String, | ||
default: null, | ||
env: 'VERIFICATION_SECRET_KEY', | ||
const verifiedFieldsFeature: RegisterableFeature<FeatureNames.VerifiedFields> = | ||
{ | ||
name: FeatureNames.VerifiedFields, | ||
schema: { | ||
verificationSecretKey: { | ||
doc: 'The secret key for signing verified responses (email, mobile)', | ||
format: String, | ||
default: null, | ||
env: 'VERIFICATION_SECRET_KEY', | ||
}, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
export default verifiedFieldsFeature |
22 changes: 11 additions & 11 deletions
22
src/app/config/feature-manager/webhook-verified-content.config.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
import { FeatureNames, RegisterableFeature } from './types' | ||
|
||
const webhookVerifiedContentFeature: RegisterableFeature<FeatureNames.WebhookVerifiedContent> = { | ||
name: FeatureNames.WebhookVerifiedContent, | ||
schema: { | ||
signingSecretKey: { | ||
doc: | ||
'The secret key for signing verified content passed into the database and for signing webhooks', | ||
format: String, | ||
default: null, | ||
env: 'SIGNING_SECRET_KEY', | ||
const webhookVerifiedContentFeature: RegisterableFeature<FeatureNames.WebhookVerifiedContent> = | ||
{ | ||
name: FeatureNames.WebhookVerifiedContent, | ||
schema: { | ||
signingSecretKey: { | ||
doc: 'The secret key for signing verified content passed into the database and for signing webhooks', | ||
format: String, | ||
default: null, | ||
env: 'SIGNING_SECRET_KEY', | ||
}, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
export default webhookVerifiedContentFeature |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.