@authhero/kysely-adapter 0.9.4 → 0.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3019,7 +3019,7 @@ export interface LoginsAdapter {
3019
3019
  remove: (tenant_id: string, login_id: string) => Promise<boolean>;
3020
3020
  }
3021
3021
  export interface PromptSettingsAdapter {
3022
- set: (tenant_id: string, promptSetting: PromptSetting) => Promise<void>;
3022
+ set: (tenant_id: string, promptSetting: Partial<PromptSetting>) => Promise<void>;
3023
3023
  get: (tenant_id: string) => Promise<PromptSetting>;
3024
3024
  }
3025
3025
  export interface DataAdapters {
@@ -3194,7 +3194,7 @@ export interface Database {
3194
3194
  passwords: Password & {
3195
3195
  tenant_id: string;
3196
3196
  };
3197
- promptSettings: PromptSetting & {
3197
+ prompt_settings: PromptSetting & {
3198
3198
  tenant_id: string;
3199
3199
  };
3200
3200
  users: SqlUser;