Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IS-14 implementation #42

Open
wants to merge 55 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
61e7388
Refactor names which begin with Proto in favour of Protocol
cristian-recoseanu Feb 21, 2023
7729d90
Changes as per 21/02/2023 meeting
cristian-recoseanu Feb 22, 2023
c349020
Allow the mock device to be configured to work without a registry
cristian-recoseanu Feb 22, 2023
721ff46
Adding missing descriptors for Property Constraints types
cristian-recoseanu Feb 22, 2023
628e817
Initial approach at a REST config API on top of MS-05-02
cristian-recoseanu Feb 24, 2023
63ad9ff
Config API mock implementations
cristian-recoseanu Feb 27, 2023
d2b0b4d
Change to accept a single command and return the result
cristian-recoseanu Feb 27, 2023
c21aae7
Update DeviceModel
cristian-recoseanu Jun 1, 2023
888ed9d
Merge branch 'CR-Improvements' into CR-Config-API
cristian-recoseanu Jun 1, 2023
4610bcc
Minor corrections
cristian-recoseanu Jun 2, 2023
7476048
Merge branch 'main' into CR-Config-API
cristian-recoseanu Oct 23, 2023
3334de7
Fix some further merge problems
cristian-recoseanu Oct 23, 2023
b0fe162
Changes required to add support for BCP-008-01
cristian-recoseanu Jun 11, 2024
6a2788c
Updates to ReceiverMonitor
cristian-recoseanu Jul 2, 2024
0c4b41a
Update Features.ts
cristian-recoseanu Jul 2, 2024
dda066b
Update vulnerable packages
cristian-recoseanu Dec 13, 2024
387a1eb
Add BCP-008-01 appropriate entries
cristian-recoseanu Dec 16, 2024
33bcd97
Update ReceiverMonitor implementation as per latest BCP-008-01
cristian-recoseanu Dec 16, 2024
e6ea611
Use configured status reporting delay
cristian-recoseanu Dec 16, 2024
d48611c
Do not allow monitor to be disabled
cristian-recoseanu Dec 16, 2024
23260bf
Emulate connection issues as well
cristian-recoseanu Dec 16, 2024
2578f75
Add update datatypes
cristian-recoseanu Jan 2, 2025
372d562
Add methods for retrieving role path urls
cristian-recoseanu Jan 2, 2025
33da3eb
Add helper methods to create element ids from strings
cristian-recoseanu Jan 2, 2025
a5d66f0
Redirect to Get or Set from InvokeMethod where appropriate
cristian-recoseanu Jan 2, 2025
f0e8c17
Update control definition
cristian-recoseanu Jan 2, 2025
6a18e29
Update rest api implementation
cristian-recoseanu Jan 2, 2025
7484073
Cleanup
cristian-recoseanu Jan 3, 2025
cb177b4
Use the specific NcPropertyId type
cristian-recoseanu Jan 3, 2025
5ca68a6
Cleanup
cristian-recoseanu Jan 3, 2025
3862271
Move some class definitions and add new ones
cristian-recoseanu Jan 3, 2025
d0e20a0
Add Restore method
cristian-recoseanu Jan 3, 2025
dcfe27d
Add helper methods
cristian-recoseanu Jan 3, 2025
627ece8
Increate body limit in the web server
cristian-recoseanu Jan 3, 2025
4298ba4
Correctly parse the recurse query parameter
cristian-recoseanu Jan 3, 2025
7ceca95
Implement bulkProperties Patch and Put
cristian-recoseanu Jan 3, 2025
4bc7764
Preparations to implementing structural changes in blocks
cristian-recoseanu Jan 3, 2025
8bddac1
Store isRebuildable in each object
cristian-recoseanu Jan 3, 2025
789a3cf
Create exampleControls Block
cristian-recoseanu Jan 3, 2025
0502f07
Check isRebuildable when returning the notice
cristian-recoseanu Jan 7, 2025
28a5c78
Merge branch 'BCP-008' into CR-Config-API
cristian-recoseanu Jan 27, 2025
c22d366
Changes to support structural changes with default properties
cristian-recoseanu Jan 27, 2025
8553541
Fix NcCounter descriptor name
cristian-recoseanu Jan 28, 2025
3139534
Merge branch 'BCP-008' into CR-Config-API
cristian-recoseanu Jan 28, 2025
ff8901c
Draft support for structural changes in the ExampleControlsBlock
cristian-recoseanu Jan 28, 2025
b36b594
Add cors package
cristian-recoseanu Jan 29, 2025
e5b8c52
Fix descriptors and other test warnings/failures
cristian-recoseanu Jan 29, 2025
6883e27
Add dependencyPaths to NcObjectPropertiesHolder
cristian-recoseanu Jan 29, 2025
46915ab
Validate and return statuses and notices for structural changes even …
cristian-recoseanu Jan 29, 2025
e7997f7
Add autoResetSynchronizationSourceChanges
cristian-recoseanu Feb 3, 2025
29db311
Merge branch 'BCP-008' into CR-Config-API
cristian-recoseanu Feb 3, 2025
0602cbd
Add autoResetSynchronizationSourceChanges to GetAllProperties
cristian-recoseanu Feb 3, 2025
6f428d6
Update code/src/NCModel/Features.ts
cristian-recoseanu Feb 10, 2025
01b2cdf
Merge branch 'BCP-008' into CR-Config-API
cristian-recoseanu Feb 10, 2025
3a301f4
Merge branch 'main' into CR-Config-API
cristian-recoseanu Feb 10, 2025
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
35 changes: 35 additions & 0 deletions code/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"license": "ISC",
"dependencies": {
"axios": "^1.7.2",
"cors": "^2.8.5",
"express": "^4.19.2",
"json-ignore": "^0.4.0",
"sdp-transform": "^2.14.2",
Expand Down
Loading