-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdocument.zod.ts
More file actions
423 lines (377 loc) · 12.5 KB
/
Copy pathdocument.zod.ts
File metadata and controls
423 lines (377 loc) · 12.5 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.
import { z } from 'zod';
import { retiredKey } from '../shared/retired-key';
/**
* Document Version Schema
*
* Represents a single version of a document in a version-controlled system.
* Each version is immutable and maintains its own metadata and download URL.
*
* @example
* ```json
* {
* "versionNumber": 2,
* "createdAt": 1704067200000,
* "createdBy": "user_123",
* "size": 2048576,
* "checksum": "a1b2c3d4e5f6",
* "downloadUrl": "https://storage.example.com/docs/v2/file.pdf",
* "isLatest": true
* }
* ```
*/
import { lazySchema } from '../shared/lazy-schema';
export const DocumentVersionSchema = lazySchema(() => z.object({
/**
* Sequential version number (increments with each new version)
*/
versionNumber: z.number().describe('Version number'),
/**
* Timestamp when this version was created (Unix milliseconds)
*/
createdAt: z.number().describe('Creation timestamp'),
/**
* User ID who created this version
*/
createdBy: z.string().describe('Creator user ID'),
/**
* File size in bytes
*/
size: z.number().describe('File size in bytes'),
/**
* Checksum/hash of the file content (for integrity verification)
*/
checksum: z.string().describe('File checksum'),
/**
* URL to download this specific version
*/
downloadUrl: z.string().url().describe('Download URL'),
/**
* Whether this is the latest version
* @default false
*/
isLatest: z.boolean().optional().default(false).describe('Is latest version'),
}));
/**
* Document Template Schema
*
* Defines a reusable document template with dynamic placeholders.
* Templates can be used to generate documents with variable content.
*
* @example
* ```json
* {
* "id": "contract-template",
* "name": "Service Agreement",
* "description": "Standard service agreement template",
* "fileUrl": "https://example.com/templates/contract.docx",
* "fileType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
* "placeholders": [
* {
* "key": "client_name",
* "label": "Client Name",
* "type": "text",
* "required": true
* },
* {
* "key": "contract_date",
* "label": "Contract Date",
* "type": "date",
* "required": true
* }
* ]
* }
* ```
*/
export const DocumentTemplateSchema = lazySchema(() => z.object({
/**
* Unique identifier for the template
*/
id: z.string().describe('Template ID'),
/**
* Human-readable name of the template
*/
name: z.string().describe('Template name'),
/**
* Optional description of the template's purpose
*/
description: z.string().optional().describe('Template description'),
/**
* URL to the template file
*/
fileUrl: z.string().url().describe('Template file URL'),
/**
* MIME type of the template file
*/
fileType: z.string().describe('File MIME type'),
/**
* List of dynamic placeholders in the template
*/
placeholders: z.array(z.object({
/**
* Placeholder identifier (used in template)
*/
key: z.string().describe('Placeholder key'),
/**
* Human-readable label for the placeholder
*/
label: z.string().describe('Placeholder label'),
/**
* Data type of the placeholder value
*/
type: z.enum(['text', 'number', 'date', 'image']).describe('Placeholder type'),
/**
* Whether this placeholder must be filled
* @default false
*/
required: z.boolean().optional().default(false).describe('Is required'),
})).describe('Template placeholders'),
}));
// ─── RETIRED deadline keys (ADR-0049 enforce-or-remove) ─────────────────────
//
// Two day-shaped keys were declared on `ESignatureConfigSchema` and read by
// NOTHING: no e-signature engine exists on the platform — no layer ever sent,
// expired or reminded a signature request — and the reader census over every
// package outside `packages/spec` (tests and changelogs excluded), over
// `examples/**` and `skills/**`, and over objectui at the pinned sha returned
// zero hits for `expirationDays`, `reminderDays`, `eSignature` and the
// `ESignatureConfig` names, with a lit control inside this package. An author
// could write `expirationDays: 30` and the platform would never act on it; the
// generated reference docs advertised an expiry nothing kept. The 2026-09-02
// ruling on #14477 held the pair on one condition (a roadmapped consumer ⇒
// `[EXPERIMENTAL — not enforced]`); the maintainer answered it on 2026-09-05
// (no roadmap), so the ruling's own branch resolves to retirement.
//
// Route: `retiredKey()` tombstones, NOT plain deletion — the schema is not
// `.strict()`, so a bare deletion would make zod strip the key in silence,
// replacing an inert declaration with an invisible one (ADR-0104). The
// tombstone is audible in both channels: `tsc` (the input type is `never`)
// and the parse (the prescription is the message). No D2 conversion and no
// `os migrate meta` sentence: `DocumentSchema` is not a stack collection
// member and `document` is no metadata type, so a conversion would be a
// transform with no seam that ever runs (the
// `kernel/MetadataPluginConfig:additionalTypes` precedent). The retirement is
// registered as `RETIRED_KEYS_BY_MAJOR[18]` entries plus the D3 semantic entry
// `esignature-config-deadline-keys-retired`. `provider` / `enabled` / `signers`
// stay, byte-identical.
const EXPIRATION_DAYS_RETIRED =
'`ESignatureConfig.expirationDays` was removed in @objectstack/spec 17 (ADR-0049 '
+ 'enforce-or-remove) — nothing ever read it: no e-signature engine exists on the platform, '
+ 'so no signature request was ever sent, expired or lapsed, and its default of 30 days was '
+ 'materialized into every parsed configuration without ever being consulted. Delete the '
+ 'key. There is no replacement, because no e-signature provider integration exists to keep '
+ 'an expiry window.';
const REMINDER_DAYS_RETIRED =
'`ESignatureConfig.reminderDays` was removed in @objectstack/spec 17 (ADR-0049 '
+ 'enforce-or-remove) — nothing ever read it: no e-signature engine exists on the platform, '
+ 'so no reminder email was ever sent, and its default of 7 days was materialized into '
+ 'every parsed configuration without ever being consulted. Delete the key. There is no '
+ 'replacement, because no e-signature provider integration exists to send reminders.';
/**
* E-Signature Configuration Schema
*
* Configuration for electronic signature workflows.
* Supports integration with popular e-signature providers.
*
* @example
* ```json
* {
* "provider": "docusign",
* "enabled": true,
* "signers": [
* {
* "email": "client@example.com",
* "name": "John Doe",
* "role": "Client",
* "order": 1
* },
* {
* "email": "manager@example.com",
* "name": "Jane Smith",
* "role": "Manager",
* "order": 2
* }
* ]
* }
* ```
*/
export const ESignatureConfigSchema = lazySchema(() => z.object({
/**
* E-signature service provider
*/
provider: z.enum(['docusign', 'adobe-sign', 'hellosign', 'custom']).describe('E-signature provider'),
/**
* Whether e-signature is enabled for this document
* @default false
*/
enabled: z.boolean().optional().default(false).describe('E-signature enabled'),
/**
* List of signers in signing order
*/
signers: z.array(z.object({
/**
* Signer's email address
*/
email: z.string().email().describe('Signer email'),
/**
* Signer's full name
*/
name: z.string().describe('Signer name'),
/**
* Signer's role in the document
*/
role: z.string().describe('Signer role'),
/**
* Signing order (lower numbers sign first)
*/
order: z.number().describe('Signing order'),
})).describe('Document signers'),
/**
* REMOVED (ADR-0049): `expirationDays` — see the RETIRED section above.
* Authoring it is a `tsc` error and a parse error carrying the prescription.
*/
expirationDays: retiredKey(EXPIRATION_DAYS_RETIRED),
/**
* REMOVED (ADR-0049): `reminderDays` — see the RETIRED section above.
* Authoring it is a `tsc` error and a parse error carrying the prescription.
*/
reminderDays: retiredKey(REMINDER_DAYS_RETIRED),
}));
/**
* Document Schema
*
* Comprehensive document management protocol supporting versioning,
* templates, e-signatures, and access control.
*
* @example
* ```json
* {
* "id": "doc_123",
* "name": "Service Agreement 2024",
* "description": "Annual service agreement",
* "fileType": "application/pdf",
* "fileSize": 1048576,
* "category": "contracts",
* "tags": ["legal", "2024", "services"],
* "versioning": {
* "enabled": true,
* "versions": [
* {
* "versionNumber": 1,
* "createdAt": 1704067200000,
* "createdBy": "user_123",
* "size": 1048576,
* "checksum": "abc123",
* "downloadUrl": "https://example.com/docs/v1.pdf",
* "isLatest": true
* }
* ],
* "majorVersion": 1,
* "minorVersion": 0
* },
* "access": {
* "isPublic": false,
* "sharedWith": ["user_456", "team_789"],
* "expiresAt": 1735689600000
* },
* "metadata": {
* "author": "John Doe",
* "department": "Legal"
* }
* }
* ```
*/
export const DocumentSchema = lazySchema(() => z.object({
/**
* Unique document identifier
*/
id: z.string().describe('Document ID'),
/**
* Document name
*/
name: z.string().describe('Document name'),
/**
* Optional document description
*/
description: z.string().optional().describe('Document description'),
/**
* MIME type of the document
*/
fileType: z.string().describe('File MIME type'),
/**
* File size in bytes
*/
fileSize: z.number().describe('File size in bytes'),
/**
* Document category for organization
*/
category: z.string().optional().describe('Document category'),
/**
* Tags for searchability and organization
*/
tags: z.array(z.string()).optional().describe('Document tags'),
/**
* Version control configuration
*/
versioning: z.object({
/**
* Whether versioning is enabled
*/
enabled: z.boolean().describe('Versioning enabled'),
/**
* List of all document versions
*/
versions: z.array(DocumentVersionSchema).describe('Version history'),
/**
* Current major version number
*/
majorVersion: z.number().describe('Major version'),
/**
* Current minor version number
*/
minorVersion: z.number().describe('Minor version'),
}).optional().describe('Version control'),
/**
* Template configuration (if document is generated from template)
*/
template: DocumentTemplateSchema.optional().describe('Document template'),
/**
* E-signature configuration
*/
eSignature: ESignatureConfigSchema.optional().describe('E-signature config'),
/**
* Access control settings
*/
access: z.object({
/**
* Whether document is publicly accessible
* @default false
*/
isPublic: z.boolean().optional().default(false).describe('Public access'),
/**
* List of user/team IDs with access
*/
sharedWith: z.array(z.string()).optional().describe('Shared with'),
/**
* Timestamp when access expires (Unix milliseconds)
*/
expiresAt: z.number().optional().describe('Access expiration'),
}).optional().describe('Access control'),
/**
* Custom metadata fields
*/
metadata: z.record(z.string(), z.unknown()).optional().describe('Custom metadata'),
}));
// Type exports
export type Document = z.input<typeof DocumentSchema>;
/** Post-parse shape of {@link Document} — defaults applied, transforms run (ADR-0122). */
export type DocumentParsed = z.infer<typeof DocumentSchema>;
export type DocumentVersion = z.input<typeof DocumentVersionSchema>;
/** Post-parse shape of {@link DocumentVersion} — defaults applied, transforms run (ADR-0122). */
export type DocumentVersionParsed = z.infer<typeof DocumentVersionSchema>;
export type DocumentTemplate = z.input<typeof DocumentTemplateSchema>;
/** Post-parse shape of {@link DocumentTemplate} — defaults applied, transforms run (ADR-0122). */
export type DocumentTemplateParsed = z.infer<typeof DocumentTemplateSchema>;
export type ESignatureConfig = z.input<typeof ESignatureConfigSchema>;
/** Post-parse shape of {@link ESignatureConfig} — defaults applied, transforms run (ADR-0122). */
export type ESignatureConfigParsed = z.infer<typeof ESignatureConfigSchema>;