mirror of
https://github.com/standardnotes/server
synced 2026-08-01 08:16:44 -04:00
* feat: refactor settings * fix verify mfa specs and data source metadata * fix: compound index field names * fix metadata binding for typeorm repository * fix responses to preserve e2e * fixes for e2e * fix recovery codes e2e * add missing specs
7 lines
163 B
TypeScript
7 lines
163 B
TypeScript
export interface SetSubscriptionSettingValueDTO {
|
|
settingName: string
|
|
userSubscriptionUuid: string
|
|
value: string | null
|
|
newUserSubscriptionUuid?: string
|
|
}
|