@almadar/core 4.4.1 → 4.5.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/builders.d.ts +2 -2
- package/dist/builders.js +58 -15
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-Da0YDcli.d.ts → compose-behaviors-BtjmpmIC.d.ts} +1 -1
- package/dist/domain-language/index.d.ts +1 -1
- package/dist/domain-language/index.js +58 -15
- package/dist/domain-language/index.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +58 -15
- package/dist/index.js.map +1 -1
- package/dist/{schema-B0Yin-RM.d.ts → schema-D4VBpRZI.d.ts} +97 -46
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.js +58 -15
- package/dist/types/index.js.map +1 -1
- package/package.json +6 -6
|
@@ -324,12 +324,12 @@ interface EntityField {
|
|
|
324
324
|
/** Relation configuration (required when type is 'relation') */
|
|
325
325
|
relation?: RelationConfig;
|
|
326
326
|
}
|
|
327
|
-
declare const EntityFieldSchema: z.ZodType<EntityField>;
|
|
327
|
+
declare const EntityFieldSchema: z.ZodType<EntityField, z.ZodTypeDef, unknown>;
|
|
328
328
|
type EntityFieldInput = z.input<typeof EntityFieldSchema>;
|
|
329
329
|
/** Alias for EntityField - preferred name */
|
|
330
330
|
type Field = EntityField;
|
|
331
331
|
/** Alias for EntityFieldSchema - preferred name */
|
|
332
|
-
declare const FieldSchema: z.ZodType<EntityField, z.ZodTypeDef,
|
|
332
|
+
declare const FieldSchema: z.ZodType<EntityField, z.ZodTypeDef, unknown>;
|
|
333
333
|
|
|
334
334
|
/**
|
|
335
335
|
* Asset Types for Semantic Asset References
|
|
@@ -739,7 +739,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
|
|
|
739
739
|
name: z.ZodString;
|
|
740
740
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
|
|
741
741
|
collection: z.ZodOptional<z.ZodString>;
|
|
742
|
-
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef,
|
|
742
|
+
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
743
743
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
744
744
|
timestamps: z.ZodOptional<z.ZodBoolean>;
|
|
745
745
|
softDelete: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -783,7 +783,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
|
|
|
783
783
|
} | undefined;
|
|
784
784
|
}, {
|
|
785
785
|
name: string;
|
|
786
|
-
fields:
|
|
786
|
+
fields: unknown[];
|
|
787
787
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
788
788
|
collection?: string | undefined;
|
|
789
789
|
instances?: Record<string, unknown>[] | undefined;
|
|
@@ -807,7 +807,7 @@ declare const EntitySchema: z.ZodObject<{
|
|
|
807
807
|
name: z.ZodString;
|
|
808
808
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
|
|
809
809
|
collection: z.ZodOptional<z.ZodString>;
|
|
810
|
-
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef,
|
|
810
|
+
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
811
811
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
812
812
|
timestamps: z.ZodOptional<z.ZodBoolean>;
|
|
813
813
|
softDelete: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -851,7 +851,7 @@ declare const EntitySchema: z.ZodObject<{
|
|
|
851
851
|
} | undefined;
|
|
852
852
|
}, {
|
|
853
853
|
name: string;
|
|
854
|
-
fields:
|
|
854
|
+
fields: unknown[];
|
|
855
855
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
856
856
|
collection?: string | undefined;
|
|
857
857
|
instances?: Record<string, unknown>[] | undefined;
|
|
@@ -3144,6 +3144,14 @@ declare const RequiredFieldSchema: z.ZodObject<{
|
|
|
3144
3144
|
*/
|
|
3145
3145
|
interface TraitReference {
|
|
3146
3146
|
ref: string;
|
|
3147
|
+
/**
|
|
3148
|
+
* Phase 1.2: optional registry path disambiguator. Pairs with `ref` to
|
|
3149
|
+
* explicitly name which `uses` entry the alias was imported from
|
|
3150
|
+
* (e.g. "std/behaviors/atoms/std-browse"). Helpful for programmatic
|
|
3151
|
+
* descriptor construction and inline-phase disambiguation when multiple
|
|
3152
|
+
* registries expose the same alias prefix.
|
|
3153
|
+
*/
|
|
3154
|
+
from?: string;
|
|
3147
3155
|
linkedEntity?: string;
|
|
3148
3156
|
/** Phase F: rename the inlined trait at the call site */
|
|
3149
3157
|
name?: string;
|
|
@@ -3195,6 +3203,7 @@ interface TraitReference {
|
|
|
3195
3203
|
}
|
|
3196
3204
|
declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
3197
3205
|
ref: z.ZodString;
|
|
3206
|
+
from: z.ZodOptional<z.ZodString>;
|
|
3198
3207
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
3199
3208
|
name: z.ZodOptional<z.ZodString>;
|
|
3200
3209
|
events: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -3209,6 +3218,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3209
3218
|
linkedEntity?: string | undefined;
|
|
3210
3219
|
config?: Record<string, Record<string, unknown>> | undefined;
|
|
3211
3220
|
events?: Record<string, string> | undefined;
|
|
3221
|
+
from?: string | undefined;
|
|
3212
3222
|
effects?: Record<string, unknown[]> | undefined;
|
|
3213
3223
|
appliesTo?: string[] | undefined;
|
|
3214
3224
|
listens?: unknown[] | undefined;
|
|
@@ -3219,6 +3229,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3219
3229
|
linkedEntity?: string | undefined;
|
|
3220
3230
|
config?: Record<string, Record<string, unknown>> | undefined;
|
|
3221
3231
|
events?: Record<string, string> | undefined;
|
|
3232
|
+
from?: string | undefined;
|
|
3222
3233
|
effects?: Record<string, unknown[]> | undefined;
|
|
3223
3234
|
appliesTo?: string[] | undefined;
|
|
3224
3235
|
listens?: unknown[] | undefined;
|
|
@@ -3229,6 +3240,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3229
3240
|
linkedEntity?: string | undefined;
|
|
3230
3241
|
config?: Record<string, Record<string, unknown>> | undefined;
|
|
3231
3242
|
events?: Record<string, string> | undefined;
|
|
3243
|
+
from?: string | undefined;
|
|
3232
3244
|
effects?: Record<string, unknown[]> | undefined;
|
|
3233
3245
|
appliesTo?: string[] | undefined;
|
|
3234
3246
|
listens?: unknown[] | undefined;
|
|
@@ -3239,6 +3251,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3239
3251
|
linkedEntity?: string | undefined;
|
|
3240
3252
|
config?: Record<string, Record<string, unknown>> | undefined;
|
|
3241
3253
|
events?: Record<string, string> | undefined;
|
|
3254
|
+
from?: string | undefined;
|
|
3242
3255
|
effects?: Record<string, unknown[]> | undefined;
|
|
3243
3256
|
appliesTo?: string[] | undefined;
|
|
3244
3257
|
listens?: unknown[] | undefined;
|
|
@@ -5898,7 +5911,7 @@ declare const EntityRefStringSchema: z.ZodString;
|
|
|
5898
5911
|
declare const EntityCallSchema: z.ZodEffects<z.ZodObject<{
|
|
5899
5912
|
extends: z.ZodString;
|
|
5900
5913
|
name: z.ZodOptional<z.ZodString>;
|
|
5901
|
-
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef,
|
|
5914
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
5902
5915
|
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
|
|
5903
5916
|
collection: z.ZodOptional<z.ZodString>;
|
|
5904
5917
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5912,7 +5925,7 @@ declare const EntityCallSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5912
5925
|
name?: string | undefined;
|
|
5913
5926
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
5914
5927
|
collection?: string | undefined;
|
|
5915
|
-
fields?:
|
|
5928
|
+
fields?: unknown[] | undefined;
|
|
5916
5929
|
}>, {
|
|
5917
5930
|
extends: string;
|
|
5918
5931
|
name?: string | undefined;
|
|
@@ -5924,13 +5937,13 @@ declare const EntityCallSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5924
5937
|
name?: string | undefined;
|
|
5925
5938
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
5926
5939
|
collection?: string | undefined;
|
|
5927
|
-
fields?:
|
|
5940
|
+
fields?: unknown[] | undefined;
|
|
5928
5941
|
}>;
|
|
5929
5942
|
declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
5930
5943
|
name: z.ZodString;
|
|
5931
5944
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
|
|
5932
5945
|
collection: z.ZodOptional<z.ZodString>;
|
|
5933
|
-
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef,
|
|
5946
|
+
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
5934
5947
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
5935
5948
|
timestamps: z.ZodOptional<z.ZodBoolean>;
|
|
5936
5949
|
softDelete: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5974,7 +5987,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5974
5987
|
} | undefined;
|
|
5975
5988
|
}, {
|
|
5976
5989
|
name: string;
|
|
5977
|
-
fields:
|
|
5990
|
+
fields: unknown[];
|
|
5978
5991
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
5979
5992
|
collection?: string | undefined;
|
|
5980
5993
|
instances?: Record<string, unknown>[] | undefined;
|
|
@@ -5992,7 +6005,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5992
6005
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
5993
6006
|
extends: z.ZodString;
|
|
5994
6007
|
name: z.ZodOptional<z.ZodString>;
|
|
5995
|
-
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef,
|
|
6008
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
5996
6009
|
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
|
|
5997
6010
|
collection: z.ZodOptional<z.ZodString>;
|
|
5998
6011
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6006,7 +6019,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6006
6019
|
name?: string | undefined;
|
|
6007
6020
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
6008
6021
|
collection?: string | undefined;
|
|
6009
|
-
fields?:
|
|
6022
|
+
fields?: unknown[] | undefined;
|
|
6010
6023
|
}>, {
|
|
6011
6024
|
extends: string;
|
|
6012
6025
|
name?: string | undefined;
|
|
@@ -6018,7 +6031,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6018
6031
|
name?: string | undefined;
|
|
6019
6032
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
6020
6033
|
collection?: string | undefined;
|
|
6021
|
-
fields?:
|
|
6034
|
+
fields?: unknown[] | undefined;
|
|
6022
6035
|
}>]>;
|
|
6023
6036
|
/**
|
|
6024
6037
|
* PageRefObject - Reference to imported page with optional override arguments.
|
|
@@ -6032,6 +6045,14 @@ interface PageRefObject {
|
|
|
6032
6045
|
* Reference to imported page: "Alias.pages.PageName"
|
|
6033
6046
|
*/
|
|
6034
6047
|
ref: string;
|
|
6048
|
+
/**
|
|
6049
|
+
* Phase 1.2: optional registry path disambiguator. Pairs with `ref` to
|
|
6050
|
+
* explicitly name which `uses` entry the alias was imported from
|
|
6051
|
+
* (e.g. "std/behaviors/atoms/std-browse"). Helpful for programmatic
|
|
6052
|
+
* descriptor construction and inline-phase disambiguation when multiple
|
|
6053
|
+
* registries expose the same alias prefix.
|
|
6054
|
+
*/
|
|
6055
|
+
from?: string;
|
|
6035
6056
|
/**
|
|
6036
6057
|
* Optional path override.
|
|
6037
6058
|
* If provided, overrides the original page's path.
|
|
@@ -6128,6 +6149,7 @@ declare function isPageReference(page: PageRef): page is string | PageRefObject;
|
|
|
6128
6149
|
declare const PageRefStringSchema: z.ZodString;
|
|
6129
6150
|
declare const PageRefObjectSchema: z.ZodObject<{
|
|
6130
6151
|
ref: z.ZodString;
|
|
6152
|
+
from: z.ZodOptional<z.ZodString>;
|
|
6131
6153
|
path: z.ZodOptional<z.ZodString>;
|
|
6132
6154
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
6133
6155
|
traits: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
@@ -6794,6 +6816,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6794
6816
|
config?: Record<string, unknown> | undefined;
|
|
6795
6817
|
events?: Record<string, string> | undefined;
|
|
6796
6818
|
})[] | undefined;
|
|
6819
|
+
from?: string | undefined;
|
|
6797
6820
|
}, {
|
|
6798
6821
|
ref: string;
|
|
6799
6822
|
path?: string | undefined;
|
|
@@ -6900,6 +6923,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6900
6923
|
config?: Record<string, unknown> | undefined;
|
|
6901
6924
|
events?: Record<string, string> | undefined;
|
|
6902
6925
|
})[] | undefined;
|
|
6926
|
+
from?: string | undefined;
|
|
6903
6927
|
}>;
|
|
6904
6928
|
declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
6905
6929
|
name: z.ZodString;
|
|
@@ -6947,6 +6971,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6947
6971
|
isInitial?: boolean | undefined;
|
|
6948
6972
|
}>, z.ZodString, z.ZodObject<{
|
|
6949
6973
|
ref: z.ZodString;
|
|
6974
|
+
from: z.ZodOptional<z.ZodString>;
|
|
6950
6975
|
path: z.ZodOptional<z.ZodString>;
|
|
6951
6976
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
6952
6977
|
traits: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
@@ -7613,6 +7638,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7613
7638
|
config?: Record<string, unknown> | undefined;
|
|
7614
7639
|
events?: Record<string, string> | undefined;
|
|
7615
7640
|
})[] | undefined;
|
|
7641
|
+
from?: string | undefined;
|
|
7616
7642
|
}, {
|
|
7617
7643
|
ref: string;
|
|
7618
7644
|
path?: string | undefined;
|
|
@@ -7719,6 +7745,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7719
7745
|
config?: Record<string, unknown> | undefined;
|
|
7720
7746
|
events?: Record<string, string> | undefined;
|
|
7721
7747
|
})[] | undefined;
|
|
7748
|
+
from?: string | undefined;
|
|
7722
7749
|
}>]>;
|
|
7723
7750
|
/**
|
|
7724
7751
|
* Checks if a trait reference is an imported reference.
|
|
@@ -8338,7 +8365,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
8338
8365
|
name: z.ZodString;
|
|
8339
8366
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
|
|
8340
8367
|
collection: z.ZodOptional<z.ZodString>;
|
|
8341
|
-
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef,
|
|
8368
|
+
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
8342
8369
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
8343
8370
|
timestamps: z.ZodOptional<z.ZodBoolean>;
|
|
8344
8371
|
softDelete: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8382,7 +8409,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
8382
8409
|
} | undefined;
|
|
8383
8410
|
}, {
|
|
8384
8411
|
name: string;
|
|
8385
|
-
fields:
|
|
8412
|
+
fields: unknown[];
|
|
8386
8413
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
8387
8414
|
collection?: string | undefined;
|
|
8388
8415
|
instances?: Record<string, unknown>[] | undefined;
|
|
@@ -8400,7 +8427,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
8400
8427
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
8401
8428
|
extends: z.ZodString;
|
|
8402
8429
|
name: z.ZodOptional<z.ZodString>;
|
|
8403
|
-
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef,
|
|
8430
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
8404
8431
|
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
|
|
8405
8432
|
collection: z.ZodOptional<z.ZodString>;
|
|
8406
8433
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8414,7 +8441,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
8414
8441
|
name?: string | undefined;
|
|
8415
8442
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
8416
8443
|
collection?: string | undefined;
|
|
8417
|
-
fields?:
|
|
8444
|
+
fields?: unknown[] | undefined;
|
|
8418
8445
|
}>, {
|
|
8419
8446
|
extends: string;
|
|
8420
8447
|
name?: string | undefined;
|
|
@@ -8426,7 +8453,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
8426
8453
|
name?: string | undefined;
|
|
8427
8454
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
8428
8455
|
collection?: string | undefined;
|
|
8429
|
-
fields?:
|
|
8456
|
+
fields?: unknown[] | undefined;
|
|
8430
8457
|
}>]>;
|
|
8431
8458
|
traits: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
8432
8459
|
ref: z.ZodString;
|
|
@@ -9032,6 +9059,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9032
9059
|
isInitial?: boolean | undefined;
|
|
9033
9060
|
}>, z.ZodString, z.ZodObject<{
|
|
9034
9061
|
ref: z.ZodString;
|
|
9062
|
+
from: z.ZodOptional<z.ZodString>;
|
|
9035
9063
|
path: z.ZodOptional<z.ZodString>;
|
|
9036
9064
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
9037
9065
|
traits: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
@@ -9698,6 +9726,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9698
9726
|
config?: Record<string, unknown> | undefined;
|
|
9699
9727
|
events?: Record<string, string> | undefined;
|
|
9700
9728
|
})[] | undefined;
|
|
9729
|
+
from?: string | undefined;
|
|
9701
9730
|
}, {
|
|
9702
9731
|
ref: string;
|
|
9703
9732
|
path?: string | undefined;
|
|
@@ -9804,6 +9833,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9804
9833
|
config?: Record<string, unknown> | undefined;
|
|
9805
9834
|
events?: Record<string, string> | undefined;
|
|
9806
9835
|
})[] | undefined;
|
|
9836
|
+
from?: string | undefined;
|
|
9807
9837
|
}>]>, "many">;
|
|
9808
9838
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9809
9839
|
event: z.ZodString;
|
|
@@ -10292,6 +10322,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10292
10322
|
config?: Record<string, unknown> | undefined;
|
|
10293
10323
|
events?: Record<string, string> | undefined;
|
|
10294
10324
|
})[] | undefined;
|
|
10325
|
+
from?: string | undefined;
|
|
10295
10326
|
})[];
|
|
10296
10327
|
description?: string | undefined;
|
|
10297
10328
|
visual_prompt?: string | undefined;
|
|
@@ -10424,7 +10455,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10424
10455
|
}, {
|
|
10425
10456
|
entity: string | {
|
|
10426
10457
|
name: string;
|
|
10427
|
-
fields:
|
|
10458
|
+
fields: unknown[];
|
|
10428
10459
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
10429
10460
|
collection?: string | undefined;
|
|
10430
10461
|
instances?: Record<string, unknown>[] | undefined;
|
|
@@ -10444,7 +10475,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10444
10475
|
name?: string | undefined;
|
|
10445
10476
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
10446
10477
|
collection?: string | undefined;
|
|
10447
|
-
fields?:
|
|
10478
|
+
fields?: unknown[] | undefined;
|
|
10448
10479
|
};
|
|
10449
10480
|
name: string;
|
|
10450
10481
|
traits: (string | {
|
|
@@ -10667,6 +10698,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10667
10698
|
config?: Record<string, unknown> | undefined;
|
|
10668
10699
|
events?: Record<string, string> | undefined;
|
|
10669
10700
|
})[] | undefined;
|
|
10701
|
+
from?: string | undefined;
|
|
10670
10702
|
})[];
|
|
10671
10703
|
description?: string | undefined;
|
|
10672
10704
|
visual_prompt?: string | undefined;
|
|
@@ -11036,7 +11068,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11036
11068
|
name: z.ZodString;
|
|
11037
11069
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
|
|
11038
11070
|
collection: z.ZodOptional<z.ZodString>;
|
|
11039
|
-
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef,
|
|
11071
|
+
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
11040
11072
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
11041
11073
|
timestamps: z.ZodOptional<z.ZodBoolean>;
|
|
11042
11074
|
softDelete: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11080,7 +11112,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11080
11112
|
} | undefined;
|
|
11081
11113
|
}, {
|
|
11082
11114
|
name: string;
|
|
11083
|
-
fields:
|
|
11115
|
+
fields: unknown[];
|
|
11084
11116
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
11085
11117
|
collection?: string | undefined;
|
|
11086
11118
|
instances?: Record<string, unknown>[] | undefined;
|
|
@@ -11098,7 +11130,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11098
11130
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
11099
11131
|
extends: z.ZodString;
|
|
11100
11132
|
name: z.ZodOptional<z.ZodString>;
|
|
11101
|
-
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef,
|
|
11133
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
11102
11134
|
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
|
|
11103
11135
|
collection: z.ZodOptional<z.ZodString>;
|
|
11104
11136
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11112,7 +11144,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11112
11144
|
name?: string | undefined;
|
|
11113
11145
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
11114
11146
|
collection?: string | undefined;
|
|
11115
|
-
fields?:
|
|
11147
|
+
fields?: unknown[] | undefined;
|
|
11116
11148
|
}>, {
|
|
11117
11149
|
extends: string;
|
|
11118
11150
|
name?: string | undefined;
|
|
@@ -11124,7 +11156,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11124
11156
|
name?: string | undefined;
|
|
11125
11157
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
11126
11158
|
collection?: string | undefined;
|
|
11127
|
-
fields?:
|
|
11159
|
+
fields?: unknown[] | undefined;
|
|
11128
11160
|
}>]>;
|
|
11129
11161
|
traits: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
11130
11162
|
ref: z.ZodString;
|
|
@@ -11730,6 +11762,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11730
11762
|
isInitial?: boolean | undefined;
|
|
11731
11763
|
}>, z.ZodString, z.ZodObject<{
|
|
11732
11764
|
ref: z.ZodString;
|
|
11765
|
+
from: z.ZodOptional<z.ZodString>;
|
|
11733
11766
|
path: z.ZodOptional<z.ZodString>;
|
|
11734
11767
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
11735
11768
|
traits: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
@@ -12396,6 +12429,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12396
12429
|
config?: Record<string, unknown> | undefined;
|
|
12397
12430
|
events?: Record<string, string> | undefined;
|
|
12398
12431
|
})[] | undefined;
|
|
12432
|
+
from?: string | undefined;
|
|
12399
12433
|
}, {
|
|
12400
12434
|
ref: string;
|
|
12401
12435
|
path?: string | undefined;
|
|
@@ -12502,6 +12536,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12502
12536
|
config?: Record<string, unknown> | undefined;
|
|
12503
12537
|
events?: Record<string, string> | undefined;
|
|
12504
12538
|
})[] | undefined;
|
|
12539
|
+
from?: string | undefined;
|
|
12505
12540
|
}>]>, "many">;
|
|
12506
12541
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12507
12542
|
event: z.ZodString;
|
|
@@ -12990,6 +13025,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12990
13025
|
config?: Record<string, unknown> | undefined;
|
|
12991
13026
|
events?: Record<string, string> | undefined;
|
|
12992
13027
|
})[] | undefined;
|
|
13028
|
+
from?: string | undefined;
|
|
12993
13029
|
})[];
|
|
12994
13030
|
description?: string | undefined;
|
|
12995
13031
|
visual_prompt?: string | undefined;
|
|
@@ -13122,7 +13158,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13122
13158
|
}, {
|
|
13123
13159
|
entity: string | {
|
|
13124
13160
|
name: string;
|
|
13125
|
-
fields:
|
|
13161
|
+
fields: unknown[];
|
|
13126
13162
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
13127
13163
|
collection?: string | undefined;
|
|
13128
13164
|
instances?: Record<string, unknown>[] | undefined;
|
|
@@ -13142,7 +13178,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13142
13178
|
name?: string | undefined;
|
|
13143
13179
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
13144
13180
|
collection?: string | undefined;
|
|
13145
|
-
fields?:
|
|
13181
|
+
fields?: unknown[] | undefined;
|
|
13146
13182
|
};
|
|
13147
13183
|
name: string;
|
|
13148
13184
|
traits: (string | {
|
|
@@ -13365,6 +13401,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13365
13401
|
config?: Record<string, unknown> | undefined;
|
|
13366
13402
|
events?: Record<string, string> | undefined;
|
|
13367
13403
|
})[] | undefined;
|
|
13404
|
+
from?: string | undefined;
|
|
13368
13405
|
})[];
|
|
13369
13406
|
description?: string | undefined;
|
|
13370
13407
|
visual_prompt?: string | undefined;
|
|
@@ -13741,7 +13778,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
13741
13778
|
name: z.ZodString;
|
|
13742
13779
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
|
|
13743
13780
|
collection: z.ZodOptional<z.ZodString>;
|
|
13744
|
-
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef,
|
|
13781
|
+
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
13745
13782
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
13746
13783
|
timestamps: z.ZodOptional<z.ZodBoolean>;
|
|
13747
13784
|
softDelete: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13785,7 +13822,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
13785
13822
|
} | undefined;
|
|
13786
13823
|
}, {
|
|
13787
13824
|
name: string;
|
|
13788
|
-
fields:
|
|
13825
|
+
fields: unknown[];
|
|
13789
13826
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
13790
13827
|
collection?: string | undefined;
|
|
13791
13828
|
instances?: Record<string, unknown>[] | undefined;
|
|
@@ -13803,7 +13840,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
13803
13840
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
13804
13841
|
extends: z.ZodString;
|
|
13805
13842
|
name: z.ZodOptional<z.ZodString>;
|
|
13806
|
-
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef,
|
|
13843
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
13807
13844
|
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
|
|
13808
13845
|
collection: z.ZodOptional<z.ZodString>;
|
|
13809
13846
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13817,7 +13854,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
13817
13854
|
name?: string | undefined;
|
|
13818
13855
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
13819
13856
|
collection?: string | undefined;
|
|
13820
|
-
fields?:
|
|
13857
|
+
fields?: unknown[] | undefined;
|
|
13821
13858
|
}>, {
|
|
13822
13859
|
extends: string;
|
|
13823
13860
|
name?: string | undefined;
|
|
@@ -13829,7 +13866,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
13829
13866
|
name?: string | undefined;
|
|
13830
13867
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
13831
13868
|
collection?: string | undefined;
|
|
13832
|
-
fields?:
|
|
13869
|
+
fields?: unknown[] | undefined;
|
|
13833
13870
|
}>]>;
|
|
13834
13871
|
traits: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
13835
13872
|
ref: z.ZodString;
|
|
@@ -14435,6 +14472,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14435
14472
|
isInitial?: boolean | undefined;
|
|
14436
14473
|
}>, z.ZodString, z.ZodObject<{
|
|
14437
14474
|
ref: z.ZodString;
|
|
14475
|
+
from: z.ZodOptional<z.ZodString>;
|
|
14438
14476
|
path: z.ZodOptional<z.ZodString>;
|
|
14439
14477
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
14440
14478
|
traits: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
@@ -15101,6 +15139,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15101
15139
|
config?: Record<string, unknown> | undefined;
|
|
15102
15140
|
events?: Record<string, string> | undefined;
|
|
15103
15141
|
})[] | undefined;
|
|
15142
|
+
from?: string | undefined;
|
|
15104
15143
|
}, {
|
|
15105
15144
|
ref: string;
|
|
15106
15145
|
path?: string | undefined;
|
|
@@ -15207,6 +15246,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15207
15246
|
config?: Record<string, unknown> | undefined;
|
|
15208
15247
|
events?: Record<string, string> | undefined;
|
|
15209
15248
|
})[] | undefined;
|
|
15249
|
+
from?: string | undefined;
|
|
15210
15250
|
}>]>, "many">;
|
|
15211
15251
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15212
15252
|
event: z.ZodString;
|
|
@@ -15695,6 +15735,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15695
15735
|
config?: Record<string, unknown> | undefined;
|
|
15696
15736
|
events?: Record<string, string> | undefined;
|
|
15697
15737
|
})[] | undefined;
|
|
15738
|
+
from?: string | undefined;
|
|
15698
15739
|
})[];
|
|
15699
15740
|
description?: string | undefined;
|
|
15700
15741
|
visual_prompt?: string | undefined;
|
|
@@ -15827,7 +15868,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15827
15868
|
}, {
|
|
15828
15869
|
entity: string | {
|
|
15829
15870
|
name: string;
|
|
15830
|
-
fields:
|
|
15871
|
+
fields: unknown[];
|
|
15831
15872
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
15832
15873
|
collection?: string | undefined;
|
|
15833
15874
|
instances?: Record<string, unknown>[] | undefined;
|
|
@@ -15847,7 +15888,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15847
15888
|
name?: string | undefined;
|
|
15848
15889
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
15849
15890
|
collection?: string | undefined;
|
|
15850
|
-
fields?:
|
|
15891
|
+
fields?: unknown[] | undefined;
|
|
15851
15892
|
};
|
|
15852
15893
|
name: string;
|
|
15853
15894
|
traits: (string | {
|
|
@@ -16070,6 +16111,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16070
16111
|
config?: Record<string, unknown> | undefined;
|
|
16071
16112
|
events?: Record<string, string> | undefined;
|
|
16072
16113
|
})[] | undefined;
|
|
16114
|
+
from?: string | undefined;
|
|
16073
16115
|
})[];
|
|
16074
16116
|
description?: string | undefined;
|
|
16075
16117
|
visual_prompt?: string | undefined;
|
|
@@ -16687,7 +16729,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
16687
16729
|
name: z.ZodString;
|
|
16688
16730
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
|
|
16689
16731
|
collection: z.ZodOptional<z.ZodString>;
|
|
16690
|
-
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef,
|
|
16732
|
+
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
16691
16733
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
16692
16734
|
timestamps: z.ZodOptional<z.ZodBoolean>;
|
|
16693
16735
|
softDelete: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16731,7 +16773,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
16731
16773
|
} | undefined;
|
|
16732
16774
|
}, {
|
|
16733
16775
|
name: string;
|
|
16734
|
-
fields:
|
|
16776
|
+
fields: unknown[];
|
|
16735
16777
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
16736
16778
|
collection?: string | undefined;
|
|
16737
16779
|
instances?: Record<string, unknown>[] | undefined;
|
|
@@ -16749,7 +16791,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
16749
16791
|
}>, z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
16750
16792
|
extends: z.ZodString;
|
|
16751
16793
|
name: z.ZodOptional<z.ZodString>;
|
|
16752
|
-
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef,
|
|
16794
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
16753
16795
|
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
|
|
16754
16796
|
collection: z.ZodOptional<z.ZodString>;
|
|
16755
16797
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16763,7 +16805,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
16763
16805
|
name?: string | undefined;
|
|
16764
16806
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
16765
16807
|
collection?: string | undefined;
|
|
16766
|
-
fields?:
|
|
16808
|
+
fields?: unknown[] | undefined;
|
|
16767
16809
|
}>, {
|
|
16768
16810
|
extends: string;
|
|
16769
16811
|
name?: string | undefined;
|
|
@@ -16775,7 +16817,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
16775
16817
|
name?: string | undefined;
|
|
16776
16818
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
16777
16819
|
collection?: string | undefined;
|
|
16778
|
-
fields?:
|
|
16820
|
+
fields?: unknown[] | undefined;
|
|
16779
16821
|
}>]>;
|
|
16780
16822
|
traits: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
16781
16823
|
ref: z.ZodString;
|
|
@@ -17381,6 +17423,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17381
17423
|
isInitial?: boolean | undefined;
|
|
17382
17424
|
}>, z.ZodString, z.ZodObject<{
|
|
17383
17425
|
ref: z.ZodString;
|
|
17426
|
+
from: z.ZodOptional<z.ZodString>;
|
|
17384
17427
|
path: z.ZodOptional<z.ZodString>;
|
|
17385
17428
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
17386
17429
|
traits: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
@@ -18047,6 +18090,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18047
18090
|
config?: Record<string, unknown> | undefined;
|
|
18048
18091
|
events?: Record<string, string> | undefined;
|
|
18049
18092
|
})[] | undefined;
|
|
18093
|
+
from?: string | undefined;
|
|
18050
18094
|
}, {
|
|
18051
18095
|
ref: string;
|
|
18052
18096
|
path?: string | undefined;
|
|
@@ -18153,6 +18197,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18153
18197
|
config?: Record<string, unknown> | undefined;
|
|
18154
18198
|
events?: Record<string, string> | undefined;
|
|
18155
18199
|
})[] | undefined;
|
|
18200
|
+
from?: string | undefined;
|
|
18156
18201
|
}>]>, "many">;
|
|
18157
18202
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18158
18203
|
event: z.ZodString;
|
|
@@ -18641,6 +18686,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18641
18686
|
config?: Record<string, unknown> | undefined;
|
|
18642
18687
|
events?: Record<string, string> | undefined;
|
|
18643
18688
|
})[] | undefined;
|
|
18689
|
+
from?: string | undefined;
|
|
18644
18690
|
})[];
|
|
18645
18691
|
description?: string | undefined;
|
|
18646
18692
|
visual_prompt?: string | undefined;
|
|
@@ -18773,7 +18819,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18773
18819
|
}, {
|
|
18774
18820
|
entity: string | {
|
|
18775
18821
|
name: string;
|
|
18776
|
-
fields:
|
|
18822
|
+
fields: unknown[];
|
|
18777
18823
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
18778
18824
|
collection?: string | undefined;
|
|
18779
18825
|
instances?: Record<string, unknown>[] | undefined;
|
|
@@ -18793,7 +18839,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18793
18839
|
name?: string | undefined;
|
|
18794
18840
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
18795
18841
|
collection?: string | undefined;
|
|
18796
|
-
fields?:
|
|
18842
|
+
fields?: unknown[] | undefined;
|
|
18797
18843
|
};
|
|
18798
18844
|
name: string;
|
|
18799
18845
|
traits: (string | {
|
|
@@ -19016,6 +19062,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19016
19062
|
config?: Record<string, unknown> | undefined;
|
|
19017
19063
|
events?: Record<string, string> | undefined;
|
|
19018
19064
|
})[] | undefined;
|
|
19065
|
+
from?: string | undefined;
|
|
19019
19066
|
})[];
|
|
19020
19067
|
description?: string | undefined;
|
|
19021
19068
|
visual_prompt?: string | undefined;
|
|
@@ -19569,6 +19616,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19569
19616
|
config?: Record<string, unknown> | undefined;
|
|
19570
19617
|
events?: Record<string, string> | undefined;
|
|
19571
19618
|
})[] | undefined;
|
|
19619
|
+
from?: string | undefined;
|
|
19572
19620
|
})[];
|
|
19573
19621
|
description?: string | undefined;
|
|
19574
19622
|
visual_prompt?: string | undefined;
|
|
@@ -19790,7 +19838,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19790
19838
|
orbitals: {
|
|
19791
19839
|
entity: string | {
|
|
19792
19840
|
name: string;
|
|
19793
|
-
fields:
|
|
19841
|
+
fields: unknown[];
|
|
19794
19842
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
19795
19843
|
collection?: string | undefined;
|
|
19796
19844
|
instances?: Record<string, unknown>[] | undefined;
|
|
@@ -19810,7 +19858,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19810
19858
|
name?: string | undefined;
|
|
19811
19859
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
19812
19860
|
collection?: string | undefined;
|
|
19813
|
-
fields?:
|
|
19861
|
+
fields?: unknown[] | undefined;
|
|
19814
19862
|
};
|
|
19815
19863
|
name: string;
|
|
19816
19864
|
traits: (string | {
|
|
@@ -20033,6 +20081,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20033
20081
|
config?: Record<string, unknown> | undefined;
|
|
20034
20082
|
events?: Record<string, string> | undefined;
|
|
20035
20083
|
})[] | undefined;
|
|
20084
|
+
from?: string | undefined;
|
|
20036
20085
|
})[];
|
|
20037
20086
|
description?: string | undefined;
|
|
20038
20087
|
visual_prompt?: string | undefined;
|
|
@@ -20301,7 +20350,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
20301
20350
|
orbitals: {
|
|
20302
20351
|
entity: string | {
|
|
20303
20352
|
name: string;
|
|
20304
|
-
fields:
|
|
20353
|
+
fields: unknown[];
|
|
20305
20354
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
20306
20355
|
collection?: string | undefined;
|
|
20307
20356
|
instances?: Record<string, unknown>[] | undefined;
|
|
@@ -20321,7 +20370,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
20321
20370
|
name?: string | undefined;
|
|
20322
20371
|
persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
|
|
20323
20372
|
collection?: string | undefined;
|
|
20324
|
-
fields?:
|
|
20373
|
+
fields?: unknown[] | undefined;
|
|
20325
20374
|
};
|
|
20326
20375
|
name: string;
|
|
20327
20376
|
traits: (string | {
|
|
@@ -20544,6 +20593,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
20544
20593
|
config?: Record<string, unknown> | undefined;
|
|
20545
20594
|
events?: Record<string, string> | undefined;
|
|
20546
20595
|
})[] | undefined;
|
|
20596
|
+
from?: string | undefined;
|
|
20547
20597
|
})[];
|
|
20548
20598
|
description?: string | undefined;
|
|
20549
20599
|
visual_prompt?: string | undefined;
|
|
@@ -21008,6 +21058,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
21008
21058
|
config?: Record<string, unknown> | undefined;
|
|
21009
21059
|
events?: Record<string, string> | undefined;
|
|
21010
21060
|
})[] | undefined;
|
|
21061
|
+
from?: string | undefined;
|
|
21011
21062
|
})[];
|
|
21012
21063
|
description?: string | undefined;
|
|
21013
21064
|
visual_prompt?: string | undefined;
|