@ronin/compiler 0.13.9 → 0.13.10-leo-ron-1099-experimental-304
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.ts +2 -1
- package/dist/index.js +1554 -1495
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -15,7 +15,7 @@ declare const QUERY_SYMBOLS: {
|
|
15
15
|
readonly FIELD_PARENT_NEW: "__RONIN_FIELD_PARENT_NEW_";
|
16
16
|
readonly VALUE: "__RONIN_VALUE";
|
17
17
|
};
|
18
|
-
type RoninErrorCode = 'MODEL_NOT_FOUND' | 'FIELD_NOT_FOUND' | 'INDEX_NOT_FOUND' | 'TRIGGER_NOT_FOUND' | 'PRESET_NOT_FOUND' | 'INVALID_WITH_VALUE' | 'INVALID_TO_VALUE' | 'INVALID_INCLUDING_VALUE' | 'INVALID_FOR_VALUE' | 'INVALID_BEFORE_OR_AFTER_INSTRUCTION' | 'INVALID_MODEL_VALUE' | 'MUTUALLY_EXCLUSIVE_INSTRUCTIONS' | 'MISSING_INSTRUCTION' | 'MISSING_FIELD';
|
18
|
+
type RoninErrorCode = 'MODEL_NOT_FOUND' | 'FIELD_NOT_FOUND' | 'INDEX_NOT_FOUND' | 'TRIGGER_NOT_FOUND' | 'PRESET_NOT_FOUND' | 'INVALID_WITH_VALUE' | 'INVALID_TO_VALUE' | 'INVALID_INCLUDING_VALUE' | 'INVALID_FOR_VALUE' | 'INVALID_BEFORE_OR_AFTER_INSTRUCTION' | 'INVALID_MODEL_VALUE' | 'EXISTING_MODEL_ENTITY' | 'REQUIRED_MODEL_ENTITY' | 'MUTUALLY_EXCLUSIVE_INSTRUCTIONS' | 'MISSING_INSTRUCTION' | 'MISSING_FIELD';
|
19
19
|
interface Issue {
|
20
20
|
message: string;
|
21
21
|
path: Array<string | number>;
|
@@ -288,6 +288,7 @@ type ModelPreset = {
|
|
288
288
|
instructions: GetInstructions;
|
289
289
|
};
|
290
290
|
interface Model<T extends Array<ModelField> = Array<ModelField>> {
|
291
|
+
id: string;
|
291
292
|
name: string;
|
292
293
|
pluralName: string;
|
293
294
|
slug: string;
|