Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
55b9867
fix(cb2-10707): repair CT third mark validation (#145)
naathanbrown Apr 22, 2024
79ab735
feat(cb2-11360): create new automated cherished transfer lambda (#146)
naathanbrown May 8, 2024
ec4288a
CB2-12224: tech records failing to transform due to data seed error (…
Daniel-Searle May 22, 2024
a742a9e
CB2-11360: Create a new Lambda to process Cherished Transfers from DV…
Daniel-Searle May 28, 2024
64b4be7
CB2-12339: Additional LGV data (#149)
Daniel-Searle May 29, 2024
27ddf7b
feat(CB2-12437): changed motorcycle seed data to have 2 axles (#150)
Daniel-Searle Jun 3, 2024
8c83172
CB2-13468: review API spec (#152)
LGin-BJSS Sep 4, 2024
23a93c1
feat(CB2-13793): Add additional test data for QA team (#153)
Daniel-Searle Sep 12, 2024
1c744ef
feat(CB2-14065): Update VTM seed data system numbers to unique identi…
Daniel-Searle Sep 19, 2024
2363f80
feature(CB2-13670): Batch plate generation of plates (#159)
Daniel-Searle Sep 24, 2024
f8d99d0
feat(cb2-13886): repair uri decoding on archive endpoint (#160)
naathanbrown Sep 26, 2024
e73e8e0
feat(cb2-13786): update type package to latest version with adr body …
naathanbrown Oct 23, 2024
0d6535e
fix(cb2-13786): minor package bump (#163)
naathanbrown Oct 28, 2024
ec306fd
feat(cb2-14236): update batch plate failure in handler for sync test …
cb-cs Nov 1, 2024
ab62a34
feat(cb2-13894): update types package to allow month of manufacture o…
naathanbrown Nov 6, 2024
3270c52
feat(cb2-14875): add seed data with GUID plates (#164)
naathanbrown Nov 11, 2024
86871c7
feat(cb2-15031): update types defs to allow small trailer month (#167)
naathanbrown Nov 15, 2024
07567c7
changes made to batch plate gen (#168)
naathanbrown Nov 18, 2024
2f8bcac
feat(cb2-14934): create recalls brokering API (#169)
naathanbrown Nov 29, 2024
d172e2b
feat(CB2-15040): add new tyre use code options (#170)
m-mullen Dec 6, 2024
610f7a8
feat(cb2-15629): add path for ATI authentication (#172)
matthew2564 Jan 8, 2025
1ae922a
feat(cb2-16006): psv seed data added for smc (#174)
m-coslett Jan 17, 2025
cf58a65
feat(cb2-16076): update missing flag logic (#176)
cb-cs Feb 11, 2025
bd7d12e
feat(cb2-14340): bump types package for changes to vehicle type categ…
BrandonT95 Feb 21, 2025
2f7d341
fix(cb2-16022): Allow ADR Body Declaration to be saved as null when E…
pbardy2000 Feb 27, 2025
52bbe7a
feat(cb2-16746): new seed data for QA (#181)
m-coslett Mar 14, 2025
9d6e972
feat(cb2-16923): bumped types def for no of axles motorcycle change (…
cb-cs Apr 2, 2025
1c0f176
feat(cb2-17271): updated smc seed data (#184)
m-coslett Apr 17, 2025
bd8ba7b
feat(cb2-17549): added vtm requested seed data (#187)
cb-cs May 7, 2025
c5493af
feat(cb2-17576): added parameter to exclude archived tech records fro…
m-coslett Jun 4, 2025
969f306
feat(cb2-17585): update all services to latest Types definition packa…
NathanielRichards1 Jun 10, 2025
6d88656
feat(cb2-18163): add serverless.yaml for ops automation (#191)
Jun 17, 2025
e1fb6fe
feat(cb2-18669): new seed data for QA (#193)
m-coslett Jul 23, 2025
be1b76d
feat(CB2-18713): node 22 uprgade (#194)
matthew2564 Aug 5, 2025
846ddbf
feat(cb2-16881): bumped type-def to increase variant number (#196)
m-coslett Aug 19, 2025
eae0c67
feat(CB2-18969): reason for creation max length 100 (#197)
matthew2564 Sep 18, 2025
ae08f57
feat(cb2-19474): added logic for skip automated processes (#199)
cb-cs Oct 31, 2025
933e142
feat(cb2-20447): added new additional info logic (#204)
cb-cs Feb 17, 2026
2c08585
Revert "feat(cb2-20447): added new additional info logic" (#205)
cb-cs Feb 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"max-len":["error", {
"code": 150,
"ignoreComments": true
}]
}],
"@typescript-eslint/no-unsafe-enum-comparison": "off"
}
}
2 changes: 1 addition & 1 deletion .github/workflows/pr-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
pull-requests: write
runs-on: X64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CI

on:
on:
push:
branches:
- "develop"
Expand All @@ -18,11 +18,11 @@ jobs:
- '8000:8000'
options: --name local-dynamodb
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18.15.0'
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -110,5 +110,6 @@ dist
# Output files
.aws-sam/**
*Function.zip
local-*.zip

.idea/
3 changes: 1 addition & 2 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
18.*

22.14
Loading