Skip to content

Commit

Permalink
SIMSBIOHUB-627: Deprecate BCTW Device Service (#1411)
Browse files Browse the repository at this point in the history
* feat: deprecated BctwDeviceService + endpoints
* feat: telemetry_device_makes added to codes service
  • Loading branch information
MacQSL authored Oct 25, 2024
1 parent 324cf0b commit 7bc4d06
Show file tree
Hide file tree
Showing 11 changed files with 66 additions and 1,429 deletions.
24 changes: 23 additions & 1 deletion api/src/paths/codes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ GET.apiDoc = {
'site_selection_strategies',
'survey_progress',
'method_response_metrics',
'attractants'
'attractants',
'telemetry_device_makes'
],
properties: {
management_action_type: {
Expand Down Expand Up @@ -382,6 +383,27 @@ GET.apiDoc = {
}
}
}
},
telemetry_device_makes: {
type: 'array',
description: 'Active telemetry device manufacturers / makes / vendors.',
items: {
type: 'object',
additionalProperties: false,
required: ['id', 'name', 'description'],
properties: {
id: {
type: 'integer',
minimum: 1
},
name: {
type: 'string'
},
description: {
type: 'string'
}
}
}
}
}
}
Expand Down
Loading

0 comments on commit 7bc4d06

Please sign in to comment.