Внёс изменения что бы постоянно не обновляло версию каждого JS файла и не создавало кучу шума

This commit is contained in:
AidarKC
2026-04-07 14:01:29 +03:00
parent 619d2145f9
commit e2a9caa07d
37 changed files with 129 additions and 109 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
import { WsJsonClient } from './ws-client.js?v=20260407105357';
import { WsJsonClient } from './ws-client.js';
import {
bytesToBase64,
deriveEd25519FromPassword,
@@ -11,13 +11,13 @@ import {
signBytes,
signBase64,
utf8Bytes,
} from './crypto-utils.js?v=20260407105357';
} from './crypto-utils.js';
import {
loadEncryptedUserSecrets,
loadSessionMaterial,
saveEncryptedUserSecrets,
saveSessionMaterial,
} from './key-vault.js?v=20260407105357';
} from './key-vault.js';
const BCH_SUFFIX = '001';
+1 -1
View File
@@ -1,7 +1,7 @@
import {
decryptJsonWithStoragePwd,
encryptJsonWithStoragePwd,
} from './crypto-utils.js?v=20260407105357';
} from './crypto-utils.js';
const DB_NAME = 'shine-ui-auth';
const DB_VERSION = 1;
+1 -1
View File
@@ -1,4 +1,4 @@
import { authService, state } from '../state.js?v=20260407105357';
import { authService, state } from '../state.js';
export const profileFieldDefs = [
{ key: 'first_name', readKeys: ['first_name'], label: 'Имя', placeholder: 'Введите имя' },
+1 -1
View File
@@ -1,4 +1,4 @@
import { captureClientError } from './client-error-reporter.js?v=20260407105357';
import { captureClientError } from './client-error-reporter.js';
const DEFAULT_TIMEOUT_MS = 12000;