
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@atb-as/config-specs
Advanced tools
Shared types and validation for configs
Collects documentation, JSON Specifications and types for configs. Ensures consistent types and mapping for all fare product configs across projects and organisations.
import {ZoneSelectionMode} from '@atb-as/config-specs';
const selectedZone: ZoneSelectionMode =
ZoneSelectionMode.parse('multiple-stop');
//> Throws error if not multiple-stop is valid.
const selectedZone2: ZoneSelectionMode =
ZoneSelectionMode.safeParse('multiple-stop');
//> selectedZone2.success = true | false
# yaml-language-server: $schema=https://raw.githubusercontent.com/AtB-AS/config-specs/refs/heads/main/schema-definitions/other.json
enableTokenToggleRestrictions: true
tokenToggleMaxLimit: 3
defaultTariffZone: NOR:TariffZone:8040
vatPercent: 12
Usage: npx @atb-as/config-specs -s [schema] -f [file]
Options:
--version Show version number [boolean]
-f, --file file to validate [required]
-s, --schema choose a schema
[required] [choices: "fareProductTypeConfigs", "other", "paymentTypes",
"travelSearchFilters", "url"]
-h, --help Show help [boolean]
Examples:
npx @atb-as/config-specs -s other -f other.json Validate other.json with position specification
npx @atb-as/config-specs -s other -f other.yaml Validate other.yaml with position specification
yarn add @atb-as/config-specs
Note contract/fixture tests in src/tests/contract-fixtures-tests. These tests should never fail unless it is very intentional. These are ment to ensure backwards compatibility with older apps.
If they fail you need to ensure that the change is intentional and that older apps refering to the data that is the cause of change is no longer in use.
Goal of this package is to ensure data quality and consistent data across remote configuration and usage over time for multiple consumers.
This package should collect specification and validation (incl. types) for data stored in Firestore. This should ensure easier consistent validation and data quality across Firestore, Webshop and App for all organisations involved.
After your changes are merged to the main branch (which should include changes
from yarn build
):
yarn version
(which creates a new commit with updated version number in
package.json and creates a version tag):git push origin yourfirstname/v-5-8-0
(replace with your
actual branch name).git push origin yourfirstname/v-5-8-0 --tags
(replace
with your actual branch name).npm whoami
.npm publish
to publish the package to npm.TODO: Packages should be automatically released when merging a PR created by
release-please-action
Github Action. Changelog and releases should
automatically be updated.
EUPL-1.2
FAQs
Shared types and validation for fare product type configs
The npm package @atb-as/config-specs receives a total of 94 weekly downloads. As such, @atb-as/config-specs popularity was classified as not popular.
We found that @atb-as/config-specs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.