Enforce node: schema for builtins, import extensions

This commit is contained in:
Fedor Indutny 2025-09-16 17:39:03 -07:00 committed by GitHub
commit c02565eaa8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2096 changed files with 14955 additions and 14023 deletions

View file

@ -1,18 +1,18 @@
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { MessageModel } from '../models/messages';
import type { MessageAttributesType } from '../model-types';
import type { AttachmentType } from '../types/Attachment';
import type { MessageModel } from '../models/messages.js';
import type { MessageAttributesType } from '../model-types.js';
import type { AttachmentType } from '../types/Attachment.js';
import { createLogger } from '../logging/log';
import * as MIME from '../types/MIME';
import { createLogger } from '../logging/log.js';
import * as MIME from '../types/MIME.js';
import { DataWriter } from '../sql/Client';
import { isMoreRecentThan } from './timestamp';
import { isNotNil } from './isNotNil';
import { queueAttachmentDownloads } from './queueAttachmentDownloads';
import { postSaveUpdates } from './cleanup';
import { DataWriter } from '../sql/Client.js';
import { isMoreRecentThan } from './timestamp.js';
import { isNotNil } from './isNotNil.js';
import { queueAttachmentDownloads } from './queueAttachmentDownloads.js';
import { postSaveUpdates } from './cleanup.js';
const log = createLogger('attachmentDownloadQueue');