-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'rc-1.5.0' into feature/49-adding-type-definitions-to-op…
…enapi-spec Signed-off-by: Thana Paris <83840862+thanaParis@users.noreply.github.com>
- Loading branch information
Showing
35 changed files
with
774 additions
and
61 deletions.
There are no files selected for viewing
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
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
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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Copyright (c) 2023 S44, LLC | ||
// Copyright Contributors to the CitrineOS Project | ||
// | ||
// SPDX-License-Identifier: Apache 2.0 | ||
|
||
import { QuerySchema } from '@citrineos/base'; | ||
|
||
export interface NetworkProfileQuerystring { | ||
stationId: string; | ||
} | ||
|
||
export const NetworkProfileQuerySchema = QuerySchema([['stationId', 'string']], ['stationId']); | ||
|
||
export interface NetworkProfileDeleteQuerystring { | ||
stationId: string; | ||
configurationSlot: number[]; | ||
} | ||
|
||
export const NetworkProfileDeleteQuerySchema = QuerySchema( | ||
[ | ||
['stationId', 'string'], | ||
['configurationSlot', 'number[]'] | ||
], | ||
['stationId', 'configurationSlot'] | ||
); |
Oops, something went wrong.