-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.ts
More file actions
80 lines (70 loc) · 2.64 KB
/
Copy pathindex.ts
File metadata and controls
80 lines (70 loc) · 2.64 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.
/**
* System Protocol Exports
*
* Runtime Services & Infrastructure Configuration
* - Infrastructure: Cache, Queue, Storage, Search, HTTP
* - Observability: Audit, Logging, Metrics, Tracing, Change Management
* - Security: Compliance, Encryption, Masking, Auth Config
* - Services: Job, Worker, Notification, Translation
*/
// Infrastructure Services
export * from './cache.zod';
export * from './disaster-recovery.zod';
export * from './message-queue.zod';
export * from './object-storage.zod';
export * from './search-engine.zod';
export * from './http-server.zod';
// Observability & Operations
export * from './audit.zod';
export * from './logging.zod';
export * from './metrics.zod';
export * from './tracing.zod';
export * from './change-management.zod';
export * from './migration.zod';
// Security & Compliance
export * from './auth-config.zod';
export * from './doc.zod';
export * from './book.zod';
export * from './email-config.zod';
export * from './email-template.zod';
export * from './email-template.form';
export * from './metadata-form-registry';
// compliance.zod (GDPR/HIPAA/PCI configs) and masking.zod (role-based data
// masking) were REMOVED per ADR-0056 D8 "design+enforce or remove": both were
// declared-but-never-enforced (no runtime consumer), and compliance-grade
// configuration must never merely LOOK live. FLS (plugin-security) is the
// enforced field-visibility mechanism; a masking/deny layer arrives with
// ADR-0066 ⑦/⑧ if needed. encryption.zod stays (EXPERIMENTAL — roadmap).
export * from './encryption.zod';
export * from './security-context.zod';
export * from './incident-response.zod';
export * from './supplier-security.zod';
export * from './training.zod';
// Settings (ADR-0007: Manifest + K/V Store + Resolver)
export * from './settings-manifest.zod';
export * from './settings-client.zod';
// Runtime Services
export * from './job.zod';
export * from './worker.zod';
export * from './notification.zod';
export * from './translation.zod';
export * from './i18n-resolver';
export * from './translation-typegen';
export * from './translation-skeleton';
export * from './collaboration.zod';
export * from './metadata-persistence.zod';
export * from './core-services.zod';
// Multi-Tenant & Licensing
export * from './tenant.zod';
export * from './license.zod';
export * from './registry-config.zod';
// Provisioning & Deployment
export * from './provisioning.zod';
export * from './deploy-bundle.zod';
export * from './app-install.zod';
export * from './environment-artifact.zod';
// Constants
export * from './constants';
// Types
export * from './types';