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

W3C compliance - Use forms instead of links in Properties, Actions, and Events #2811

Merged
merged 3 commits into from
Oct 13, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
22,340 changes: 22,296 additions & 44 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"express-rate-limit": "^5.2.6",
"express-ws": "^4.0.0",
"find": "^0.3.0",
"gateway-addon": "^1.0.1-alpha.1",
"gateway-addon": "^2.0.0-alpha.1",
"glob-to-regexp": "^0.4.1",
"http-proxy": "^1.18.1",
"ip-regex": "^4.3.0",
Expand Down
6 changes: 6 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ export enum LogSeverity {
PROMPT = 4,
}

export enum WoTOperation {
READ_ALL_PROPERTIES = 'readallproperties',
SUBSCRIBE_ALL_EVENTS = 'subscribeallevents',
UNSUBSCRIBE_ALL_EVENTS = 'unsubscribeallevents',
QUERY_ALL_ACTIONS = 'queryallactions',
}
export interface LogMessage {
severity: LogSeverity;
message: string;
Expand Down
Loading