@objectstack/metadata-core 11.1.0 → 11.2.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.
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -572,6 +572,7 @@ declare const SysMetadataObject: Omit<{
|
|
|
572
572
|
summary: string;
|
|
573
573
|
type?: string | undefined;
|
|
574
574
|
}[] | undefined;
|
|
575
|
+
nameField?: string | undefined;
|
|
575
576
|
displayNameField?: string | undefined;
|
|
576
577
|
recordName?: {
|
|
577
578
|
type: "text" | "autonumber";
|
|
@@ -5517,6 +5518,7 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
5517
5518
|
summary: string;
|
|
5518
5519
|
type?: string | undefined;
|
|
5519
5520
|
}[] | undefined;
|
|
5521
|
+
nameField?: string | undefined;
|
|
5520
5522
|
displayNameField?: string | undefined;
|
|
5521
5523
|
recordName?: {
|
|
5522
5524
|
type: "text" | "autonumber";
|
|
@@ -8807,6 +8809,7 @@ declare const SysMetadataCommitObject: Omit<{
|
|
|
8807
8809
|
summary: string;
|
|
8808
8810
|
type?: string | undefined;
|
|
8809
8811
|
}[] | undefined;
|
|
8812
|
+
nameField?: string | undefined;
|
|
8810
8813
|
displayNameField?: string | undefined;
|
|
8811
8814
|
recordName?: {
|
|
8812
8815
|
type: "text" | "autonumber";
|
|
@@ -11917,6 +11920,7 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
11917
11920
|
summary: string;
|
|
11918
11921
|
type?: string | undefined;
|
|
11919
11922
|
}[] | undefined;
|
|
11923
|
+
nameField?: string | undefined;
|
|
11920
11924
|
displayNameField?: string | undefined;
|
|
11921
11925
|
recordName?: {
|
|
11922
11926
|
type: "text" | "autonumber";
|
|
@@ -15208,6 +15212,7 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
15208
15212
|
summary: string;
|
|
15209
15213
|
type?: string | undefined;
|
|
15210
15214
|
}[] | undefined;
|
|
15215
|
+
nameField?: string | undefined;
|
|
15211
15216
|
displayNameField?: string | undefined;
|
|
15212
15217
|
recordName?: {
|
|
15213
15218
|
type: "text" | "autonumber";
|
package/dist/index.d.ts
CHANGED
|
@@ -572,6 +572,7 @@ declare const SysMetadataObject: Omit<{
|
|
|
572
572
|
summary: string;
|
|
573
573
|
type?: string | undefined;
|
|
574
574
|
}[] | undefined;
|
|
575
|
+
nameField?: string | undefined;
|
|
575
576
|
displayNameField?: string | undefined;
|
|
576
577
|
recordName?: {
|
|
577
578
|
type: "text" | "autonumber";
|
|
@@ -5517,6 +5518,7 @@ declare const SysMetadataHistoryObject: Omit<{
|
|
|
5517
5518
|
summary: string;
|
|
5518
5519
|
type?: string | undefined;
|
|
5519
5520
|
}[] | undefined;
|
|
5521
|
+
nameField?: string | undefined;
|
|
5520
5522
|
displayNameField?: string | undefined;
|
|
5521
5523
|
recordName?: {
|
|
5522
5524
|
type: "text" | "autonumber";
|
|
@@ -8807,6 +8809,7 @@ declare const SysMetadataCommitObject: Omit<{
|
|
|
8807
8809
|
summary: string;
|
|
8808
8810
|
type?: string | undefined;
|
|
8809
8811
|
}[] | undefined;
|
|
8812
|
+
nameField?: string | undefined;
|
|
8810
8813
|
displayNameField?: string | undefined;
|
|
8811
8814
|
recordName?: {
|
|
8812
8815
|
type: "text" | "autonumber";
|
|
@@ -11917,6 +11920,7 @@ declare const SysMetadataAuditObject: Omit<{
|
|
|
11917
11920
|
summary: string;
|
|
11918
11921
|
type?: string | undefined;
|
|
11919
11922
|
}[] | undefined;
|
|
11923
|
+
nameField?: string | undefined;
|
|
11920
11924
|
displayNameField?: string | undefined;
|
|
11921
11925
|
recordName?: {
|
|
11922
11926
|
type: "text" | "autonumber";
|
|
@@ -15208,6 +15212,7 @@ declare const SysViewDefinitionObject: Omit<{
|
|
|
15208
15212
|
summary: string;
|
|
15209
15213
|
type?: string | undefined;
|
|
15210
15214
|
}[] | undefined;
|
|
15215
|
+
nameField?: string | undefined;
|
|
15211
15216
|
displayNameField?: string | undefined;
|
|
15212
15217
|
recordName?: {
|
|
15213
15218
|
type: "text" | "autonumber";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/metadata-core",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.2.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Metadata Repository contracts: types, canonicalization, errors, interface (ADR-0008).",
|
|
6
6
|
"type": "module",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"zod": "^4.4.3",
|
|
33
|
-
"@objectstack/spec": "11.
|
|
33
|
+
"@objectstack/spec": "11.2.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"vitest": "^4.0.0"
|