Skip to content
Merged
Changes from all commits
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
7 changes: 6 additions & 1 deletion deltachat-jsonrpc/typescript/scripts/generate-constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ const constants = data
key.startsWith("DC_DOWNLOAD") ||
key.startsWith("DC_INFO_") ||
(key.startsWith("DC_MSG") && !key.startsWith("DC_MSG_ID")) ||
key.startsWith("DC_QR_")
key.startsWith("DC_QR_") ||
key.startsWith("DC_CERTCK_") ||
key.startsWith("DC_SOCKET_") ||
key.startsWith("DC_LP_AUTH_") ||
Comment on lines +44 to +46
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess we could also mark them as deprecated first?
I think it is still possible to configure an account via set config and configure?

(will be replaced by add_transport eventually)

key.startsWith("DC_PUSH_") ||
key.startsWith("DC_TEXT1_")
);
})
.map((row) => {
Expand Down