-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.ts
More file actions
45 lines (44 loc) · 2.07 KB
/
Copy pathindex.ts
File metadata and controls
45 lines (44 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.
export { StorageServicePlugin } from './storage-service-plugin.js';
export type { StorageServicePluginOptions } from './storage-service-plugin.js';
export { SwappableStorageService } from './swappable-storage-service.js';
export { LocalStorageAdapter } from './local-storage-adapter.js';
export type { LocalStorageAdapterOptions } from './local-storage-adapter.js';
export { S3StorageAdapter } from './s3-storage-adapter.js';
export type { S3StorageAdapterOptions } from './s3-storage-adapter.js';
export { StorageMetadataStore } from './metadata-store.js';
export type { FileRecord, UploadSessionRecord } from './metadata-store.js';
export { registerStorageRoutes } from './storage-routes.js';
export type { StorageRoutesOptions, FileReadVerdict } from './storage-routes.js';
export { SystemFile, SystemUploadSession } from './objects/index.js';
export { installAttachmentLifecycleHooks, createSysFileReapGuard, createUploadSessionReapGuard } from './attachment-lifecycle.js';
export type { AttachmentLifecycleEngine, AttachmentLifecycleLogger } from './attachment-lifecycle.js';
export {
installFileReferenceHooks,
FileReferenceCopyError,
FileConstraintError,
} from './file-reference-lifecycle.js';
export type { FileReferenceEngine, FileReferenceLogger } from './file-reference-lifecycle.js';
export {
verifyFileReferences,
formatFileReferenceReport,
BLOCKING_ISSUE_KINDS,
} from './verify-file-references.js';
export type {
FileReferenceIssue,
FileReferenceIssueKind,
FileReferenceReport,
VerifyReferencesEngine,
VerifyReferencesOptions,
} from './verify-file-references.js';
export { backfillFileReferences, formatBackfillReport } from './backfill-file-references.js';
export type {
BackfillAction,
BackfillActionKind,
BackfillEngine,
BackfillLogger,
BackfillOptions,
BackfillReport,
} from './backfill-file-references.js';
export { installAttachmentAccessHooks, installAttachmentReadVisibility } from './attachment-access-hooks.js';
export type { AttachmentSharingLike } from './attachment-access-hooks.js';