hvp-shared 9.5.0 → 10.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -50,8 +50,6 @@ export interface CreateDocumentRequest {
|
|
|
50
50
|
title: string;
|
|
51
51
|
/** Optional — auto-generated from title via slugify if omitted. */
|
|
52
52
|
slug?: string;
|
|
53
|
-
/** Optional human-readable code (e.g. "PROT-EGO-01"). */
|
|
54
|
-
code?: string;
|
|
55
53
|
purpose: Purpose;
|
|
56
54
|
type: DocumentType;
|
|
57
55
|
tags?: string[];
|
|
@@ -75,7 +73,6 @@ export interface CreateDocumentRequest {
|
|
|
75
73
|
export interface UpdateDocumentMetadataRequest {
|
|
76
74
|
title?: string;
|
|
77
75
|
slug?: string;
|
|
78
|
-
code?: string | null;
|
|
79
76
|
purpose?: Purpose;
|
|
80
77
|
type?: DocumentType;
|
|
81
78
|
tags?: string[];
|
|
@@ -28,7 +28,6 @@ export interface PublicDocumentResponse {
|
|
|
28
28
|
id: string;
|
|
29
29
|
slug: string;
|
|
30
30
|
title: string;
|
|
31
|
-
code: string | null;
|
|
32
31
|
purpose: Purpose;
|
|
33
32
|
type: DocumentType;
|
|
34
33
|
status: DocumentStatus;
|
|
@@ -74,7 +73,6 @@ export interface DocumentSummaryResponse {
|
|
|
74
73
|
id: string;
|
|
75
74
|
slug: string;
|
|
76
75
|
title: string;
|
|
77
|
-
code: string | null;
|
|
78
76
|
purpose: Purpose;
|
|
79
77
|
type: DocumentType;
|
|
80
78
|
status: DocumentStatus;
|