@famgia/omnify-types 0.0.127 → 0.0.128
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 +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -537,6 +537,13 @@ interface SchemaDefinition {
|
|
|
537
537
|
* Target schema properties take priority over partial properties.
|
|
538
538
|
*/
|
|
539
539
|
readonly target?: string;
|
|
540
|
+
/**
|
|
541
|
+
* Priority for partial schema merging (1-100).
|
|
542
|
+
* Only used when kind is 'partial'.
|
|
543
|
+
* Lower numbers are merged first (higher priority).
|
|
544
|
+
* Default is 50. Use 1-49 for high priority, 51-100 for low priority.
|
|
545
|
+
*/
|
|
546
|
+
readonly priority?: number;
|
|
540
547
|
/** Human-readable display name (supports multi-language) */
|
|
541
548
|
readonly displayName?: LocalizedString;
|
|
542
549
|
/** Property to use as the title/label for records */
|
package/dist/index.d.ts
CHANGED
|
@@ -537,6 +537,13 @@ interface SchemaDefinition {
|
|
|
537
537
|
* Target schema properties take priority over partial properties.
|
|
538
538
|
*/
|
|
539
539
|
readonly target?: string;
|
|
540
|
+
/**
|
|
541
|
+
* Priority for partial schema merging (1-100).
|
|
542
|
+
* Only used when kind is 'partial'.
|
|
543
|
+
* Lower numbers are merged first (higher priority).
|
|
544
|
+
* Default is 50. Use 1-49 for high priority, 51-100 for low priority.
|
|
545
|
+
*/
|
|
546
|
+
readonly priority?: number;
|
|
540
547
|
/** Human-readable display name (supports multi-language) */
|
|
541
548
|
readonly displayName?: LocalizedString;
|
|
542
549
|
/** Property to use as the title/label for records */
|