@almadar/std 6.1.7 → 6.3.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/behaviors/registry/atoms/std-browse.orb +15 -0
- package/behaviors/registry/atoms/std-display.orb +181 -0
- package/behaviors/registry/atoms/std-gallery.orb +12 -0
- package/behaviors/registry/atoms/std-input.orb +270 -0
- package/dist/behaviors/exports-reader.js +276 -138
- package/dist/behaviors/exports-reader.js.map +1 -1
- package/dist/behaviors/functions/index.d.ts +415 -1
- package/dist/behaviors/functions/index.js +276 -138
- package/dist/behaviors/functions/index.js.map +1 -1
- package/dist/behaviors/index.js +276 -138
- package/dist/behaviors/index.js.map +1 -1
- package/dist/behaviors/query.js +276 -138
- package/dist/behaviors/query.js.map +1 -1
- package/dist/behaviors/registry/atoms/std-browse.orb +15 -0
- package/dist/behaviors/registry/atoms/std-display.orb +181 -0
- package/dist/behaviors/registry/atoms/std-gallery.orb +12 -0
- package/dist/behaviors/registry/atoms/std-input.orb +270 -0
- package/dist/index.js +276 -138
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/behaviors/registry/atoms/std-classifier.orb.unconvertible.txt +0 -7
- package/behaviors/registry/atoms/std-graph-classifier.orb.unconvertible.txt +0 -7
- package/behaviors/registry/atoms/std-rl-agent.orb.unconvertible.txt +0 -7
- package/behaviors/registry/atoms/std-text-classifier.orb.unconvertible.txt +0 -7
- package/behaviors/registry/atoms/std-trainer.orb.unconvertible.txt +0 -7
- package/dist/behaviors/registry/atoms/std-classifier.orb.unconvertible.txt +0 -7
- package/dist/behaviors/registry/atoms/std-graph-classifier.orb.unconvertible.txt +0 -7
- package/dist/behaviors/registry/atoms/std-rl-agent.orb.unconvertible.txt +0 -7
- package/dist/behaviors/registry/atoms/std-text-classifier.orb.unconvertible.txt +0 -7
- package/dist/behaviors/registry/atoms/std-trainer.orb.unconvertible.txt +0 -7
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EntityField, OrbitalDefinition, PageRefObject, TraitReference } from '@almadar/core/types';
|
|
1
|
+
import { EntityField, EntityPersistence, OrbitalDefinition, PageRefObject, TraitReference } from '@almadar/core/types';
|
|
2
2
|
export { compose, connect, ensureIdField, extractTrait, makeEntity, makeOrbital, makePage, makeSchema, mergeOrbitals, pipe, plural, wire } from '@almadar/core/builders';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -30,6 +30,9 @@ interface StdAgentActivityLogParams {
|
|
|
30
30
|
entityName: string;
|
|
31
31
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
32
32
|
fields?: EntityField[];
|
|
33
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
34
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
35
|
+
persistence?: EntityPersistence;
|
|
33
36
|
/** Rename the inlined trait at the call site. */
|
|
34
37
|
traitName?: string;
|
|
35
38
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -81,6 +84,9 @@ interface StdAgentChatThreadParams {
|
|
|
81
84
|
entityName: string;
|
|
82
85
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
83
86
|
fields?: EntityField[];
|
|
87
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
88
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
89
|
+
persistence?: EntityPersistence;
|
|
84
90
|
/** Rename the inlined trait at the call site. */
|
|
85
91
|
traitName?: string;
|
|
86
92
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -132,6 +138,9 @@ interface StdAgentClassifierParams {
|
|
|
132
138
|
entityName: string;
|
|
133
139
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
134
140
|
fields?: EntityField[];
|
|
141
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
142
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
143
|
+
persistence?: EntityPersistence;
|
|
135
144
|
/** Rename the inlined trait at the call site. */
|
|
136
145
|
traitName?: string;
|
|
137
146
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -187,6 +196,9 @@ interface StdAgentCompletionParams {
|
|
|
187
196
|
entityName: string;
|
|
188
197
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
189
198
|
fields?: EntityField[];
|
|
199
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
200
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
201
|
+
persistence?: EntityPersistence;
|
|
190
202
|
/** Rename the inlined trait at the call site. */
|
|
191
203
|
traitName?: string;
|
|
192
204
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -242,6 +254,9 @@ interface StdAgentContextWindowParams {
|
|
|
242
254
|
entityName: string;
|
|
243
255
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
244
256
|
fields?: EntityField[];
|
|
257
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
258
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
259
|
+
persistence?: EntityPersistence;
|
|
245
260
|
/** Rename the inlined trait at the call site. */
|
|
246
261
|
traitName?: string;
|
|
247
262
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -297,6 +312,9 @@ interface StdAgentConversationParams {
|
|
|
297
312
|
entityName: string;
|
|
298
313
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
299
314
|
fields?: EntityField[];
|
|
315
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
316
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
317
|
+
persistence?: EntityPersistence;
|
|
300
318
|
/** Rename the inlined trait at the call site. */
|
|
301
319
|
traitName?: string;
|
|
302
320
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -350,6 +368,9 @@ interface StdAgentMemoryParams {
|
|
|
350
368
|
entityName: string;
|
|
351
369
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
352
370
|
fields?: EntityField[];
|
|
371
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
372
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
373
|
+
persistence?: EntityPersistence;
|
|
353
374
|
/** Rename the inlined trait at the call site. */
|
|
354
375
|
traitName?: string;
|
|
355
376
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -405,6 +426,9 @@ interface StdAgentProviderParams {
|
|
|
405
426
|
entityName: string;
|
|
406
427
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
407
428
|
fields?: EntityField[];
|
|
429
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
430
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
431
|
+
persistence?: EntityPersistence;
|
|
408
432
|
/** Rename the inlined trait at the call site. */
|
|
409
433
|
traitName?: string;
|
|
410
434
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -460,6 +484,9 @@ interface StdAgentSearchParams {
|
|
|
460
484
|
entityName: string;
|
|
461
485
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
462
486
|
fields?: EntityField[];
|
|
487
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
488
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
489
|
+
persistence?: EntityPersistence;
|
|
463
490
|
/** Rename the inlined trait at the call site. */
|
|
464
491
|
traitName?: string;
|
|
465
492
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -513,6 +540,9 @@ interface StdAgentSessionParams {
|
|
|
513
540
|
entityName: string;
|
|
514
541
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
515
542
|
fields?: EntityField[];
|
|
543
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
544
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
545
|
+
persistence?: EntityPersistence;
|
|
516
546
|
/** Rename the inlined trait at the call site. */
|
|
517
547
|
traitName?: string;
|
|
518
548
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -568,6 +598,9 @@ interface StdAgentStepProgressParams {
|
|
|
568
598
|
entityName: string;
|
|
569
599
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
570
600
|
fields?: EntityField[];
|
|
601
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
602
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
603
|
+
persistence?: EntityPersistence;
|
|
571
604
|
/** Rename the inlined trait at the call site. */
|
|
572
605
|
traitName?: string;
|
|
573
606
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -619,6 +652,9 @@ interface StdAgentTokenGaugeParams {
|
|
|
619
652
|
entityName: string;
|
|
620
653
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
621
654
|
fields?: EntityField[];
|
|
655
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
656
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
657
|
+
persistence?: EntityPersistence;
|
|
622
658
|
/** Rename the inlined trait at the call site. */
|
|
623
659
|
traitName?: string;
|
|
624
660
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -670,6 +706,9 @@ interface StdAgentToolCallParams {
|
|
|
670
706
|
entityName: string;
|
|
671
707
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
672
708
|
fields?: EntityField[];
|
|
709
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
710
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
711
|
+
persistence?: EntityPersistence;
|
|
673
712
|
/** Rename the inlined trait at the call site. */
|
|
674
713
|
traitName?: string;
|
|
675
714
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -723,6 +762,9 @@ interface StdAsyncParams {
|
|
|
723
762
|
entityName: string;
|
|
724
763
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
725
764
|
fields?: EntityField[];
|
|
765
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
766
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
767
|
+
persistence?: EntityPersistence;
|
|
726
768
|
/** Rename the inlined trait at the call site. */
|
|
727
769
|
traitName?: string;
|
|
728
770
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -774,6 +816,9 @@ interface StdAutoregressiveParams {
|
|
|
774
816
|
entityName: string;
|
|
775
817
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
776
818
|
fields?: EntityField[];
|
|
819
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
820
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
821
|
+
persistence?: EntityPersistence;
|
|
777
822
|
/** Rename the inlined trait at the call site. */
|
|
778
823
|
traitName?: string;
|
|
779
824
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -825,6 +870,9 @@ interface StdBrowseParams {
|
|
|
825
870
|
entityName: string;
|
|
826
871
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
827
872
|
fields?: EntityField[];
|
|
873
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
874
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
875
|
+
persistence?: EntityPersistence;
|
|
828
876
|
/** Rename the inlined trait at the call site. */
|
|
829
877
|
traitName?: string;
|
|
830
878
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -876,6 +924,9 @@ interface StdCacheAsideParams {
|
|
|
876
924
|
entityName: string;
|
|
877
925
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
878
926
|
fields?: EntityField[];
|
|
927
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
928
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
929
|
+
persistence?: EntityPersistence;
|
|
879
930
|
/** Rename the inlined trait at the call site. */
|
|
880
931
|
traitName?: string;
|
|
881
932
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -927,6 +978,9 @@ interface StdCalendarParams {
|
|
|
927
978
|
entityName: string;
|
|
928
979
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
929
980
|
fields?: EntityField[];
|
|
981
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
982
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
983
|
+
persistence?: EntityPersistence;
|
|
930
984
|
/** Rename the inlined trait at the call site. */
|
|
931
985
|
traitName?: string;
|
|
932
986
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -978,6 +1032,9 @@ interface StdCircuitBreakerParams {
|
|
|
978
1032
|
entityName: string;
|
|
979
1033
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
980
1034
|
fields?: EntityField[];
|
|
1035
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1036
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1037
|
+
persistence?: EntityPersistence;
|
|
981
1038
|
/** Rename the inlined trait at the call site. */
|
|
982
1039
|
traitName?: string;
|
|
983
1040
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1029,6 +1086,9 @@ interface StdCollisionParams {
|
|
|
1029
1086
|
entityName: string;
|
|
1030
1087
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1031
1088
|
fields?: EntityField[];
|
|
1089
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1090
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1091
|
+
persistence?: EntityPersistence;
|
|
1032
1092
|
/** Rename the inlined trait at the call site. */
|
|
1033
1093
|
traitName?: string;
|
|
1034
1094
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1080,6 +1140,9 @@ interface StdCombatLogParams {
|
|
|
1080
1140
|
entityName: string;
|
|
1081
1141
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1082
1142
|
fields?: EntityField[];
|
|
1143
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1144
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1145
|
+
persistence?: EntityPersistence;
|
|
1083
1146
|
/** Rename the inlined trait at the call site. */
|
|
1084
1147
|
traitName?: string;
|
|
1085
1148
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1131,6 +1194,9 @@ interface StdCombatParams {
|
|
|
1131
1194
|
entityName: string;
|
|
1132
1195
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1133
1196
|
fields?: EntityField[];
|
|
1197
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1198
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1199
|
+
persistence?: EntityPersistence;
|
|
1134
1200
|
/** Rename the inlined trait at the call site. */
|
|
1135
1201
|
traitName?: string;
|
|
1136
1202
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1182,6 +1248,9 @@ interface StdConfirmationParams {
|
|
|
1182
1248
|
entityName: string;
|
|
1183
1249
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1184
1250
|
fields?: EntityField[];
|
|
1251
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1252
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1253
|
+
persistence?: EntityPersistence;
|
|
1185
1254
|
/** Rename the inlined trait at the call site. */
|
|
1186
1255
|
traitName?: string;
|
|
1187
1256
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1233,6 +1302,9 @@ interface StdDialogueBoxParams {
|
|
|
1233
1302
|
entityName: string;
|
|
1234
1303
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1235
1304
|
fields?: EntityField[];
|
|
1305
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1306
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1307
|
+
persistence?: EntityPersistence;
|
|
1236
1308
|
/** Rename the inlined trait at the call site. */
|
|
1237
1309
|
traitName?: string;
|
|
1238
1310
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1284,6 +1356,9 @@ interface StdDisplayParams {
|
|
|
1284
1356
|
entityName: string;
|
|
1285
1357
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1286
1358
|
fields?: EntityField[];
|
|
1359
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1360
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1361
|
+
persistence?: EntityPersistence;
|
|
1287
1362
|
/** Rename the inlined trait at the call site. */
|
|
1288
1363
|
traitName?: string;
|
|
1289
1364
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1335,6 +1410,9 @@ interface StdDrawerParams {
|
|
|
1335
1410
|
entityName: string;
|
|
1336
1411
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1337
1412
|
fields?: EntityField[];
|
|
1413
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1414
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1415
|
+
persistence?: EntityPersistence;
|
|
1338
1416
|
/** Rename the inlined trait at the call site. */
|
|
1339
1417
|
traitName?: string;
|
|
1340
1418
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1386,6 +1464,9 @@ interface StdFilterParams {
|
|
|
1386
1464
|
entityName: string;
|
|
1387
1465
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1388
1466
|
fields?: EntityField[];
|
|
1467
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1468
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1469
|
+
persistence?: EntityPersistence;
|
|
1389
1470
|
/** Rename the inlined trait at the call site. */
|
|
1390
1471
|
traitName?: string;
|
|
1391
1472
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1437,6 +1518,9 @@ interface StdFlipCardParams {
|
|
|
1437
1518
|
entityName: string;
|
|
1438
1519
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1439
1520
|
fields?: EntityField[];
|
|
1521
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1522
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1523
|
+
persistence?: EntityPersistence;
|
|
1440
1524
|
/** Rename the inlined trait at the call site. */
|
|
1441
1525
|
traitName?: string;
|
|
1442
1526
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1488,6 +1572,9 @@ interface StdGalleryParams {
|
|
|
1488
1572
|
entityName: string;
|
|
1489
1573
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1490
1574
|
fields?: EntityField[];
|
|
1575
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1576
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1577
|
+
persistence?: EntityPersistence;
|
|
1491
1578
|
/** Rename the inlined trait at the call site. */
|
|
1492
1579
|
traitName?: string;
|
|
1493
1580
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1539,6 +1626,9 @@ interface StdGameAudioParams {
|
|
|
1539
1626
|
entityName: string;
|
|
1540
1627
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1541
1628
|
fields?: EntityField[];
|
|
1629
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1630
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1631
|
+
persistence?: EntityPersistence;
|
|
1542
1632
|
/** Rename the inlined trait at the call site. */
|
|
1543
1633
|
traitName?: string;
|
|
1544
1634
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1590,6 +1680,9 @@ interface StdGameCanvas2dParams {
|
|
|
1590
1680
|
entityName: string;
|
|
1591
1681
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1592
1682
|
fields?: EntityField[];
|
|
1683
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1684
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1685
|
+
persistence?: EntityPersistence;
|
|
1593
1686
|
/** Rename the inlined trait at the call site. */
|
|
1594
1687
|
traitName?: string;
|
|
1595
1688
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1641,6 +1734,9 @@ interface StdGameCanvas3dParams {
|
|
|
1641
1734
|
entityName: string;
|
|
1642
1735
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1643
1736
|
fields?: EntityField[];
|
|
1737
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1738
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1739
|
+
persistence?: EntityPersistence;
|
|
1644
1740
|
/** Rename the inlined trait at the call site. */
|
|
1645
1741
|
traitName?: string;
|
|
1646
1742
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1692,6 +1788,9 @@ interface StdGameHudParams {
|
|
|
1692
1788
|
entityName: string;
|
|
1693
1789
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1694
1790
|
fields?: EntityField[];
|
|
1791
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1792
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1793
|
+
persistence?: EntityPersistence;
|
|
1695
1794
|
/** Rename the inlined trait at the call site. */
|
|
1696
1795
|
traitName?: string;
|
|
1697
1796
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1743,6 +1842,9 @@ interface StdGameMenuParams {
|
|
|
1743
1842
|
entityName: string;
|
|
1744
1843
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1745
1844
|
fields?: EntityField[];
|
|
1845
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1846
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1847
|
+
persistence?: EntityPersistence;
|
|
1746
1848
|
/** Rename the inlined trait at the call site. */
|
|
1747
1849
|
traitName?: string;
|
|
1748
1850
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1794,6 +1896,9 @@ interface StdGameOverScreenParams {
|
|
|
1794
1896
|
entityName: string;
|
|
1795
1897
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1796
1898
|
fields?: EntityField[];
|
|
1899
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1900
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1901
|
+
persistence?: EntityPersistence;
|
|
1797
1902
|
/** Rename the inlined trait at the call site. */
|
|
1798
1903
|
traitName?: string;
|
|
1799
1904
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1845,6 +1950,9 @@ interface StdGameflowParams {
|
|
|
1845
1950
|
entityName: string;
|
|
1846
1951
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1847
1952
|
fields?: EntityField[];
|
|
1953
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
1954
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
1955
|
+
persistence?: EntityPersistence;
|
|
1848
1956
|
/** Rename the inlined trait at the call site. */
|
|
1849
1957
|
traitName?: string;
|
|
1850
1958
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1896,6 +2004,9 @@ interface StdInputParams {
|
|
|
1896
2004
|
entityName: string;
|
|
1897
2005
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1898
2006
|
fields?: EntityField[];
|
|
2007
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2008
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2009
|
+
persistence?: EntityPersistence;
|
|
1899
2010
|
/** Rename the inlined trait at the call site. */
|
|
1900
2011
|
traitName?: string;
|
|
1901
2012
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1947,6 +2058,9 @@ interface StdInventoryPanelParams {
|
|
|
1947
2058
|
entityName: string;
|
|
1948
2059
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
1949
2060
|
fields?: EntityField[];
|
|
2061
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2062
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2063
|
+
persistence?: EntityPersistence;
|
|
1950
2064
|
/** Rename the inlined trait at the call site. */
|
|
1951
2065
|
traitName?: string;
|
|
1952
2066
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -1998,6 +2112,9 @@ interface StdIsometricCanvasParams {
|
|
|
1998
2112
|
entityName: string;
|
|
1999
2113
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2000
2114
|
fields?: EntityField[];
|
|
2115
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2116
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2117
|
+
persistence?: EntityPersistence;
|
|
2001
2118
|
/** Rename the inlined trait at the call site. */
|
|
2002
2119
|
traitName?: string;
|
|
2003
2120
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2049,6 +2166,9 @@ interface StdLoadingParams {
|
|
|
2049
2166
|
entityName: string;
|
|
2050
2167
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2051
2168
|
fields?: EntityField[];
|
|
2169
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2170
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2171
|
+
persistence?: EntityPersistence;
|
|
2052
2172
|
/** Rename the inlined trait at the call site. */
|
|
2053
2173
|
traitName?: string;
|
|
2054
2174
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2100,6 +2220,9 @@ interface StdModalParams {
|
|
|
2100
2220
|
entityName: string;
|
|
2101
2221
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2102
2222
|
fields?: EntityField[];
|
|
2223
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2224
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2225
|
+
persistence?: EntityPersistence;
|
|
2103
2226
|
/** Rename the inlined trait at the call site. */
|
|
2104
2227
|
traitName?: string;
|
|
2105
2228
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2151,6 +2274,9 @@ interface StdMovementParams {
|
|
|
2151
2274
|
entityName: string;
|
|
2152
2275
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2153
2276
|
fields?: EntityField[];
|
|
2277
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2278
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2279
|
+
persistence?: EntityPersistence;
|
|
2154
2280
|
/** Rename the inlined trait at the call site. */
|
|
2155
2281
|
traitName?: string;
|
|
2156
2282
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2202,6 +2328,9 @@ interface StdNotificationParams {
|
|
|
2202
2328
|
entityName: string;
|
|
2203
2329
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2204
2330
|
fields?: EntityField[];
|
|
2331
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2332
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2333
|
+
persistence?: EntityPersistence;
|
|
2205
2334
|
/** Rename the inlined trait at the call site. */
|
|
2206
2335
|
traitName?: string;
|
|
2207
2336
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2253,6 +2382,9 @@ interface StdOverworldParams {
|
|
|
2253
2382
|
entityName: string;
|
|
2254
2383
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2255
2384
|
fields?: EntityField[];
|
|
2385
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2386
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2387
|
+
persistence?: EntityPersistence;
|
|
2256
2388
|
/** Rename the inlined trait at the call site. */
|
|
2257
2389
|
traitName?: string;
|
|
2258
2390
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2304,6 +2436,9 @@ interface StdPaginationParams {
|
|
|
2304
2436
|
entityName: string;
|
|
2305
2437
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2306
2438
|
fields?: EntityField[];
|
|
2439
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2440
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2441
|
+
persistence?: EntityPersistence;
|
|
2307
2442
|
/** Rename the inlined trait at the call site. */
|
|
2308
2443
|
traitName?: string;
|
|
2309
2444
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2355,6 +2490,9 @@ interface StdPhysics2dParams {
|
|
|
2355
2490
|
entityName: string;
|
|
2356
2491
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2357
2492
|
fields?: EntityField[];
|
|
2493
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2494
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2495
|
+
persistence?: EntityPersistence;
|
|
2358
2496
|
/** Rename the inlined trait at the call site. */
|
|
2359
2497
|
traitName?: string;
|
|
2360
2498
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2406,6 +2544,9 @@ interface StdPlatformerCanvasParams {
|
|
|
2406
2544
|
entityName: string;
|
|
2407
2545
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2408
2546
|
fields?: EntityField[];
|
|
2547
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2548
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2549
|
+
persistence?: EntityPersistence;
|
|
2409
2550
|
/** Rename the inlined trait at the call site. */
|
|
2410
2551
|
traitName?: string;
|
|
2411
2552
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2457,6 +2598,9 @@ interface StdQuestParams {
|
|
|
2457
2598
|
entityName: string;
|
|
2458
2599
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2459
2600
|
fields?: EntityField[];
|
|
2601
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2602
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2603
|
+
persistence?: EntityPersistence;
|
|
2460
2604
|
/** Rename the inlined trait at the call site. */
|
|
2461
2605
|
traitName?: string;
|
|
2462
2606
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2508,6 +2652,9 @@ interface StdRateLimiterParams {
|
|
|
2508
2652
|
entityName: string;
|
|
2509
2653
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2510
2654
|
fields?: EntityField[];
|
|
2655
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2656
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2657
|
+
persistence?: EntityPersistence;
|
|
2511
2658
|
/** Rename the inlined trait at the call site. */
|
|
2512
2659
|
traitName?: string;
|
|
2513
2660
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2559,6 +2706,9 @@ interface StdRatingParams {
|
|
|
2559
2706
|
entityName: string;
|
|
2560
2707
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2561
2708
|
fields?: EntityField[];
|
|
2709
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2710
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2711
|
+
persistence?: EntityPersistence;
|
|
2562
2712
|
/** Rename the inlined trait at the call site. */
|
|
2563
2713
|
traitName?: string;
|
|
2564
2714
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2610,6 +2760,9 @@ interface StdScoreBoardParams {
|
|
|
2610
2760
|
entityName: string;
|
|
2611
2761
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2612
2762
|
fields?: EntityField[];
|
|
2763
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2764
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2765
|
+
persistence?: EntityPersistence;
|
|
2613
2766
|
/** Rename the inlined trait at the call site. */
|
|
2614
2767
|
traitName?: string;
|
|
2615
2768
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2661,6 +2814,9 @@ interface StdScoreParams {
|
|
|
2661
2814
|
entityName: string;
|
|
2662
2815
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2663
2816
|
fields?: EntityField[];
|
|
2817
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2818
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2819
|
+
persistence?: EntityPersistence;
|
|
2664
2820
|
/** Rename the inlined trait at the call site. */
|
|
2665
2821
|
traitName?: string;
|
|
2666
2822
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2712,6 +2868,9 @@ interface StdSearchParams {
|
|
|
2712
2868
|
entityName: string;
|
|
2713
2869
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2714
2870
|
fields?: EntityField[];
|
|
2871
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2872
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2873
|
+
persistence?: EntityPersistence;
|
|
2715
2874
|
/** Rename the inlined trait at the call site. */
|
|
2716
2875
|
traitName?: string;
|
|
2717
2876
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2763,6 +2922,9 @@ interface StdSelectionParams {
|
|
|
2763
2922
|
entityName: string;
|
|
2764
2923
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2765
2924
|
fields?: EntityField[];
|
|
2925
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2926
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2927
|
+
persistence?: EntityPersistence;
|
|
2766
2928
|
/** Rename the inlined trait at the call site. */
|
|
2767
2929
|
traitName?: string;
|
|
2768
2930
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2814,6 +2976,9 @@ interface StdServiceCustomBearerParams {
|
|
|
2814
2976
|
entityName: string;
|
|
2815
2977
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2816
2978
|
fields?: EntityField[];
|
|
2979
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
2980
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
2981
|
+
persistence?: EntityPersistence;
|
|
2817
2982
|
/** Rename the inlined trait at the call site. */
|
|
2818
2983
|
traitName?: string;
|
|
2819
2984
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2865,6 +3030,9 @@ interface StdServiceCustomHeaderParams {
|
|
|
2865
3030
|
entityName: string;
|
|
2866
3031
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2867
3032
|
fields?: EntityField[];
|
|
3033
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3034
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3035
|
+
persistence?: EntityPersistence;
|
|
2868
3036
|
/** Rename the inlined trait at the call site. */
|
|
2869
3037
|
traitName?: string;
|
|
2870
3038
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2916,6 +3084,9 @@ interface StdServiceCustomNoauthParams {
|
|
|
2916
3084
|
entityName: string;
|
|
2917
3085
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2918
3086
|
fields?: EntityField[];
|
|
3087
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3088
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3089
|
+
persistence?: EntityPersistence;
|
|
2919
3090
|
/** Rename the inlined trait at the call site. */
|
|
2920
3091
|
traitName?: string;
|
|
2921
3092
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -2967,6 +3138,9 @@ interface StdServiceCustomQueryParams {
|
|
|
2967
3138
|
entityName: string;
|
|
2968
3139
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
2969
3140
|
fields?: EntityField[];
|
|
3141
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3142
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3143
|
+
persistence?: EntityPersistence;
|
|
2970
3144
|
/** Rename the inlined trait at the call site. */
|
|
2971
3145
|
traitName?: string;
|
|
2972
3146
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3018,6 +3192,9 @@ interface StdServiceEmailParams {
|
|
|
3018
3192
|
entityName: string;
|
|
3019
3193
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3020
3194
|
fields?: EntityField[];
|
|
3195
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3196
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3197
|
+
persistence?: EntityPersistence;
|
|
3021
3198
|
/** Rename the inlined trait at the call site. */
|
|
3022
3199
|
traitName?: string;
|
|
3023
3200
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3069,6 +3246,9 @@ interface StdServiceGithubParams {
|
|
|
3069
3246
|
entityName: string;
|
|
3070
3247
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3071
3248
|
fields?: EntityField[];
|
|
3249
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3250
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3251
|
+
persistence?: EntityPersistence;
|
|
3072
3252
|
/** Rename the inlined trait at the call site. */
|
|
3073
3253
|
traitName?: string;
|
|
3074
3254
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3120,6 +3300,9 @@ interface StdServiceLlmParams {
|
|
|
3120
3300
|
entityName: string;
|
|
3121
3301
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3122
3302
|
fields?: EntityField[];
|
|
3303
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3304
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3305
|
+
persistence?: EntityPersistence;
|
|
3123
3306
|
/** Rename the inlined trait at the call site. */
|
|
3124
3307
|
traitName?: string;
|
|
3125
3308
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3171,6 +3354,9 @@ interface StdServiceOauthParams {
|
|
|
3171
3354
|
entityName: string;
|
|
3172
3355
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3173
3356
|
fields?: EntityField[];
|
|
3357
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3358
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3359
|
+
persistence?: EntityPersistence;
|
|
3174
3360
|
/** Rename the inlined trait at the call site. */
|
|
3175
3361
|
traitName?: string;
|
|
3176
3362
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3222,6 +3408,9 @@ interface StdServiceRedisParams {
|
|
|
3222
3408
|
entityName: string;
|
|
3223
3409
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3224
3410
|
fields?: EntityField[];
|
|
3411
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3412
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3413
|
+
persistence?: EntityPersistence;
|
|
3225
3414
|
/** Rename the inlined trait at the call site. */
|
|
3226
3415
|
traitName?: string;
|
|
3227
3416
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3273,6 +3462,9 @@ interface StdServiceStorageParams {
|
|
|
3273
3462
|
entityName: string;
|
|
3274
3463
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3275
3464
|
fields?: EntityField[];
|
|
3465
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3466
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3467
|
+
persistence?: EntityPersistence;
|
|
3276
3468
|
/** Rename the inlined trait at the call site. */
|
|
3277
3469
|
traitName?: string;
|
|
3278
3470
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3324,6 +3516,9 @@ interface StdServiceStripeParams {
|
|
|
3324
3516
|
entityName: string;
|
|
3325
3517
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3326
3518
|
fields?: EntityField[];
|
|
3519
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3520
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3521
|
+
persistence?: EntityPersistence;
|
|
3327
3522
|
/** Rename the inlined trait at the call site. */
|
|
3328
3523
|
traitName?: string;
|
|
3329
3524
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3375,6 +3570,9 @@ interface StdServiceTwilioParams {
|
|
|
3375
3570
|
entityName: string;
|
|
3376
3571
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3377
3572
|
fields?: EntityField[];
|
|
3573
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3574
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3575
|
+
persistence?: EntityPersistence;
|
|
3378
3576
|
/** Rename the inlined trait at the call site. */
|
|
3379
3577
|
traitName?: string;
|
|
3380
3578
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3426,6 +3624,9 @@ interface StdServiceYoutubeParams {
|
|
|
3426
3624
|
entityName: string;
|
|
3427
3625
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3428
3626
|
fields?: EntityField[];
|
|
3627
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3628
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3629
|
+
persistence?: EntityPersistence;
|
|
3429
3630
|
/** Rename the inlined trait at the call site. */
|
|
3430
3631
|
traitName?: string;
|
|
3431
3632
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3477,6 +3678,9 @@ interface StdSimulationCanvasParams {
|
|
|
3477
3678
|
entityName: string;
|
|
3478
3679
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3479
3680
|
fields?: EntityField[];
|
|
3681
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3682
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3683
|
+
persistence?: EntityPersistence;
|
|
3480
3684
|
/** Rename the inlined trait at the call site. */
|
|
3481
3685
|
traitName?: string;
|
|
3482
3686
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3528,6 +3732,9 @@ interface StdSortParams {
|
|
|
3528
3732
|
entityName: string;
|
|
3529
3733
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3530
3734
|
fields?: EntityField[];
|
|
3735
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3736
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3737
|
+
persistence?: EntityPersistence;
|
|
3531
3738
|
/** Rename the inlined trait at the call site. */
|
|
3532
3739
|
traitName?: string;
|
|
3533
3740
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3579,6 +3786,9 @@ interface StdSpriteParams {
|
|
|
3579
3786
|
entityName: string;
|
|
3580
3787
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3581
3788
|
fields?: EntityField[];
|
|
3789
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3790
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3791
|
+
persistence?: EntityPersistence;
|
|
3582
3792
|
/** Rename the inlined trait at the call site. */
|
|
3583
3793
|
traitName?: string;
|
|
3584
3794
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3630,6 +3840,9 @@ interface StdTabsParams {
|
|
|
3630
3840
|
entityName: string;
|
|
3631
3841
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3632
3842
|
fields?: EntityField[];
|
|
3843
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3844
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3845
|
+
persistence?: EntityPersistence;
|
|
3633
3846
|
/** Rename the inlined trait at the call site. */
|
|
3634
3847
|
traitName?: string;
|
|
3635
3848
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3681,6 +3894,9 @@ interface StdTextEffectsParams {
|
|
|
3681
3894
|
entityName: string;
|
|
3682
3895
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3683
3896
|
fields?: EntityField[];
|
|
3897
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3898
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3899
|
+
persistence?: EntityPersistence;
|
|
3684
3900
|
/** Rename the inlined trait at the call site. */
|
|
3685
3901
|
traitName?: string;
|
|
3686
3902
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3732,6 +3948,9 @@ interface StdThemeParams {
|
|
|
3732
3948
|
entityName: string;
|
|
3733
3949
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3734
3950
|
fields?: EntityField[];
|
|
3951
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
3952
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
3953
|
+
persistence?: EntityPersistence;
|
|
3735
3954
|
/** Rename the inlined trait at the call site. */
|
|
3736
3955
|
traitName?: string;
|
|
3737
3956
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3783,6 +4002,9 @@ interface StdTimerParams {
|
|
|
3783
4002
|
entityName: string;
|
|
3784
4003
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3785
4004
|
fields?: EntityField[];
|
|
4005
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4006
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4007
|
+
persistence?: EntityPersistence;
|
|
3786
4008
|
/** Rename the inlined trait at the call site. */
|
|
3787
4009
|
traitName?: string;
|
|
3788
4010
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3834,6 +4056,9 @@ interface StdUndoParams {
|
|
|
3834
4056
|
entityName: string;
|
|
3835
4057
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3836
4058
|
fields?: EntityField[];
|
|
4059
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4060
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4061
|
+
persistence?: EntityPersistence;
|
|
3837
4062
|
/** Rename the inlined trait at the call site. */
|
|
3838
4063
|
traitName?: string;
|
|
3839
4064
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3885,6 +4110,9 @@ interface StdUploadParams {
|
|
|
3885
4110
|
entityName: string;
|
|
3886
4111
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3887
4112
|
fields?: EntityField[];
|
|
4113
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4114
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4115
|
+
persistence?: EntityPersistence;
|
|
3888
4116
|
/** Rename the inlined trait at the call site. */
|
|
3889
4117
|
traitName?: string;
|
|
3890
4118
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3936,6 +4164,9 @@ interface StdValidateOnSaveParams {
|
|
|
3936
4164
|
entityName: string;
|
|
3937
4165
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3938
4166
|
fields?: EntityField[];
|
|
4167
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4168
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4169
|
+
persistence?: EntityPersistence;
|
|
3939
4170
|
/** Rename the inlined trait at the call site. */
|
|
3940
4171
|
traitName?: string;
|
|
3941
4172
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -3987,6 +4218,9 @@ interface StdWizardParams {
|
|
|
3987
4218
|
entityName: string;
|
|
3988
4219
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
3989
4220
|
fields?: EntityField[];
|
|
4221
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4222
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4223
|
+
persistence?: EntityPersistence;
|
|
3990
4224
|
/** Rename the inlined trait at the call site. */
|
|
3991
4225
|
traitName?: string;
|
|
3992
4226
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4038,6 +4272,9 @@ interface StdAgentFixLoopParams {
|
|
|
4038
4272
|
entityName: string;
|
|
4039
4273
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4040
4274
|
fields?: EntityField[];
|
|
4275
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4276
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4277
|
+
persistence?: EntityPersistence;
|
|
4041
4278
|
/** Rename the inlined trait at the call site. */
|
|
4042
4279
|
traitName?: string;
|
|
4043
4280
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4099,6 +4336,9 @@ interface StdAgentLearnerParams {
|
|
|
4099
4336
|
entityName: string;
|
|
4100
4337
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4101
4338
|
fields?: EntityField[];
|
|
4339
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4340
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4341
|
+
persistence?: EntityPersistence;
|
|
4102
4342
|
/** Rename the inlined trait at the call site. */
|
|
4103
4343
|
traitName?: string;
|
|
4104
4344
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4158,6 +4398,9 @@ interface StdAgentPlannerParams {
|
|
|
4158
4398
|
entityName: string;
|
|
4159
4399
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4160
4400
|
fields?: EntityField[];
|
|
4401
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4402
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4403
|
+
persistence?: EntityPersistence;
|
|
4161
4404
|
/** Rename the inlined trait at the call site. */
|
|
4162
4405
|
traitName?: string;
|
|
4163
4406
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4217,6 +4460,9 @@ interface StdAgentRagParams {
|
|
|
4217
4460
|
entityName: string;
|
|
4218
4461
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4219
4462
|
fields?: EntityField[];
|
|
4463
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4464
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4465
|
+
persistence?: EntityPersistence;
|
|
4220
4466
|
/** Rename the inlined trait at the call site. */
|
|
4221
4467
|
traitName?: string;
|
|
4222
4468
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4276,6 +4522,9 @@ interface StdAgentToolLoopParams {
|
|
|
4276
4522
|
entityName: string;
|
|
4277
4523
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4278
4524
|
fields?: EntityField[];
|
|
4525
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4526
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4527
|
+
persistence?: EntityPersistence;
|
|
4279
4528
|
/** Rename the inlined trait at the call site. */
|
|
4280
4529
|
traitName?: string;
|
|
4281
4530
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4335,6 +4584,9 @@ interface StdBuilderGameParams {
|
|
|
4335
4584
|
entityName: string;
|
|
4336
4585
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4337
4586
|
fields?: EntityField[];
|
|
4587
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4588
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4589
|
+
persistence?: EntityPersistence;
|
|
4338
4590
|
/** Rename the inlined trait at the call site. */
|
|
4339
4591
|
traitName?: string;
|
|
4340
4592
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4386,6 +4638,9 @@ interface StdCartParams {
|
|
|
4386
4638
|
entityName: string;
|
|
4387
4639
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4388
4640
|
fields?: EntityField[];
|
|
4641
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4642
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4643
|
+
persistence?: EntityPersistence;
|
|
4389
4644
|
/** Rename the inlined trait at the call site. */
|
|
4390
4645
|
traitName?: string;
|
|
4391
4646
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4441,6 +4696,9 @@ interface StdClassifierGameParams {
|
|
|
4441
4696
|
entityName: string;
|
|
4442
4697
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4443
4698
|
fields?: EntityField[];
|
|
4699
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4700
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4701
|
+
persistence?: EntityPersistence;
|
|
4444
4702
|
/** Rename the inlined trait at the call site. */
|
|
4445
4703
|
traitName?: string;
|
|
4446
4704
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4492,6 +4750,9 @@ interface StdDebuggerGameParams {
|
|
|
4492
4750
|
entityName: string;
|
|
4493
4751
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4494
4752
|
fields?: EntityField[];
|
|
4753
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4754
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4755
|
+
persistence?: EntityPersistence;
|
|
4495
4756
|
/** Rename the inlined trait at the call site. */
|
|
4496
4757
|
traitName?: string;
|
|
4497
4758
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4543,6 +4804,9 @@ interface StdDetailParams {
|
|
|
4543
4804
|
entityName: string;
|
|
4544
4805
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4545
4806
|
fields?: EntityField[];
|
|
4807
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4808
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4809
|
+
persistence?: EntityPersistence;
|
|
4546
4810
|
/** Rename the inlined trait at the call site. */
|
|
4547
4811
|
traitName?: string;
|
|
4548
4812
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4598,6 +4862,9 @@ interface StdEventHandlerGameParams {
|
|
|
4598
4862
|
entityName: string;
|
|
4599
4863
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4600
4864
|
fields?: EntityField[];
|
|
4865
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4866
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4867
|
+
persistence?: EntityPersistence;
|
|
4601
4868
|
/** Rename the inlined trait at the call site. */
|
|
4602
4869
|
traitName?: string;
|
|
4603
4870
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4649,6 +4916,9 @@ interface StdFormAdvancedParams {
|
|
|
4649
4916
|
entityName: string;
|
|
4650
4917
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4651
4918
|
fields?: EntityField[];
|
|
4919
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4920
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4921
|
+
persistence?: EntityPersistence;
|
|
4652
4922
|
/** Rename the inlined trait at the call site. */
|
|
4653
4923
|
traitName?: string;
|
|
4654
4924
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4700,6 +4970,9 @@ interface StdGeospatialParams {
|
|
|
4700
4970
|
entityName: string;
|
|
4701
4971
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4702
4972
|
fields?: EntityField[];
|
|
4973
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
4974
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
4975
|
+
persistence?: EntityPersistence;
|
|
4703
4976
|
/** Rename the inlined trait at the call site. */
|
|
4704
4977
|
traitName?: string;
|
|
4705
4978
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4755,6 +5028,9 @@ interface StdInventoryParams {
|
|
|
4755
5028
|
entityName: string;
|
|
4756
5029
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4757
5030
|
fields?: EntityField[];
|
|
5031
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5032
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5033
|
+
persistence?: EntityPersistence;
|
|
4758
5034
|
/** Rename the inlined trait at the call site. */
|
|
4759
5035
|
traitName?: string;
|
|
4760
5036
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4812,6 +5088,9 @@ interface StdListParams {
|
|
|
4812
5088
|
entityName: string;
|
|
4813
5089
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4814
5090
|
fields?: EntityField[];
|
|
5091
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5092
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5093
|
+
persistence?: EntityPersistence;
|
|
4815
5094
|
/** Rename the inlined trait at the call site. */
|
|
4816
5095
|
traitName?: string;
|
|
4817
5096
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4871,6 +5150,9 @@ interface StdMessagingParams {
|
|
|
4871
5150
|
entityName: string;
|
|
4872
5151
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4873
5152
|
fields?: EntityField[];
|
|
5153
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5154
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5155
|
+
persistence?: EntityPersistence;
|
|
4874
5156
|
/** Rename the inlined trait at the call site. */
|
|
4875
5157
|
traitName?: string;
|
|
4876
5158
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4926,6 +5208,9 @@ interface StdNegotiatorGameParams {
|
|
|
4926
5208
|
entityName: string;
|
|
4927
5209
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4928
5210
|
fields?: EntityField[];
|
|
5211
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5212
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5213
|
+
persistence?: EntityPersistence;
|
|
4929
5214
|
/** Rename the inlined trait at the call site. */
|
|
4930
5215
|
traitName?: string;
|
|
4931
5216
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -4977,6 +5262,9 @@ interface StdPlatformerGameParams {
|
|
|
4977
5262
|
entityName: string;
|
|
4978
5263
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4979
5264
|
fields?: EntityField[];
|
|
5265
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5266
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5267
|
+
persistence?: EntityPersistence;
|
|
4980
5268
|
/** Rename the inlined trait at the call site. */
|
|
4981
5269
|
traitName?: string;
|
|
4982
5270
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5030,6 +5318,9 @@ interface StdPuzzleGameParams {
|
|
|
5030
5318
|
entityName: string;
|
|
5031
5319
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5032
5320
|
fields?: EntityField[];
|
|
5321
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5322
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5323
|
+
persistence?: EntityPersistence;
|
|
5033
5324
|
/** Rename the inlined trait at the call site. */
|
|
5034
5325
|
traitName?: string;
|
|
5035
5326
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5083,6 +5374,9 @@ interface StdQuizParams {
|
|
|
5083
5374
|
entityName: string;
|
|
5084
5375
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5085
5376
|
fields?: EntityField[];
|
|
5377
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5378
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5379
|
+
persistence?: EntityPersistence;
|
|
5086
5380
|
/** Rename the inlined trait at the call site. */
|
|
5087
5381
|
traitName?: string;
|
|
5088
5382
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5134,6 +5428,9 @@ interface StdSequencerGameParams {
|
|
|
5134
5428
|
entityName: string;
|
|
5135
5429
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5136
5430
|
fields?: EntityField[];
|
|
5431
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5432
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5433
|
+
persistence?: EntityPersistence;
|
|
5137
5434
|
/** Rename the inlined trait at the call site. */
|
|
5138
5435
|
traitName?: string;
|
|
5139
5436
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5185,6 +5482,9 @@ interface StdServiceContentPipelineParams {
|
|
|
5185
5482
|
entityName: string;
|
|
5186
5483
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5187
5484
|
fields?: EntityField[];
|
|
5485
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5486
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5487
|
+
persistence?: EntityPersistence;
|
|
5188
5488
|
/** Rename the inlined trait at the call site. */
|
|
5189
5489
|
traitName?: string;
|
|
5190
5490
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5236,6 +5536,9 @@ interface StdServiceCustomApiTesterParams {
|
|
|
5236
5536
|
entityName: string;
|
|
5237
5537
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5238
5538
|
fields?: EntityField[];
|
|
5539
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5540
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5541
|
+
persistence?: EntityPersistence;
|
|
5239
5542
|
/** Rename the inlined trait at the call site. */
|
|
5240
5543
|
traitName?: string;
|
|
5241
5544
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5287,6 +5590,9 @@ interface StdServiceDevopsToolkitParams {
|
|
|
5287
5590
|
entityName: string;
|
|
5288
5591
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5289
5592
|
fields?: EntityField[];
|
|
5593
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5594
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5595
|
+
persistence?: EntityPersistence;
|
|
5290
5596
|
/** Rename the inlined trait at the call site. */
|
|
5291
5597
|
traitName?: string;
|
|
5292
5598
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5342,6 +5648,9 @@ interface StdServiceNotificationHubParams {
|
|
|
5342
5648
|
entityName: string;
|
|
5343
5649
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5344
5650
|
fields?: EntityField[];
|
|
5651
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5652
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5653
|
+
persistence?: EntityPersistence;
|
|
5345
5654
|
/** Rename the inlined trait at the call site. */
|
|
5346
5655
|
traitName?: string;
|
|
5347
5656
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5393,6 +5702,9 @@ interface StdServicePaymentFlowParams {
|
|
|
5393
5702
|
entityName: string;
|
|
5394
5703
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5395
5704
|
fields?: EntityField[];
|
|
5705
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5706
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5707
|
+
persistence?: EntityPersistence;
|
|
5396
5708
|
/** Rename the inlined trait at the call site. */
|
|
5397
5709
|
traitName?: string;
|
|
5398
5710
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5446,6 +5758,9 @@ interface StdSimulatorGameParams {
|
|
|
5446
5758
|
entityName: string;
|
|
5447
5759
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5448
5760
|
fields?: EntityField[];
|
|
5761
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5762
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5763
|
+
persistence?: EntityPersistence;
|
|
5449
5764
|
/** Rename the inlined trait at the call site. */
|
|
5450
5765
|
traitName?: string;
|
|
5451
5766
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5497,6 +5812,9 @@ interface StdTurnBasedBattleParams {
|
|
|
5497
5812
|
entityName: string;
|
|
5498
5813
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5499
5814
|
fields?: EntityField[];
|
|
5815
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5816
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5817
|
+
persistence?: EntityPersistence;
|
|
5500
5818
|
/** Rename the inlined trait at the call site. */
|
|
5501
5819
|
traitName?: string;
|
|
5502
5820
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5550,6 +5868,9 @@ interface StdAgentAssistantParams {
|
|
|
5550
5868
|
entityName: string;
|
|
5551
5869
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5552
5870
|
fields?: EntityField[];
|
|
5871
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5872
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5873
|
+
persistence?: EntityPersistence;
|
|
5553
5874
|
/** Rename the inlined trait at the call site. */
|
|
5554
5875
|
traitName?: string;
|
|
5555
5876
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5603,6 +5924,9 @@ interface StdAgentBuilderParams {
|
|
|
5603
5924
|
entityName: string;
|
|
5604
5925
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5605
5926
|
fields?: EntityField[];
|
|
5927
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5928
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5929
|
+
persistence?: EntityPersistence;
|
|
5606
5930
|
/** Rename the inlined trait at the call site. */
|
|
5607
5931
|
traitName?: string;
|
|
5608
5932
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5662,6 +5986,9 @@ interface StdAgentPipelineParams {
|
|
|
5662
5986
|
entityName: string;
|
|
5663
5987
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5664
5988
|
fields?: EntityField[];
|
|
5989
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
5990
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
5991
|
+
persistence?: EntityPersistence;
|
|
5665
5992
|
/** Rename the inlined trait at the call site. */
|
|
5666
5993
|
traitName?: string;
|
|
5667
5994
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5721,6 +6048,9 @@ interface StdAgentReviewerParams {
|
|
|
5721
6048
|
entityName: string;
|
|
5722
6049
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5723
6050
|
fields?: EntityField[];
|
|
6051
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6052
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6053
|
+
persistence?: EntityPersistence;
|
|
5724
6054
|
/** Rename the inlined trait at the call site. */
|
|
5725
6055
|
traitName?: string;
|
|
5726
6056
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5772,6 +6102,9 @@ interface StdAgentTutorParams {
|
|
|
5772
6102
|
entityName: string;
|
|
5773
6103
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5774
6104
|
fields?: EntityField[];
|
|
6105
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6106
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6107
|
+
persistence?: EntityPersistence;
|
|
5775
6108
|
/** Rename the inlined trait at the call site. */
|
|
5776
6109
|
traitName?: string;
|
|
5777
6110
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5823,6 +6156,9 @@ interface StdApiGatewayParams {
|
|
|
5823
6156
|
entityName: string;
|
|
5824
6157
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5825
6158
|
fields?: EntityField[];
|
|
6159
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6160
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6161
|
+
persistence?: EntityPersistence;
|
|
5826
6162
|
/** Rename the inlined trait at the call site. */
|
|
5827
6163
|
traitName?: string;
|
|
5828
6164
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5882,6 +6218,9 @@ interface StdArcadeGameParams {
|
|
|
5882
6218
|
entityName: string;
|
|
5883
6219
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5884
6220
|
fields?: EntityField[];
|
|
6221
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6222
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6223
|
+
persistence?: EntityPersistence;
|
|
5885
6224
|
/** Rename the inlined trait at the call site. */
|
|
5886
6225
|
traitName?: string;
|
|
5887
6226
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5933,6 +6272,9 @@ interface StdBookingSystemParams {
|
|
|
5933
6272
|
entityName: string;
|
|
5934
6273
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5935
6274
|
fields?: EntityField[];
|
|
6275
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6276
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6277
|
+
persistence?: EntityPersistence;
|
|
5936
6278
|
/** Rename the inlined trait at the call site. */
|
|
5937
6279
|
traitName?: string;
|
|
5938
6280
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -5992,6 +6334,9 @@ interface StdCicdPipelineParams {
|
|
|
5992
6334
|
entityName: string;
|
|
5993
6335
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
5994
6336
|
fields?: EntityField[];
|
|
6337
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6338
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6339
|
+
persistence?: EntityPersistence;
|
|
5995
6340
|
/** Rename the inlined trait at the call site. */
|
|
5996
6341
|
traitName?: string;
|
|
5997
6342
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6051,6 +6396,9 @@ interface StdCmsParams {
|
|
|
6051
6396
|
entityName: string;
|
|
6052
6397
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6053
6398
|
fields?: EntityField[];
|
|
6399
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6400
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6401
|
+
persistence?: EntityPersistence;
|
|
6054
6402
|
/** Rename the inlined trait at the call site. */
|
|
6055
6403
|
traitName?: string;
|
|
6056
6404
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6110,6 +6458,9 @@ interface StdCodingAcademyParams {
|
|
|
6110
6458
|
entityName: string;
|
|
6111
6459
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6112
6460
|
fields?: EntityField[];
|
|
6461
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6462
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6463
|
+
persistence?: EntityPersistence;
|
|
6113
6464
|
/** Rename the inlined trait at the call site. */
|
|
6114
6465
|
traitName?: string;
|
|
6115
6466
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6161,6 +6512,9 @@ interface StdCrmParams {
|
|
|
6161
6512
|
entityName: string;
|
|
6162
6513
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6163
6514
|
fields?: EntityField[];
|
|
6515
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6516
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6517
|
+
persistence?: EntityPersistence;
|
|
6164
6518
|
/** Rename the inlined trait at the call site. */
|
|
6165
6519
|
traitName?: string;
|
|
6166
6520
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6220,6 +6574,9 @@ interface StdDevopsDashboardParams {
|
|
|
6220
6574
|
entityName: string;
|
|
6221
6575
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6222
6576
|
fields?: EntityField[];
|
|
6577
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6578
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6579
|
+
persistence?: EntityPersistence;
|
|
6223
6580
|
/** Rename the inlined trait at the call site. */
|
|
6224
6581
|
traitName?: string;
|
|
6225
6582
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6271,6 +6628,9 @@ interface StdEcommerceParams {
|
|
|
6271
6628
|
entityName: string;
|
|
6272
6629
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6273
6630
|
fields?: EntityField[];
|
|
6631
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6632
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6633
|
+
persistence?: EntityPersistence;
|
|
6274
6634
|
/** Rename the inlined trait at the call site. */
|
|
6275
6635
|
traitName?: string;
|
|
6276
6636
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6330,6 +6690,9 @@ interface StdFinanceTrackerParams {
|
|
|
6330
6690
|
entityName: string;
|
|
6331
6691
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6332
6692
|
fields?: EntityField[];
|
|
6693
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6694
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6695
|
+
persistence?: EntityPersistence;
|
|
6333
6696
|
/** Rename the inlined trait at the call site. */
|
|
6334
6697
|
traitName?: string;
|
|
6335
6698
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6389,6 +6752,9 @@ interface StdHealthcareParams {
|
|
|
6389
6752
|
entityName: string;
|
|
6390
6753
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6391
6754
|
fields?: EntityField[];
|
|
6755
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6756
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6757
|
+
persistence?: EntityPersistence;
|
|
6392
6758
|
/** Rename the inlined trait at the call site. */
|
|
6393
6759
|
traitName?: string;
|
|
6394
6760
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6448,6 +6814,9 @@ interface StdHelpdeskParams {
|
|
|
6448
6814
|
entityName: string;
|
|
6449
6815
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6450
6816
|
fields?: EntityField[];
|
|
6817
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6818
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6819
|
+
persistence?: EntityPersistence;
|
|
6451
6820
|
/** Rename the inlined trait at the call site. */
|
|
6452
6821
|
traitName?: string;
|
|
6453
6822
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6507,6 +6876,9 @@ interface StdHrPortalParams {
|
|
|
6507
6876
|
entityName: string;
|
|
6508
6877
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6509
6878
|
fields?: EntityField[];
|
|
6879
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6880
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6881
|
+
persistence?: EntityPersistence;
|
|
6510
6882
|
/** Rename the inlined trait at the call site. */
|
|
6511
6883
|
traitName?: string;
|
|
6512
6884
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6566,6 +6938,9 @@ interface StdIotDashboardParams {
|
|
|
6566
6938
|
entityName: string;
|
|
6567
6939
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6568
6940
|
fields?: EntityField[];
|
|
6941
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6942
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6943
|
+
persistence?: EntityPersistence;
|
|
6569
6944
|
/** Rename the inlined trait at the call site. */
|
|
6570
6945
|
traitName?: string;
|
|
6571
6946
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6617,6 +6992,9 @@ interface StdLmsParams {
|
|
|
6617
6992
|
entityName: string;
|
|
6618
6993
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6619
6994
|
fields?: EntityField[];
|
|
6995
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
6996
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
6997
|
+
persistence?: EntityPersistence;
|
|
6620
6998
|
/** Rename the inlined trait at the call site. */
|
|
6621
6999
|
traitName?: string;
|
|
6622
7000
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6676,6 +7054,9 @@ interface StdLogicTrainingParams {
|
|
|
6676
7054
|
entityName: string;
|
|
6677
7055
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6678
7056
|
fields?: EntityField[];
|
|
7057
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
7058
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
7059
|
+
persistence?: EntityPersistence;
|
|
6679
7060
|
/** Rename the inlined trait at the call site. */
|
|
6680
7061
|
traitName?: string;
|
|
6681
7062
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6727,6 +7108,9 @@ interface StdPlatformerAppParams {
|
|
|
6727
7108
|
entityName: string;
|
|
6728
7109
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6729
7110
|
fields?: EntityField[];
|
|
7111
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
7112
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
7113
|
+
persistence?: EntityPersistence;
|
|
6730
7114
|
/** Rename the inlined trait at the call site. */
|
|
6731
7115
|
traitName?: string;
|
|
6732
7116
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6780,6 +7164,9 @@ interface StdProjectManagerParams {
|
|
|
6780
7164
|
entityName: string;
|
|
6781
7165
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6782
7166
|
fields?: EntityField[];
|
|
7167
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
7168
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
7169
|
+
persistence?: EntityPersistence;
|
|
6783
7170
|
/** Rename the inlined trait at the call site. */
|
|
6784
7171
|
traitName?: string;
|
|
6785
7172
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6839,6 +7226,9 @@ interface StdPuzzleAppParams {
|
|
|
6839
7226
|
entityName: string;
|
|
6840
7227
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6841
7228
|
fields?: EntityField[];
|
|
7229
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
7230
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
7231
|
+
persistence?: EntityPersistence;
|
|
6842
7232
|
/** Rename the inlined trait at the call site. */
|
|
6843
7233
|
traitName?: string;
|
|
6844
7234
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6892,6 +7282,9 @@ interface StdRealtimeChatParams {
|
|
|
6892
7282
|
entityName: string;
|
|
6893
7283
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6894
7284
|
fields?: EntityField[];
|
|
7285
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
7286
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
7287
|
+
persistence?: EntityPersistence;
|
|
6895
7288
|
/** Rename the inlined trait at the call site. */
|
|
6896
7289
|
traitName?: string;
|
|
6897
7290
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -6947,6 +7340,9 @@ interface StdRpgGameParams {
|
|
|
6947
7340
|
entityName: string;
|
|
6948
7341
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
6949
7342
|
fields?: EntityField[];
|
|
7343
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
7344
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
7345
|
+
persistence?: EntityPersistence;
|
|
6950
7346
|
/** Rename the inlined trait at the call site. */
|
|
6951
7347
|
traitName?: string;
|
|
6952
7348
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -7000,6 +7396,9 @@ interface StdServiceMarketplaceParams {
|
|
|
7000
7396
|
entityName: string;
|
|
7001
7397
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
7002
7398
|
fields?: EntityField[];
|
|
7399
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
7400
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
7401
|
+
persistence?: EntityPersistence;
|
|
7003
7402
|
/** Rename the inlined trait at the call site. */
|
|
7004
7403
|
traitName?: string;
|
|
7005
7404
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -7059,6 +7458,9 @@ interface StdServiceResearchAssistantParams {
|
|
|
7059
7458
|
entityName: string;
|
|
7060
7459
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
7061
7460
|
fields?: EntityField[];
|
|
7461
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
7462
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
7463
|
+
persistence?: EntityPersistence;
|
|
7062
7464
|
/** Rename the inlined trait at the call site. */
|
|
7063
7465
|
traitName?: string;
|
|
7064
7466
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -7110,6 +7512,9 @@ interface StdSocialFeedParams {
|
|
|
7110
7512
|
entityName: string;
|
|
7111
7513
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
7112
7514
|
fields?: EntityField[];
|
|
7515
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
7516
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
7517
|
+
persistence?: EntityPersistence;
|
|
7113
7518
|
/** Rename the inlined trait at the call site. */
|
|
7114
7519
|
traitName?: string;
|
|
7115
7520
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -7165,6 +7570,9 @@ interface StdStemLabParams {
|
|
|
7165
7570
|
entityName: string;
|
|
7166
7571
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
7167
7572
|
fields?: EntityField[];
|
|
7573
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
7574
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
7575
|
+
persistence?: EntityPersistence;
|
|
7168
7576
|
/** Rename the inlined trait at the call site. */
|
|
7169
7577
|
traitName?: string;
|
|
7170
7578
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -7216,6 +7624,9 @@ interface StdStrategyGameParams {
|
|
|
7216
7624
|
entityName: string;
|
|
7217
7625
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
7218
7626
|
fields?: EntityField[];
|
|
7627
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
7628
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
7629
|
+
persistence?: EntityPersistence;
|
|
7219
7630
|
/** Rename the inlined trait at the call site. */
|
|
7220
7631
|
traitName?: string;
|
|
7221
7632
|
/** Per-key event rename map (atom key → caller key). */
|
|
@@ -7269,6 +7680,9 @@ interface StdTradingDashboardParams {
|
|
|
7269
7680
|
entityName: string;
|
|
7270
7681
|
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
7271
7682
|
fields?: EntityField[];
|
|
7683
|
+
/** Entity persistence mode. Defaults to `persistent` when omitted.
|
|
7684
|
+
* See @almadar/core EntityPersistence: persistent | runtime | singleton | instance | local. */
|
|
7685
|
+
persistence?: EntityPersistence;
|
|
7272
7686
|
/** Rename the inlined trait at the call site. */
|
|
7273
7687
|
traitName?: string;
|
|
7274
7688
|
/** Per-key event rename map (atom key → caller key). */
|