@almadar/std 3.10.0 → 3.11.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/behaviors/exports-reader.d.ts +4 -31
- package/dist/behaviors/exports-reader.js +21267 -40
- package/dist/behaviors/exports-reader.js.map +1 -1
- package/dist/behaviors/functions/index.js.map +1 -1
- package/dist/behaviors/index.js +1042 -617
- package/dist/behaviors/index.js.map +1 -1
- package/dist/behaviors/query.d.ts +6 -5
- package/dist/behaviors/query.js +21293 -29
- package/dist/behaviors/query.js.map +1 -1
- package/dist/behaviors/types.d.ts +7 -14
- package/dist/behaviors/types.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1367 -616
- package/dist/index.js.map +1 -1
- package/dist/modules/agent.d.ts +21 -0
- package/dist/modules/agent.js +322 -0
- package/dist/modules/agent.js.map +1 -0
- package/dist/modules/array.d.ts +1 -1
- package/dist/modules/async.d.ts +1 -1
- package/dist/modules/contract.d.ts +1 -1
- package/dist/modules/data.d.ts +1 -1
- package/dist/modules/format.d.ts +1 -1
- package/dist/modules/graph.d.ts +1 -1
- package/dist/modules/index.d.ts +2 -1
- package/dist/modules/index.js +320 -1
- package/dist/modules/index.js.map +1 -1
- package/dist/modules/math.d.ts +1 -1
- package/dist/modules/nn.d.ts +1 -1
- package/dist/modules/object.d.ts +1 -1
- package/dist/modules/os.d.ts +1 -1
- package/dist/modules/prob.d.ts +1 -1
- package/dist/modules/str.d.ts +1 -1
- package/dist/modules/tensor.d.ts +1 -1
- package/dist/modules/time.d.ts +1 -1
- package/dist/modules/train.d.ts +1 -1
- package/dist/modules/validate.d.ts +1 -1
- package/dist/registry.d.ts +1 -1
- package/dist/registry.js +321 -2
- package/dist/registry.js.map +1 -1
- package/dist/{types-DOeGXRCm.d.ts → types-BjP5nVQd.d.ts} +3 -3
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { dirname, resolve } from 'path';
|
|
3
|
-
import { fileURLToPath } from 'url';
|
|
4
|
-
import { makeOrbital, makeEntity, makePage, extractTrait, compose, ensureIdField, plural } from '@almadar/core/builders';
|
|
1
|
+
import { wire, plural, pipe, mergeOrbitals, makePage, makeOrbital, makeEntity, extractTrait, ensureIdField, connect, compose } from '@almadar/core/builders';
|
|
5
2
|
export { compose, connect, ensureIdField, extractTrait, makeEntity, makeOrbital, makePage, mergeOrbitals, pipe, plural, wire } from '@almadar/core/builders';
|
|
6
3
|
|
|
4
|
+
var __defProp = Object.defineProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
|
|
7
10
|
// types.ts
|
|
8
11
|
var STD_MODULES = [
|
|
9
12
|
"math",
|
|
@@ -19,6 +22,7 @@ var STD_MODULES = [
|
|
|
19
22
|
"train",
|
|
20
23
|
"prob",
|
|
21
24
|
"os",
|
|
25
|
+
"agent",
|
|
22
26
|
"graph",
|
|
23
27
|
"contract",
|
|
24
28
|
"data"
|
|
@@ -37,6 +41,7 @@ var STD_OPERATOR_CATEGORIES = [
|
|
|
37
41
|
"std-train",
|
|
38
42
|
"std-prob",
|
|
39
43
|
"std-os",
|
|
44
|
+
"std-agent",
|
|
40
45
|
"ml-arch",
|
|
41
46
|
"ml-effect",
|
|
42
47
|
"ml-tensor",
|
|
@@ -3520,6 +3525,322 @@ var OS_OPERATORS = {
|
|
|
3520
3525
|
}
|
|
3521
3526
|
};
|
|
3522
3527
|
|
|
3528
|
+
// modules/agent.ts
|
|
3529
|
+
var AGENT_OPERATORS = {
|
|
3530
|
+
// ==========================================================================
|
|
3531
|
+
// Memory (Pure)
|
|
3532
|
+
// ==========================================================================
|
|
3533
|
+
"agent/recall": {
|
|
3534
|
+
module: "agent",
|
|
3535
|
+
category: "std-agent",
|
|
3536
|
+
minArity: 1,
|
|
3537
|
+
maxArity: 2,
|
|
3538
|
+
description: "Search memories by semantic query. Returns matching AgentMemoryRecord array.",
|
|
3539
|
+
hasSideEffects: false,
|
|
3540
|
+
returnType: "array",
|
|
3541
|
+
params: [
|
|
3542
|
+
{ name: "query", type: "string", description: "Semantic search query" },
|
|
3543
|
+
{ name: "limit", type: "number", description: "Max results to return", optional: true }
|
|
3544
|
+
],
|
|
3545
|
+
example: '["agent/recall", "user prefers dark mode"] => [{id, content, strength, ...}]'
|
|
3546
|
+
},
|
|
3547
|
+
"agent/memories": {
|
|
3548
|
+
module: "agent",
|
|
3549
|
+
category: "std-agent",
|
|
3550
|
+
minArity: 0,
|
|
3551
|
+
maxArity: 1,
|
|
3552
|
+
description: "List all memories, optionally filtered by category.",
|
|
3553
|
+
hasSideEffects: false,
|
|
3554
|
+
returnType: "array",
|
|
3555
|
+
params: [
|
|
3556
|
+
{ name: "category", type: "string", description: "Memory category filter", optional: true }
|
|
3557
|
+
],
|
|
3558
|
+
example: '["agent/memories", "preference"] => [{id, content, category, ...}]'
|
|
3559
|
+
},
|
|
3560
|
+
"agent/memory-strength": {
|
|
3561
|
+
module: "agent",
|
|
3562
|
+
category: "std-agent",
|
|
3563
|
+
minArity: 1,
|
|
3564
|
+
maxArity: 1,
|
|
3565
|
+
description: "Get the strength value (0-1) of a specific memory.",
|
|
3566
|
+
hasSideEffects: false,
|
|
3567
|
+
returnType: "number",
|
|
3568
|
+
params: [
|
|
3569
|
+
{ name: "id", type: "string", description: "Memory record ID" }
|
|
3570
|
+
],
|
|
3571
|
+
example: '["agent/memory-strength", "mem_abc123"] => 0.85'
|
|
3572
|
+
},
|
|
3573
|
+
"agent/is-pinned": {
|
|
3574
|
+
module: "agent",
|
|
3575
|
+
category: "std-agent",
|
|
3576
|
+
minArity: 1,
|
|
3577
|
+
maxArity: 1,
|
|
3578
|
+
description: "Check if a memory is pinned (immune to decay).",
|
|
3579
|
+
hasSideEffects: false,
|
|
3580
|
+
returnType: "boolean",
|
|
3581
|
+
params: [
|
|
3582
|
+
{ name: "id", type: "string", description: "Memory record ID" }
|
|
3583
|
+
],
|
|
3584
|
+
example: '["agent/is-pinned", "mem_abc123"] => true'
|
|
3585
|
+
},
|
|
3586
|
+
// ==========================================================================
|
|
3587
|
+
// LLM (Pure)
|
|
3588
|
+
// ==========================================================================
|
|
3589
|
+
"agent/provider": {
|
|
3590
|
+
module: "agent",
|
|
3591
|
+
category: "std-agent",
|
|
3592
|
+
minArity: 0,
|
|
3593
|
+
maxArity: 0,
|
|
3594
|
+
description: "Get the name of the current LLM provider.",
|
|
3595
|
+
hasSideEffects: false,
|
|
3596
|
+
returnType: "string",
|
|
3597
|
+
params: [],
|
|
3598
|
+
example: '["agent/provider"] => "deepseek"'
|
|
3599
|
+
},
|
|
3600
|
+
"agent/model": {
|
|
3601
|
+
module: "agent",
|
|
3602
|
+
category: "std-agent",
|
|
3603
|
+
minArity: 0,
|
|
3604
|
+
maxArity: 0,
|
|
3605
|
+
description: "Get the name of the current LLM model.",
|
|
3606
|
+
hasSideEffects: false,
|
|
3607
|
+
returnType: "string",
|
|
3608
|
+
params: [],
|
|
3609
|
+
example: '["agent/model"] => "deepseek-chat"'
|
|
3610
|
+
},
|
|
3611
|
+
// ==========================================================================
|
|
3612
|
+
// Tools (Pure)
|
|
3613
|
+
// ==========================================================================
|
|
3614
|
+
"agent/tools": {
|
|
3615
|
+
module: "agent",
|
|
3616
|
+
category: "std-agent",
|
|
3617
|
+
minArity: 0,
|
|
3618
|
+
maxArity: 0,
|
|
3619
|
+
description: "Get the list of available tool names.",
|
|
3620
|
+
hasSideEffects: false,
|
|
3621
|
+
returnType: "array",
|
|
3622
|
+
params: [],
|
|
3623
|
+
example: '["agent/tools"] => ["execute", "validate-schema", "generate-schema"]'
|
|
3624
|
+
},
|
|
3625
|
+
// ==========================================================================
|
|
3626
|
+
// Context (Pure)
|
|
3627
|
+
// ==========================================================================
|
|
3628
|
+
"agent/token-count": {
|
|
3629
|
+
module: "agent",
|
|
3630
|
+
category: "std-agent",
|
|
3631
|
+
minArity: 0,
|
|
3632
|
+
maxArity: 0,
|
|
3633
|
+
description: "Get the current token count in the context window.",
|
|
3634
|
+
hasSideEffects: false,
|
|
3635
|
+
returnType: "number",
|
|
3636
|
+
params: [],
|
|
3637
|
+
example: '["agent/token-count"] => 12450'
|
|
3638
|
+
},
|
|
3639
|
+
"agent/context-usage": {
|
|
3640
|
+
module: "agent",
|
|
3641
|
+
category: "std-agent",
|
|
3642
|
+
minArity: 0,
|
|
3643
|
+
maxArity: 0,
|
|
3644
|
+
description: "Get context window usage as a ratio (0-1).",
|
|
3645
|
+
hasSideEffects: false,
|
|
3646
|
+
returnType: "number",
|
|
3647
|
+
params: [],
|
|
3648
|
+
example: '["agent/context-usage"] => 0.62'
|
|
3649
|
+
},
|
|
3650
|
+
// ==========================================================================
|
|
3651
|
+
// Session (Pure)
|
|
3652
|
+
// ==========================================================================
|
|
3653
|
+
"agent/session-id": {
|
|
3654
|
+
module: "agent",
|
|
3655
|
+
category: "std-agent",
|
|
3656
|
+
minArity: 0,
|
|
3657
|
+
maxArity: 0,
|
|
3658
|
+
description: "Get the current session identifier.",
|
|
3659
|
+
hasSideEffects: false,
|
|
3660
|
+
returnType: "string",
|
|
3661
|
+
params: [],
|
|
3662
|
+
example: '["agent/session-id"] => "sess_a3f2k"'
|
|
3663
|
+
},
|
|
3664
|
+
// ==========================================================================
|
|
3665
|
+
// Memory (Effects)
|
|
3666
|
+
// ==========================================================================
|
|
3667
|
+
"agent/memorize": {
|
|
3668
|
+
module: "agent",
|
|
3669
|
+
category: "std-agent",
|
|
3670
|
+
minArity: 2,
|
|
3671
|
+
maxArity: 3,
|
|
3672
|
+
description: "Store a new memory. Returns the new memory ID.",
|
|
3673
|
+
hasSideEffects: true,
|
|
3674
|
+
returnType: "string",
|
|
3675
|
+
params: [
|
|
3676
|
+
{ name: "content", type: "string", description: "Memory content to store" },
|
|
3677
|
+
{ name: "category", type: "string", description: "Category: preference, correction, pattern-affinity, entity-template, error-resolution" },
|
|
3678
|
+
{ name: "scope", type: "string", description: "Scope: global or project", optional: true, defaultValue: "global" }
|
|
3679
|
+
],
|
|
3680
|
+
example: '["agent/memorize", "user prefers PascalCase", "preference"]'
|
|
3681
|
+
},
|
|
3682
|
+
"agent/forget": {
|
|
3683
|
+
module: "agent",
|
|
3684
|
+
category: "std-agent",
|
|
3685
|
+
minArity: 1,
|
|
3686
|
+
maxArity: 1,
|
|
3687
|
+
description: "Remove a memory by ID.",
|
|
3688
|
+
hasSideEffects: true,
|
|
3689
|
+
returnType: "void",
|
|
3690
|
+
params: [
|
|
3691
|
+
{ name: "id", type: "string", description: "Memory record ID to remove" }
|
|
3692
|
+
],
|
|
3693
|
+
example: '["agent/forget", "mem_abc123"]'
|
|
3694
|
+
},
|
|
3695
|
+
"agent/pin": {
|
|
3696
|
+
module: "agent",
|
|
3697
|
+
category: "std-agent",
|
|
3698
|
+
minArity: 1,
|
|
3699
|
+
maxArity: 1,
|
|
3700
|
+
description: "Pin a memory to prevent decay.",
|
|
3701
|
+
hasSideEffects: true,
|
|
3702
|
+
returnType: "void",
|
|
3703
|
+
params: [
|
|
3704
|
+
{ name: "id", type: "string", description: "Memory record ID to pin" }
|
|
3705
|
+
],
|
|
3706
|
+
example: '["agent/pin", "mem_abc123"]'
|
|
3707
|
+
},
|
|
3708
|
+
"agent/reinforce": {
|
|
3709
|
+
module: "agent",
|
|
3710
|
+
category: "std-agent",
|
|
3711
|
+
minArity: 1,
|
|
3712
|
+
maxArity: 1,
|
|
3713
|
+
description: "Increase a memory's strength (reinforcement learning signal).",
|
|
3714
|
+
hasSideEffects: true,
|
|
3715
|
+
returnType: "void",
|
|
3716
|
+
params: [
|
|
3717
|
+
{ name: "id", type: "string", description: "Memory record ID to reinforce" }
|
|
3718
|
+
],
|
|
3719
|
+
example: '["agent/reinforce", "mem_abc123"]'
|
|
3720
|
+
},
|
|
3721
|
+
"agent/decay": {
|
|
3722
|
+
module: "agent",
|
|
3723
|
+
category: "std-agent",
|
|
3724
|
+
minArity: 0,
|
|
3725
|
+
maxArity: 0,
|
|
3726
|
+
description: "Apply strength decay to all unpinned memories. Returns count of forgotten memories.",
|
|
3727
|
+
hasSideEffects: true,
|
|
3728
|
+
returnType: "number",
|
|
3729
|
+
params: [],
|
|
3730
|
+
example: '["agent/decay"] => 15'
|
|
3731
|
+
},
|
|
3732
|
+
// ==========================================================================
|
|
3733
|
+
// LLM (Effects)
|
|
3734
|
+
// ==========================================================================
|
|
3735
|
+
"agent/generate": {
|
|
3736
|
+
module: "agent",
|
|
3737
|
+
category: "std-agent",
|
|
3738
|
+
minArity: 1,
|
|
3739
|
+
maxArity: 2,
|
|
3740
|
+
description: "Generate text from the LLM. Returns generated string.",
|
|
3741
|
+
hasSideEffects: true,
|
|
3742
|
+
returnType: "string",
|
|
3743
|
+
params: [
|
|
3744
|
+
{ name: "prompt", type: "string", description: "Prompt text to send to LLM" },
|
|
3745
|
+
{ name: "options", type: "object", description: "Options: { provider?, model?, maxTokens? }", optional: true }
|
|
3746
|
+
],
|
|
3747
|
+
example: '["agent/generate", "Summarize the user request"]'
|
|
3748
|
+
},
|
|
3749
|
+
"agent/switch-provider": {
|
|
3750
|
+
module: "agent",
|
|
3751
|
+
category: "std-agent",
|
|
3752
|
+
minArity: 1,
|
|
3753
|
+
maxArity: 2,
|
|
3754
|
+
description: "Switch the active LLM provider and optionally the model.",
|
|
3755
|
+
hasSideEffects: true,
|
|
3756
|
+
returnType: "void",
|
|
3757
|
+
params: [
|
|
3758
|
+
{ name: "provider", type: "string", description: 'Provider name (e.g., "deepseek", "openai", "anthropic")' },
|
|
3759
|
+
{ name: "model", type: "string", description: "Model name override", optional: true }
|
|
3760
|
+
],
|
|
3761
|
+
example: '["agent/switch-provider", "openai", "gpt-4o"]'
|
|
3762
|
+
},
|
|
3763
|
+
// ==========================================================================
|
|
3764
|
+
// Tools (Effects)
|
|
3765
|
+
// ==========================================================================
|
|
3766
|
+
"agent/invoke": {
|
|
3767
|
+
module: "agent",
|
|
3768
|
+
category: "std-agent",
|
|
3769
|
+
minArity: 2,
|
|
3770
|
+
maxArity: 2,
|
|
3771
|
+
description: "Invoke a tool by name with arguments. Returns tool result.",
|
|
3772
|
+
hasSideEffects: true,
|
|
3773
|
+
returnType: "any",
|
|
3774
|
+
params: [
|
|
3775
|
+
{ name: "toolName", type: "string", description: "Name of the tool to invoke" },
|
|
3776
|
+
{ name: "args", type: "object", description: "Arguments to pass to the tool" }
|
|
3777
|
+
],
|
|
3778
|
+
example: '["agent/invoke", "validate-schema", {"schema": "@entity"}]'
|
|
3779
|
+
},
|
|
3780
|
+
// ==========================================================================
|
|
3781
|
+
// Context (Effects)
|
|
3782
|
+
// ==========================================================================
|
|
3783
|
+
"agent/compact": {
|
|
3784
|
+
module: "agent",
|
|
3785
|
+
category: "std-agent",
|
|
3786
|
+
minArity: 0,
|
|
3787
|
+
maxArity: 1,
|
|
3788
|
+
description: "Compact the context window. Returns { before, after, strategy, summary? }.",
|
|
3789
|
+
hasSideEffects: true,
|
|
3790
|
+
returnType: "object",
|
|
3791
|
+
params: [
|
|
3792
|
+
{ name: "strategy", type: "string", description: "Strategy: hybrid, summarize, truncate, extract", optional: true, defaultValue: "hybrid" }
|
|
3793
|
+
],
|
|
3794
|
+
example: '["agent/compact", "summarize"] => {before: 50000, after: 12000, ...}'
|
|
3795
|
+
},
|
|
3796
|
+
// ==========================================================================
|
|
3797
|
+
// Session (Effects)
|
|
3798
|
+
// ==========================================================================
|
|
3799
|
+
"agent/fork": {
|
|
3800
|
+
module: "agent",
|
|
3801
|
+
category: "std-agent",
|
|
3802
|
+
minArity: 0,
|
|
3803
|
+
maxArity: 1,
|
|
3804
|
+
description: "Fork the current session. Returns new session ID.",
|
|
3805
|
+
hasSideEffects: true,
|
|
3806
|
+
returnType: "string",
|
|
3807
|
+
params: [
|
|
3808
|
+
{ name: "label", type: "string", description: "Optional label for the fork point", optional: true }
|
|
3809
|
+
],
|
|
3810
|
+
example: '["agent/fork", "before-refactor"] => "sess_fork_x7k2m"'
|
|
3811
|
+
},
|
|
3812
|
+
"agent/label": {
|
|
3813
|
+
module: "agent",
|
|
3814
|
+
category: "std-agent",
|
|
3815
|
+
minArity: 1,
|
|
3816
|
+
maxArity: 1,
|
|
3817
|
+
description: "Label the current session checkpoint for later reference.",
|
|
3818
|
+
hasSideEffects: true,
|
|
3819
|
+
returnType: "void",
|
|
3820
|
+
params: [
|
|
3821
|
+
{ name: "text", type: "string", description: "Label text for the checkpoint" }
|
|
3822
|
+
],
|
|
3823
|
+
example: '["agent/label", "schema-v2-complete"]'
|
|
3824
|
+
},
|
|
3825
|
+
// ==========================================================================
|
|
3826
|
+
// Search (Effects)
|
|
3827
|
+
// ==========================================================================
|
|
3828
|
+
"agent/search-code": {
|
|
3829
|
+
module: "agent",
|
|
3830
|
+
category: "std-agent",
|
|
3831
|
+
minArity: 1,
|
|
3832
|
+
maxArity: 2,
|
|
3833
|
+
description: "Search code repositories. Returns array of { repo, path, url }.",
|
|
3834
|
+
hasSideEffects: true,
|
|
3835
|
+
returnType: "array",
|
|
3836
|
+
params: [
|
|
3837
|
+
{ name: "query", type: "string", description: "Code search query" },
|
|
3838
|
+
{ name: "language", type: "string", description: "Programming language filter", optional: true }
|
|
3839
|
+
],
|
|
3840
|
+
example: '["agent/search-code", "orbital schema validation", "typescript"]'
|
|
3841
|
+
}
|
|
3842
|
+
};
|
|
3843
|
+
|
|
3523
3844
|
// registry.ts
|
|
3524
3845
|
var STD_OPERATORS = {
|
|
3525
3846
|
...MATH_OPERATORS,
|
|
@@ -3534,7 +3855,8 @@ var STD_OPERATORS = {
|
|
|
3534
3855
|
...TENSOR_OPERATORS,
|
|
3535
3856
|
...TRAIN_OPERATORS,
|
|
3536
3857
|
...PROB_OPERATORS,
|
|
3537
|
-
...OS_OPERATORS
|
|
3858
|
+
...OS_OPERATORS,
|
|
3859
|
+
...AGENT_OPERATORS
|
|
3538
3860
|
};
|
|
3539
3861
|
var STD_OPERATORS_BY_MODULE = {
|
|
3540
3862
|
math: MATH_OPERATORS,
|
|
@@ -3549,7 +3871,8 @@ var STD_OPERATORS_BY_MODULE = {
|
|
|
3549
3871
|
tensor: TENSOR_OPERATORS,
|
|
3550
3872
|
train: TRAIN_OPERATORS,
|
|
3551
3873
|
prob: PROB_OPERATORS,
|
|
3552
|
-
os: OS_OPERATORS
|
|
3874
|
+
os: OS_OPERATORS,
|
|
3875
|
+
agent: AGENT_OPERATORS
|
|
3553
3876
|
};
|
|
3554
3877
|
function getStdOperatorMeta(operator) {
|
|
3555
3878
|
return STD_OPERATORS[operator];
|
|
@@ -3715,163 +4038,416 @@ function validateBehaviorStates(behavior) {
|
|
|
3715
4038
|
}
|
|
3716
4039
|
return errors;
|
|
3717
4040
|
}
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
var
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
|
|
3734
|
-
|
|
3735
|
-
|
|
3736
|
-
|
|
3737
|
-
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
)
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
)
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3807
|
-
|
|
3808
|
-
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
|
|
3812
|
-
|
|
3813
|
-
|
|
3814
|
-
|
|
3815
|
-
|
|
3816
|
-
|
|
3817
|
-
|
|
3818
|
-
|
|
3819
|
-
|
|
3820
|
-
|
|
3821
|
-
|
|
3822
|
-
|
|
3823
|
-
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
|
|
3831
|
-
|
|
3832
|
-
|
|
3833
|
-
|
|
3834
|
-
|
|
3835
|
-
|
|
3836
|
-
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
4041
|
+
|
|
4042
|
+
// behaviors/functions/index.ts
|
|
4043
|
+
var functions_exports = {};
|
|
4044
|
+
__export(functions_exports, {
|
|
4045
|
+
compose: () => compose,
|
|
4046
|
+
connect: () => connect,
|
|
4047
|
+
ensureIdField: () => ensureIdField,
|
|
4048
|
+
extractTrait: () => extractTrait,
|
|
4049
|
+
makeEntity: () => makeEntity,
|
|
4050
|
+
makeOrbital: () => makeOrbital,
|
|
4051
|
+
makePage: () => makePage,
|
|
4052
|
+
mergeOrbitals: () => mergeOrbitals,
|
|
4053
|
+
pipe: () => pipe,
|
|
4054
|
+
plural: () => plural,
|
|
4055
|
+
stdApiGateway: () => stdApiGateway,
|
|
4056
|
+
stdArcadeGame: () => stdArcadeGame,
|
|
4057
|
+
stdAsync: () => stdAsync,
|
|
4058
|
+
stdAsyncEntity: () => stdAsyncEntity,
|
|
4059
|
+
stdAsyncPage: () => stdAsyncPage,
|
|
4060
|
+
stdAsyncTrait: () => stdAsyncTrait,
|
|
4061
|
+
stdAutoregressive: () => stdAutoregressive,
|
|
4062
|
+
stdAutoregressiveEntity: () => stdAutoregressiveEntity,
|
|
4063
|
+
stdAutoregressivePage: () => stdAutoregressivePage,
|
|
4064
|
+
stdAutoregressiveTrait: () => stdAutoregressiveTrait,
|
|
4065
|
+
stdBookingSystem: () => stdBookingSystem,
|
|
4066
|
+
stdBrowse: () => stdBrowse,
|
|
4067
|
+
stdBrowseEntity: () => stdBrowseEntity,
|
|
4068
|
+
stdBrowsePage: () => stdBrowsePage,
|
|
4069
|
+
stdBrowseTrait: () => stdBrowseTrait,
|
|
4070
|
+
stdBuilderGame: () => stdBuilderGame,
|
|
4071
|
+
stdBuilderGameEntity: () => stdBuilderGameEntity,
|
|
4072
|
+
stdBuilderGamePage: () => stdBuilderGamePage,
|
|
4073
|
+
stdBuilderGameTrait: () => stdBuilderGameTrait,
|
|
4074
|
+
stdCacheAside: () => stdCacheAside,
|
|
4075
|
+
stdCacheAsideEntity: () => stdCacheAsideEntity,
|
|
4076
|
+
stdCacheAsidePage: () => stdCacheAsidePage,
|
|
4077
|
+
stdCacheAsideTrait: () => stdCacheAsideTrait,
|
|
4078
|
+
stdCalendar: () => stdCalendar,
|
|
4079
|
+
stdCalendarEntity: () => stdCalendarEntity,
|
|
4080
|
+
stdCalendarPage: () => stdCalendarPage,
|
|
4081
|
+
stdCalendarTrait: () => stdCalendarTrait,
|
|
4082
|
+
stdCart: () => stdCart,
|
|
4083
|
+
stdCartEntity: () => stdCartEntity,
|
|
4084
|
+
stdCartPage: () => stdCartPage,
|
|
4085
|
+
stdCartTrait: () => stdCartTrait,
|
|
4086
|
+
stdCicdPipeline: () => stdCicdPipeline,
|
|
4087
|
+
stdCircuitBreaker: () => stdCircuitBreaker,
|
|
4088
|
+
stdCircuitBreakerEntity: () => stdCircuitBreakerEntity,
|
|
4089
|
+
stdCircuitBreakerPage: () => stdCircuitBreakerPage,
|
|
4090
|
+
stdCircuitBreakerTrait: () => stdCircuitBreakerTrait,
|
|
4091
|
+
stdClassifier: () => stdClassifier,
|
|
4092
|
+
stdClassifierEntity: () => stdClassifierEntity,
|
|
4093
|
+
stdClassifierGame: () => stdClassifierGame,
|
|
4094
|
+
stdClassifierGameEntity: () => stdClassifierGameEntity,
|
|
4095
|
+
stdClassifierGamePage: () => stdClassifierGamePage,
|
|
4096
|
+
stdClassifierGameTrait: () => stdClassifierGameTrait,
|
|
4097
|
+
stdClassifierPage: () => stdClassifierPage,
|
|
4098
|
+
stdClassifierTrait: () => stdClassifierTrait,
|
|
4099
|
+
stdCms: () => stdCms,
|
|
4100
|
+
stdCodingAcademy: () => stdCodingAcademy,
|
|
4101
|
+
stdCollision: () => stdCollision,
|
|
4102
|
+
stdCollisionEntity: () => stdCollisionEntity,
|
|
4103
|
+
stdCollisionPage: () => stdCollisionPage,
|
|
4104
|
+
stdCollisionTrait: () => stdCollisionTrait,
|
|
4105
|
+
stdCombat: () => stdCombat,
|
|
4106
|
+
stdCombatEntity: () => stdCombatEntity,
|
|
4107
|
+
stdCombatLog: () => stdCombatLog,
|
|
4108
|
+
stdCombatLogEntity: () => stdCombatLogEntity,
|
|
4109
|
+
stdCombatLogPage: () => stdCombatLogPage,
|
|
4110
|
+
stdCombatLogTrait: () => stdCombatLogTrait,
|
|
4111
|
+
stdCombatPage: () => stdCombatPage,
|
|
4112
|
+
stdCombatTrait: () => stdCombatTrait,
|
|
4113
|
+
stdConfirmation: () => stdConfirmation,
|
|
4114
|
+
stdConfirmationEntity: () => stdConfirmationEntity,
|
|
4115
|
+
stdConfirmationPage: () => stdConfirmationPage,
|
|
4116
|
+
stdConfirmationTrait: () => stdConfirmationTrait,
|
|
4117
|
+
stdCrm: () => stdCrm,
|
|
4118
|
+
stdDebuggerGame: () => stdDebuggerGame,
|
|
4119
|
+
stdDebuggerGameEntity: () => stdDebuggerGameEntity,
|
|
4120
|
+
stdDebuggerGamePage: () => stdDebuggerGamePage,
|
|
4121
|
+
stdDebuggerGameTrait: () => stdDebuggerGameTrait,
|
|
4122
|
+
stdDetail: () => stdDetail,
|
|
4123
|
+
stdDetailEntity: () => stdDetailEntity,
|
|
4124
|
+
stdDetailPage: () => stdDetailPage,
|
|
4125
|
+
stdDetailTrait: () => stdDetailTrait,
|
|
4126
|
+
stdDevopsDashboard: () => stdDevopsDashboard,
|
|
4127
|
+
stdDialogueBox: () => stdDialogueBox,
|
|
4128
|
+
stdDialogueBoxEntity: () => stdDialogueBoxEntity,
|
|
4129
|
+
stdDialogueBoxPage: () => stdDialogueBoxPage,
|
|
4130
|
+
stdDialogueBoxTrait: () => stdDialogueBoxTrait,
|
|
4131
|
+
stdDisplay: () => stdDisplay,
|
|
4132
|
+
stdDisplayEntity: () => stdDisplayEntity,
|
|
4133
|
+
stdDisplayPage: () => stdDisplayPage,
|
|
4134
|
+
stdDisplayTrait: () => stdDisplayTrait,
|
|
4135
|
+
stdDrawer: () => stdDrawer,
|
|
4136
|
+
stdDrawerEntity: () => stdDrawerEntity,
|
|
4137
|
+
stdDrawerPage: () => stdDrawerPage,
|
|
4138
|
+
stdDrawerTrait: () => stdDrawerTrait,
|
|
4139
|
+
stdEcommerce: () => stdEcommerce,
|
|
4140
|
+
stdEventHandlerGame: () => stdEventHandlerGame,
|
|
4141
|
+
stdEventHandlerGameEntity: () => stdEventHandlerGameEntity,
|
|
4142
|
+
stdEventHandlerGamePage: () => stdEventHandlerGamePage,
|
|
4143
|
+
stdEventHandlerGameTrait: () => stdEventHandlerGameTrait,
|
|
4144
|
+
stdFilter: () => stdFilter,
|
|
4145
|
+
stdFilterEntity: () => stdFilterEntity,
|
|
4146
|
+
stdFilterPage: () => stdFilterPage,
|
|
4147
|
+
stdFilterTrait: () => stdFilterTrait,
|
|
4148
|
+
stdFinanceTracker: () => stdFinanceTracker,
|
|
4149
|
+
stdFlipCard: () => stdFlipCard,
|
|
4150
|
+
stdFlipCardEntity: () => stdFlipCardEntity,
|
|
4151
|
+
stdFlipCardPage: () => stdFlipCardPage,
|
|
4152
|
+
stdFlipCardTrait: () => stdFlipCardTrait,
|
|
4153
|
+
stdFormAdvanced: () => stdFormAdvanced,
|
|
4154
|
+
stdFormAdvancedEntity: () => stdFormAdvancedEntity,
|
|
4155
|
+
stdFormAdvancedPage: () => stdFormAdvancedPage,
|
|
4156
|
+
stdFormAdvancedTrait: () => stdFormAdvancedTrait,
|
|
4157
|
+
stdGallery: () => stdGallery,
|
|
4158
|
+
stdGalleryEntity: () => stdGalleryEntity,
|
|
4159
|
+
stdGalleryPage: () => stdGalleryPage,
|
|
4160
|
+
stdGalleryTrait: () => stdGalleryTrait,
|
|
4161
|
+
stdGameAudio: () => stdGameAudio,
|
|
4162
|
+
stdGameAudioEntity: () => stdGameAudioEntity,
|
|
4163
|
+
stdGameAudioPage: () => stdGameAudioPage,
|
|
4164
|
+
stdGameAudioTrait: () => stdGameAudioTrait,
|
|
4165
|
+
stdGameCanvas2d: () => stdGameCanvas2d,
|
|
4166
|
+
stdGameCanvas2dEntity: () => stdGameCanvas2dEntity,
|
|
4167
|
+
stdGameCanvas2dPage: () => stdGameCanvas2dPage,
|
|
4168
|
+
stdGameCanvas2dTrait: () => stdGameCanvas2dTrait,
|
|
4169
|
+
stdGameCanvas3d: () => stdGameCanvas3d,
|
|
4170
|
+
stdGameCanvas3dEntity: () => stdGameCanvas3dEntity,
|
|
4171
|
+
stdGameCanvas3dPage: () => stdGameCanvas3dPage,
|
|
4172
|
+
stdGameCanvas3dTrait: () => stdGameCanvas3dTrait,
|
|
4173
|
+
stdGameHud: () => stdGameHud,
|
|
4174
|
+
stdGameHudEntity: () => stdGameHudEntity,
|
|
4175
|
+
stdGameHudPage: () => stdGameHudPage,
|
|
4176
|
+
stdGameHudTrait: () => stdGameHudTrait,
|
|
4177
|
+
stdGameMenu: () => stdGameMenu,
|
|
4178
|
+
stdGameMenuEntity: () => stdGameMenuEntity,
|
|
4179
|
+
stdGameMenuPage: () => stdGameMenuPage,
|
|
4180
|
+
stdGameMenuTrait: () => stdGameMenuTrait,
|
|
4181
|
+
stdGameOverScreen: () => stdGameOverScreen,
|
|
4182
|
+
stdGameOverScreenEntity: () => stdGameOverScreenEntity,
|
|
4183
|
+
stdGameOverScreenPage: () => stdGameOverScreenPage,
|
|
4184
|
+
stdGameOverScreenTrait: () => stdGameOverScreenTrait,
|
|
4185
|
+
stdGameflow: () => stdGameflow,
|
|
4186
|
+
stdGameflowEntity: () => stdGameflowEntity,
|
|
4187
|
+
stdGameflowPage: () => stdGameflowPage,
|
|
4188
|
+
stdGameflowTrait: () => stdGameflowTrait,
|
|
4189
|
+
stdGeospatial: () => stdGeospatial,
|
|
4190
|
+
stdGeospatialEntity: () => stdGeospatialEntity,
|
|
4191
|
+
stdGeospatialPage: () => stdGeospatialPage,
|
|
4192
|
+
stdGeospatialTrait: () => stdGeospatialTrait,
|
|
4193
|
+
stdGraphClassifier: () => stdGraphClassifier,
|
|
4194
|
+
stdGraphClassifierEntity: () => stdGraphClassifierEntity,
|
|
4195
|
+
stdGraphClassifierPage: () => stdGraphClassifierPage,
|
|
4196
|
+
stdGraphClassifierTrait: () => stdGraphClassifierTrait,
|
|
4197
|
+
stdHealthcare: () => stdHealthcare,
|
|
4198
|
+
stdHelpdesk: () => stdHelpdesk,
|
|
4199
|
+
stdHrPortal: () => stdHrPortal,
|
|
4200
|
+
stdInput: () => stdInput,
|
|
4201
|
+
stdInputEntity: () => stdInputEntity,
|
|
4202
|
+
stdInputPage: () => stdInputPage,
|
|
4203
|
+
stdInputTrait: () => stdInputTrait,
|
|
4204
|
+
stdInventory: () => stdInventory,
|
|
4205
|
+
stdInventoryEntity: () => stdInventoryEntity,
|
|
4206
|
+
stdInventoryPage: () => stdInventoryPage,
|
|
4207
|
+
stdInventoryPanel: () => stdInventoryPanel,
|
|
4208
|
+
stdInventoryPanelEntity: () => stdInventoryPanelEntity,
|
|
4209
|
+
stdInventoryPanelPage: () => stdInventoryPanelPage,
|
|
4210
|
+
stdInventoryPanelTrait: () => stdInventoryPanelTrait,
|
|
4211
|
+
stdInventoryTrait: () => stdInventoryTrait,
|
|
4212
|
+
stdIotDashboard: () => stdIotDashboard,
|
|
4213
|
+
stdIsometricCanvas: () => stdIsometricCanvas,
|
|
4214
|
+
stdIsometricCanvasEntity: () => stdIsometricCanvasEntity,
|
|
4215
|
+
stdIsometricCanvasPage: () => stdIsometricCanvasPage,
|
|
4216
|
+
stdIsometricCanvasTrait: () => stdIsometricCanvasTrait,
|
|
4217
|
+
stdList: () => stdList,
|
|
4218
|
+
stdListEntity: () => stdListEntity,
|
|
4219
|
+
stdListPage: () => stdListPage,
|
|
4220
|
+
stdListTrait: () => stdListTrait,
|
|
4221
|
+
stdLms: () => stdLms,
|
|
4222
|
+
stdLoading: () => stdLoading,
|
|
4223
|
+
stdLoadingEntity: () => stdLoadingEntity,
|
|
4224
|
+
stdLoadingPage: () => stdLoadingPage,
|
|
4225
|
+
stdLoadingTrait: () => stdLoadingTrait,
|
|
4226
|
+
stdLogicTraining: () => stdLogicTraining,
|
|
4227
|
+
stdMessaging: () => stdMessaging,
|
|
4228
|
+
stdMessagingEntity: () => stdMessagingEntity,
|
|
4229
|
+
stdMessagingPage: () => stdMessagingPage,
|
|
4230
|
+
stdMessagingTrait: () => stdMessagingTrait,
|
|
4231
|
+
stdModal: () => stdModal,
|
|
4232
|
+
stdModalEntity: () => stdModalEntity,
|
|
4233
|
+
stdModalPage: () => stdModalPage,
|
|
4234
|
+
stdModalTrait: () => stdModalTrait,
|
|
4235
|
+
stdMovement: () => stdMovement,
|
|
4236
|
+
stdMovementEntity: () => stdMovementEntity,
|
|
4237
|
+
stdMovementPage: () => stdMovementPage,
|
|
4238
|
+
stdMovementTrait: () => stdMovementTrait,
|
|
4239
|
+
stdNegotiatorGame: () => stdNegotiatorGame,
|
|
4240
|
+
stdNegotiatorGameEntity: () => stdNegotiatorGameEntity,
|
|
4241
|
+
stdNegotiatorGamePage: () => stdNegotiatorGamePage,
|
|
4242
|
+
stdNegotiatorGameTrait: () => stdNegotiatorGameTrait,
|
|
4243
|
+
stdNotification: () => stdNotification,
|
|
4244
|
+
stdNotificationEntity: () => stdNotificationEntity,
|
|
4245
|
+
stdNotificationPage: () => stdNotificationPage,
|
|
4246
|
+
stdNotificationTrait: () => stdNotificationTrait,
|
|
4247
|
+
stdOverworld: () => stdOverworld,
|
|
4248
|
+
stdOverworldEntity: () => stdOverworldEntity,
|
|
4249
|
+
stdOverworldPage: () => stdOverworldPage,
|
|
4250
|
+
stdOverworldTrait: () => stdOverworldTrait,
|
|
4251
|
+
stdPagination: () => stdPagination,
|
|
4252
|
+
stdPaginationEntity: () => stdPaginationEntity,
|
|
4253
|
+
stdPaginationPage: () => stdPaginationPage,
|
|
4254
|
+
stdPaginationTrait: () => stdPaginationTrait,
|
|
4255
|
+
stdPhysics2d: () => stdPhysics2d,
|
|
4256
|
+
stdPhysics2dEntity: () => stdPhysics2dEntity,
|
|
4257
|
+
stdPhysics2dPage: () => stdPhysics2dPage,
|
|
4258
|
+
stdPhysics2dTrait: () => stdPhysics2dTrait,
|
|
4259
|
+
stdPlatformerApp: () => stdPlatformerApp,
|
|
4260
|
+
stdPlatformerCanvas: () => stdPlatformerCanvas,
|
|
4261
|
+
stdPlatformerCanvasEntity: () => stdPlatformerCanvasEntity,
|
|
4262
|
+
stdPlatformerCanvasPage: () => stdPlatformerCanvasPage,
|
|
4263
|
+
stdPlatformerCanvasTrait: () => stdPlatformerCanvasTrait,
|
|
4264
|
+
stdPlatformerGame: () => stdPlatformerGame,
|
|
4265
|
+
stdPlatformerGameEntity: () => stdPlatformerGameEntity,
|
|
4266
|
+
stdPlatformerGamePage: () => stdPlatformerGamePage,
|
|
4267
|
+
stdPlatformerGameTrait: () => stdPlatformerGameTrait,
|
|
4268
|
+
stdProjectManager: () => stdProjectManager,
|
|
4269
|
+
stdPuzzleApp: () => stdPuzzleApp,
|
|
4270
|
+
stdPuzzleGame: () => stdPuzzleGame,
|
|
4271
|
+
stdPuzzleGameEntity: () => stdPuzzleGameEntity,
|
|
4272
|
+
stdPuzzleGamePage: () => stdPuzzleGamePage,
|
|
4273
|
+
stdPuzzleGameTrait: () => stdPuzzleGameTrait,
|
|
4274
|
+
stdQuest: () => stdQuest,
|
|
4275
|
+
stdQuestEntity: () => stdQuestEntity,
|
|
4276
|
+
stdQuestPage: () => stdQuestPage,
|
|
4277
|
+
stdQuestTrait: () => stdQuestTrait,
|
|
4278
|
+
stdQuiz: () => stdQuiz,
|
|
4279
|
+
stdQuizEntity: () => stdQuizEntity,
|
|
4280
|
+
stdQuizPage: () => stdQuizPage,
|
|
4281
|
+
stdQuizTrait: () => stdQuizTrait,
|
|
4282
|
+
stdRateLimiter: () => stdRateLimiter,
|
|
4283
|
+
stdRateLimiterEntity: () => stdRateLimiterEntity,
|
|
4284
|
+
stdRateLimiterPage: () => stdRateLimiterPage,
|
|
4285
|
+
stdRateLimiterTrait: () => stdRateLimiterTrait,
|
|
4286
|
+
stdRating: () => stdRating,
|
|
4287
|
+
stdRatingEntity: () => stdRatingEntity,
|
|
4288
|
+
stdRatingPage: () => stdRatingPage,
|
|
4289
|
+
stdRatingTrait: () => stdRatingTrait,
|
|
4290
|
+
stdRealtimeChat: () => stdRealtimeChat,
|
|
4291
|
+
stdRlAgent: () => stdRlAgent,
|
|
4292
|
+
stdRlAgentEntity: () => stdRlAgentEntity,
|
|
4293
|
+
stdRlAgentPage: () => stdRlAgentPage,
|
|
4294
|
+
stdRlAgentTrait: () => stdRlAgentTrait,
|
|
4295
|
+
stdRpgGame: () => stdRpgGame,
|
|
4296
|
+
stdScore: () => stdScore,
|
|
4297
|
+
stdScoreBoard: () => stdScoreBoard,
|
|
4298
|
+
stdScoreBoardEntity: () => stdScoreBoardEntity,
|
|
4299
|
+
stdScoreBoardPage: () => stdScoreBoardPage,
|
|
4300
|
+
stdScoreBoardTrait: () => stdScoreBoardTrait,
|
|
4301
|
+
stdScoreEntity: () => stdScoreEntity,
|
|
4302
|
+
stdScorePage: () => stdScorePage,
|
|
4303
|
+
stdScoreTrait: () => stdScoreTrait,
|
|
4304
|
+
stdSearch: () => stdSearch,
|
|
4305
|
+
stdSearchEntity: () => stdSearchEntity,
|
|
4306
|
+
stdSearchPage: () => stdSearchPage,
|
|
4307
|
+
stdSearchTrait: () => stdSearchTrait,
|
|
4308
|
+
stdSelection: () => stdSelection,
|
|
4309
|
+
stdSelectionEntity: () => stdSelectionEntity,
|
|
4310
|
+
stdSelectionPage: () => stdSelectionPage,
|
|
4311
|
+
stdSelectionTrait: () => stdSelectionTrait,
|
|
4312
|
+
stdSequencerGame: () => stdSequencerGame,
|
|
4313
|
+
stdSequencerGameEntity: () => stdSequencerGameEntity,
|
|
4314
|
+
stdSequencerGamePage: () => stdSequencerGamePage,
|
|
4315
|
+
stdSequencerGameTrait: () => stdSequencerGameTrait,
|
|
4316
|
+
stdServiceContentPipeline: () => stdServiceContentPipeline,
|
|
4317
|
+
stdServiceContentPipelineEntity: () => stdServiceContentPipelineEntity,
|
|
4318
|
+
stdServiceContentPipelinePage: () => stdServiceContentPipelinePage,
|
|
4319
|
+
stdServiceContentPipelineTrait: () => stdServiceContentPipelineTrait,
|
|
4320
|
+
stdServiceCustomApiTester: () => stdServiceCustomApiTester,
|
|
4321
|
+
stdServiceCustomApiTesterEntity: () => stdServiceCustomApiTesterEntity,
|
|
4322
|
+
stdServiceCustomApiTesterPage: () => stdServiceCustomApiTesterPage,
|
|
4323
|
+
stdServiceCustomApiTesterTrait: () => stdServiceCustomApiTesterTrait,
|
|
4324
|
+
stdServiceCustomBearer: () => stdServiceCustomBearer,
|
|
4325
|
+
stdServiceCustomBearerEntity: () => stdServiceCustomBearerEntity,
|
|
4326
|
+
stdServiceCustomBearerPage: () => stdServiceCustomBearerPage,
|
|
4327
|
+
stdServiceCustomBearerTrait: () => stdServiceCustomBearerTrait,
|
|
4328
|
+
stdServiceCustomHeader: () => stdServiceCustomHeader,
|
|
4329
|
+
stdServiceCustomHeaderEntity: () => stdServiceCustomHeaderEntity,
|
|
4330
|
+
stdServiceCustomHeaderPage: () => stdServiceCustomHeaderPage,
|
|
4331
|
+
stdServiceCustomHeaderTrait: () => stdServiceCustomHeaderTrait,
|
|
4332
|
+
stdServiceCustomNoauth: () => stdServiceCustomNoauth,
|
|
4333
|
+
stdServiceCustomNoauthEntity: () => stdServiceCustomNoauthEntity,
|
|
4334
|
+
stdServiceCustomNoauthPage: () => stdServiceCustomNoauthPage,
|
|
4335
|
+
stdServiceCustomNoauthTrait: () => stdServiceCustomNoauthTrait,
|
|
4336
|
+
stdServiceCustomQuery: () => stdServiceCustomQuery,
|
|
4337
|
+
stdServiceCustomQueryEntity: () => stdServiceCustomQueryEntity,
|
|
4338
|
+
stdServiceCustomQueryPage: () => stdServiceCustomQueryPage,
|
|
4339
|
+
stdServiceCustomQueryTrait: () => stdServiceCustomQueryTrait,
|
|
4340
|
+
stdServiceDevopsToolkit: () => stdServiceDevopsToolkit,
|
|
4341
|
+
stdServiceDevopsToolkitEntity: () => stdServiceDevopsToolkitEntity,
|
|
4342
|
+
stdServiceDevopsToolkitPage: () => stdServiceDevopsToolkitPage,
|
|
4343
|
+
stdServiceEmail: () => stdServiceEmail,
|
|
4344
|
+
stdServiceEmailEntity: () => stdServiceEmailEntity,
|
|
4345
|
+
stdServiceEmailPage: () => stdServiceEmailPage,
|
|
4346
|
+
stdServiceEmailTrait: () => stdServiceEmailTrait,
|
|
4347
|
+
stdServiceGithub: () => stdServiceGithub,
|
|
4348
|
+
stdServiceGithubEntity: () => stdServiceGithubEntity,
|
|
4349
|
+
stdServiceGithubPage: () => stdServiceGithubPage,
|
|
4350
|
+
stdServiceGithubTrait: () => stdServiceGithubTrait,
|
|
4351
|
+
stdServiceLlm: () => stdServiceLlm,
|
|
4352
|
+
stdServiceLlmEntity: () => stdServiceLlmEntity,
|
|
4353
|
+
stdServiceLlmPage: () => stdServiceLlmPage,
|
|
4354
|
+
stdServiceLlmTrait: () => stdServiceLlmTrait,
|
|
4355
|
+
stdServiceMarketplace: () => stdServiceMarketplace,
|
|
4356
|
+
stdServiceNotificationHub: () => stdServiceNotificationHub,
|
|
4357
|
+
stdServiceNotificationHubEntity: () => stdServiceNotificationHubEntity,
|
|
4358
|
+
stdServiceNotificationHubPage: () => stdServiceNotificationHubPage,
|
|
4359
|
+
stdServiceNotificationHubTrait: () => stdServiceNotificationHubTrait,
|
|
4360
|
+
stdServiceOauth: () => stdServiceOauth,
|
|
4361
|
+
stdServiceOauthEntity: () => stdServiceOauthEntity,
|
|
4362
|
+
stdServiceOauthPage: () => stdServiceOauthPage,
|
|
4363
|
+
stdServiceOauthTrait: () => stdServiceOauthTrait,
|
|
4364
|
+
stdServicePaymentFlow: () => stdServicePaymentFlow,
|
|
4365
|
+
stdServicePaymentFlowEntity: () => stdServicePaymentFlowEntity,
|
|
4366
|
+
stdServicePaymentFlowPage: () => stdServicePaymentFlowPage,
|
|
4367
|
+
stdServiceRedis: () => stdServiceRedis,
|
|
4368
|
+
stdServiceRedisEntity: () => stdServiceRedisEntity,
|
|
4369
|
+
stdServiceRedisPage: () => stdServiceRedisPage,
|
|
4370
|
+
stdServiceRedisTrait: () => stdServiceRedisTrait,
|
|
4371
|
+
stdServiceResearchAssistant: () => stdServiceResearchAssistant,
|
|
4372
|
+
stdServiceStorage: () => stdServiceStorage,
|
|
4373
|
+
stdServiceStorageEntity: () => stdServiceStorageEntity,
|
|
4374
|
+
stdServiceStoragePage: () => stdServiceStoragePage,
|
|
4375
|
+
stdServiceStorageTrait: () => stdServiceStorageTrait,
|
|
4376
|
+
stdServiceStripe: () => stdServiceStripe,
|
|
4377
|
+
stdServiceStripeEntity: () => stdServiceStripeEntity,
|
|
4378
|
+
stdServiceStripePage: () => stdServiceStripePage,
|
|
4379
|
+
stdServiceStripeTrait: () => stdServiceStripeTrait,
|
|
4380
|
+
stdServiceTwilio: () => stdServiceTwilio,
|
|
4381
|
+
stdServiceTwilioEntity: () => stdServiceTwilioEntity,
|
|
4382
|
+
stdServiceTwilioPage: () => stdServiceTwilioPage,
|
|
4383
|
+
stdServiceTwilioTrait: () => stdServiceTwilioTrait,
|
|
4384
|
+
stdServiceYoutube: () => stdServiceYoutube,
|
|
4385
|
+
stdServiceYoutubeEntity: () => stdServiceYoutubeEntity,
|
|
4386
|
+
stdServiceYoutubePage: () => stdServiceYoutubePage,
|
|
4387
|
+
stdServiceYoutubeTrait: () => stdServiceYoutubeTrait,
|
|
4388
|
+
stdSimulationCanvas: () => stdSimulationCanvas,
|
|
4389
|
+
stdSimulationCanvasEntity: () => stdSimulationCanvasEntity,
|
|
4390
|
+
stdSimulationCanvasPage: () => stdSimulationCanvasPage,
|
|
4391
|
+
stdSimulationCanvasTrait: () => stdSimulationCanvasTrait,
|
|
4392
|
+
stdSimulatorGame: () => stdSimulatorGame,
|
|
4393
|
+
stdSimulatorGameEntity: () => stdSimulatorGameEntity,
|
|
4394
|
+
stdSimulatorGamePage: () => stdSimulatorGamePage,
|
|
4395
|
+
stdSimulatorGameTrait: () => stdSimulatorGameTrait,
|
|
4396
|
+
stdSocialFeed: () => stdSocialFeed,
|
|
4397
|
+
stdSort: () => stdSort,
|
|
4398
|
+
stdSortEntity: () => stdSortEntity,
|
|
4399
|
+
stdSortPage: () => stdSortPage,
|
|
4400
|
+
stdSortTrait: () => stdSortTrait,
|
|
4401
|
+
stdSprite: () => stdSprite,
|
|
4402
|
+
stdSpriteEntity: () => stdSpriteEntity,
|
|
4403
|
+
stdSpritePage: () => stdSpritePage,
|
|
4404
|
+
stdSpriteTrait: () => stdSpriteTrait,
|
|
4405
|
+
stdStemLab: () => stdStemLab,
|
|
4406
|
+
stdStrategyGame: () => stdStrategyGame,
|
|
4407
|
+
stdTabs: () => stdTabs,
|
|
4408
|
+
stdTabsEntity: () => stdTabsEntity,
|
|
4409
|
+
stdTabsPage: () => stdTabsPage,
|
|
4410
|
+
stdTabsTrait: () => stdTabsTrait,
|
|
4411
|
+
stdTextClassifier: () => stdTextClassifier,
|
|
4412
|
+
stdTextClassifierEntity: () => stdTextClassifierEntity,
|
|
4413
|
+
stdTextClassifierPage: () => stdTextClassifierPage,
|
|
4414
|
+
stdTextClassifierTrait: () => stdTextClassifierTrait,
|
|
4415
|
+
stdTextEffects: () => stdTextEffects,
|
|
4416
|
+
stdTextEffectsEntity: () => stdTextEffectsEntity,
|
|
4417
|
+
stdTextEffectsPage: () => stdTextEffectsPage,
|
|
4418
|
+
stdTextEffectsTrait: () => stdTextEffectsTrait,
|
|
4419
|
+
stdTheme: () => stdTheme,
|
|
4420
|
+
stdThemeEntity: () => stdThemeEntity,
|
|
4421
|
+
stdThemePage: () => stdThemePage,
|
|
4422
|
+
stdThemeTrait: () => stdThemeTrait,
|
|
4423
|
+
stdTimer: () => stdTimer,
|
|
4424
|
+
stdTimerEntity: () => stdTimerEntity,
|
|
4425
|
+
stdTimerPage: () => stdTimerPage,
|
|
4426
|
+
stdTimerTrait: () => stdTimerTrait,
|
|
4427
|
+
stdTradingDashboard: () => stdTradingDashboard,
|
|
4428
|
+
stdTrainer: () => stdTrainer,
|
|
4429
|
+
stdTrainerEntity: () => stdTrainerEntity,
|
|
4430
|
+
stdTrainerPage: () => stdTrainerPage,
|
|
4431
|
+
stdTrainerTrait: () => stdTrainerTrait,
|
|
4432
|
+
stdTurnBasedBattle: () => stdTurnBasedBattle,
|
|
4433
|
+
stdTurnBasedBattleEntity: () => stdTurnBasedBattleEntity,
|
|
4434
|
+
stdTurnBasedBattlePage: () => stdTurnBasedBattlePage,
|
|
4435
|
+
stdTurnBasedBattleTrait: () => stdTurnBasedBattleTrait,
|
|
4436
|
+
stdUndo: () => stdUndo,
|
|
4437
|
+
stdUndoEntity: () => stdUndoEntity,
|
|
4438
|
+
stdUndoPage: () => stdUndoPage,
|
|
4439
|
+
stdUndoTrait: () => stdUndoTrait,
|
|
4440
|
+
stdUpload: () => stdUpload,
|
|
4441
|
+
stdUploadEntity: () => stdUploadEntity,
|
|
4442
|
+
stdUploadPage: () => stdUploadPage,
|
|
4443
|
+
stdUploadTrait: () => stdUploadTrait,
|
|
4444
|
+
stdValidateOnSave: () => stdValidateOnSave,
|
|
4445
|
+
stdWizard: () => stdWizard,
|
|
4446
|
+
stdWizardEntity: () => stdWizardEntity,
|
|
4447
|
+
stdWizardPage: () => stdWizardPage,
|
|
4448
|
+
stdWizardTrait: () => stdWizardTrait,
|
|
4449
|
+
wire: () => wire
|
|
4450
|
+
});
|
|
3875
4451
|
|
|
3876
4452
|
// behaviors/functions/utils.ts
|
|
3877
4453
|
function humanizeLabel(name) {
|
|
@@ -3880,7 +4456,7 @@ function humanizeLabel(name) {
|
|
|
3880
4456
|
var SYSTEM_FIELDS = /* @__PURE__ */ new Set(["createdAt", "updatedAt", "pendingId"]);
|
|
3881
4457
|
|
|
3882
4458
|
// behaviors/functions/atoms/std-browse.ts
|
|
3883
|
-
function
|
|
4459
|
+
function resolve(params) {
|
|
3884
4460
|
const { entityName } = params;
|
|
3885
4461
|
const fields = ensureIdField(params.fields);
|
|
3886
4462
|
const nonIdFields = fields.filter((f) => f.name !== "id");
|
|
@@ -4101,19 +4677,19 @@ function buildPage(c) {
|
|
|
4101
4677
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
4102
4678
|
}
|
|
4103
4679
|
function stdBrowseEntity(params) {
|
|
4104
|
-
return buildEntity(
|
|
4680
|
+
return buildEntity(resolve(params));
|
|
4105
4681
|
}
|
|
4106
4682
|
function stdBrowseTrait(params) {
|
|
4107
|
-
return buildTrait(
|
|
4683
|
+
return buildTrait(resolve(params));
|
|
4108
4684
|
}
|
|
4109
4685
|
function stdBrowsePage(params) {
|
|
4110
|
-
return buildPage(
|
|
4686
|
+
return buildPage(resolve(params));
|
|
4111
4687
|
}
|
|
4112
4688
|
function stdBrowse(params) {
|
|
4113
|
-
const c =
|
|
4689
|
+
const c = resolve(params);
|
|
4114
4690
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity(c), [buildTrait(c)], [buildPage(c)]);
|
|
4115
4691
|
}
|
|
4116
|
-
function
|
|
4692
|
+
function resolve2(params) {
|
|
4117
4693
|
const { entityName } = params;
|
|
4118
4694
|
const fields = ensureIdField(params.fields);
|
|
4119
4695
|
const nonIdFields = fields.filter((f) => f.name !== "id");
|
|
@@ -4265,19 +4841,19 @@ function buildPage2(c) {
|
|
|
4265
4841
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
4266
4842
|
}
|
|
4267
4843
|
function stdModalEntity(params) {
|
|
4268
|
-
return buildEntity2(
|
|
4844
|
+
return buildEntity2(resolve2(params));
|
|
4269
4845
|
}
|
|
4270
4846
|
function stdModalTrait(params) {
|
|
4271
|
-
return buildTrait2(
|
|
4847
|
+
return buildTrait2(resolve2(params));
|
|
4272
4848
|
}
|
|
4273
4849
|
function stdModalPage(params) {
|
|
4274
|
-
return buildPage2(
|
|
4850
|
+
return buildPage2(resolve2(params));
|
|
4275
4851
|
}
|
|
4276
4852
|
function stdModal(params) {
|
|
4277
|
-
const c =
|
|
4853
|
+
const c = resolve2(params);
|
|
4278
4854
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity2(c), [buildTrait2(c)], [buildPage2(c)]);
|
|
4279
4855
|
}
|
|
4280
|
-
function
|
|
4856
|
+
function resolve3(params) {
|
|
4281
4857
|
const { entityName } = params;
|
|
4282
4858
|
const fields = ensureIdField(params.fields);
|
|
4283
4859
|
const nonIdFields = fields.filter((f) => f.name !== "id");
|
|
@@ -4437,16 +5013,16 @@ function buildPage3(c) {
|
|
|
4437
5013
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
4438
5014
|
}
|
|
4439
5015
|
function stdConfirmationEntity(params) {
|
|
4440
|
-
return buildEntity3(
|
|
5016
|
+
return buildEntity3(resolve3(params));
|
|
4441
5017
|
}
|
|
4442
5018
|
function stdConfirmationTrait(params) {
|
|
4443
|
-
return buildTrait3(
|
|
5019
|
+
return buildTrait3(resolve3(params));
|
|
4444
5020
|
}
|
|
4445
5021
|
function stdConfirmationPage(params) {
|
|
4446
|
-
return buildPage3(
|
|
5022
|
+
return buildPage3(resolve3(params));
|
|
4447
5023
|
}
|
|
4448
5024
|
function stdConfirmation(params) {
|
|
4449
|
-
const c =
|
|
5025
|
+
const c = resolve3(params);
|
|
4450
5026
|
return makeOrbital(
|
|
4451
5027
|
`${c.entityName}Orbital`,
|
|
4452
5028
|
buildEntity3(c),
|
|
@@ -4454,7 +5030,7 @@ function stdConfirmation(params) {
|
|
|
4454
5030
|
[buildPage3(c)]
|
|
4455
5031
|
);
|
|
4456
5032
|
}
|
|
4457
|
-
function
|
|
5033
|
+
function resolve4(params) {
|
|
4458
5034
|
const { entityName } = params;
|
|
4459
5035
|
const baseFields = ensureIdField(params.fields);
|
|
4460
5036
|
const fields = baseFields;
|
|
@@ -4608,16 +5184,16 @@ function buildPage4(c) {
|
|
|
4608
5184
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
4609
5185
|
}
|
|
4610
5186
|
function stdSearchEntity(params) {
|
|
4611
|
-
return buildEntity4(
|
|
5187
|
+
return buildEntity4(resolve4(params));
|
|
4612
5188
|
}
|
|
4613
5189
|
function stdSearchTrait(params) {
|
|
4614
|
-
return buildTrait4(
|
|
5190
|
+
return buildTrait4(resolve4(params));
|
|
4615
5191
|
}
|
|
4616
5192
|
function stdSearchPage(params) {
|
|
4617
|
-
return buildPage4(
|
|
5193
|
+
return buildPage4(resolve4(params));
|
|
4618
5194
|
}
|
|
4619
5195
|
function stdSearch(params) {
|
|
4620
|
-
const c =
|
|
5196
|
+
const c = resolve4(params);
|
|
4621
5197
|
return makeOrbital(
|
|
4622
5198
|
`${c.entityName}Orbital`,
|
|
4623
5199
|
buildEntity4(c),
|
|
@@ -4625,7 +5201,7 @@ function stdSearch(params) {
|
|
|
4625
5201
|
[buildPage4(c)]
|
|
4626
5202
|
);
|
|
4627
5203
|
}
|
|
4628
|
-
function
|
|
5204
|
+
function resolve5(params) {
|
|
4629
5205
|
const { entityName } = params;
|
|
4630
5206
|
const allFields = ensureIdField(params.fields);
|
|
4631
5207
|
const nonIdFields = allFields.filter((f) => f.name !== "id");
|
|
@@ -4800,19 +5376,19 @@ function buildPage5(c) {
|
|
|
4800
5376
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
4801
5377
|
}
|
|
4802
5378
|
function stdFilterEntity(params) {
|
|
4803
|
-
return buildEntity5(
|
|
5379
|
+
return buildEntity5(resolve5(params));
|
|
4804
5380
|
}
|
|
4805
5381
|
function stdFilterTrait(params) {
|
|
4806
|
-
return buildTrait5(
|
|
5382
|
+
return buildTrait5(resolve5(params));
|
|
4807
5383
|
}
|
|
4808
5384
|
function stdFilterPage(params) {
|
|
4809
|
-
return buildPage5(
|
|
5385
|
+
return buildPage5(resolve5(params));
|
|
4810
5386
|
}
|
|
4811
5387
|
function stdFilter(params) {
|
|
4812
|
-
const c =
|
|
5388
|
+
const c = resolve5(params);
|
|
4813
5389
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity5(c), [buildTrait5(c)], [buildPage5(c)]);
|
|
4814
5390
|
}
|
|
4815
|
-
function
|
|
5391
|
+
function resolve6(params) {
|
|
4816
5392
|
const { entityName } = params;
|
|
4817
5393
|
const allFields = ensureIdField(params.fields);
|
|
4818
5394
|
const nonIdFields = allFields.filter((f) => f.name !== "id");
|
|
@@ -4960,19 +5536,19 @@ function buildPage6(c) {
|
|
|
4960
5536
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
4961
5537
|
}
|
|
4962
5538
|
function stdSortEntity(params) {
|
|
4963
|
-
return buildEntity6(
|
|
5539
|
+
return buildEntity6(resolve6(params));
|
|
4964
5540
|
}
|
|
4965
5541
|
function stdSortTrait(params) {
|
|
4966
|
-
return buildTrait6(
|
|
5542
|
+
return buildTrait6(resolve6(params));
|
|
4967
5543
|
}
|
|
4968
5544
|
function stdSortPage(params) {
|
|
4969
|
-
return buildPage6(
|
|
5545
|
+
return buildPage6(resolve6(params));
|
|
4970
5546
|
}
|
|
4971
5547
|
function stdSort(params) {
|
|
4972
|
-
const c =
|
|
5548
|
+
const c = resolve6(params);
|
|
4973
5549
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity6(c), [buildTrait6(c)], [buildPage6(c)]);
|
|
4974
5550
|
}
|
|
4975
|
-
function
|
|
5551
|
+
function resolve7(params) {
|
|
4976
5552
|
const { entityName } = params;
|
|
4977
5553
|
const baseFields = ensureIdField(params.fields);
|
|
4978
5554
|
const fields = baseFields;
|
|
@@ -5132,16 +5708,16 @@ function buildPage7(c) {
|
|
|
5132
5708
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
5133
5709
|
}
|
|
5134
5710
|
function stdPaginationEntity(params) {
|
|
5135
|
-
return buildEntity7(
|
|
5711
|
+
return buildEntity7(resolve7(params));
|
|
5136
5712
|
}
|
|
5137
5713
|
function stdPaginationTrait(params) {
|
|
5138
|
-
return buildTrait7(
|
|
5714
|
+
return buildTrait7(resolve7(params));
|
|
5139
5715
|
}
|
|
5140
5716
|
function stdPaginationPage(params) {
|
|
5141
|
-
return buildPage7(
|
|
5717
|
+
return buildPage7(resolve7(params));
|
|
5142
5718
|
}
|
|
5143
5719
|
function stdPagination(params) {
|
|
5144
|
-
const c =
|
|
5720
|
+
const c = resolve7(params);
|
|
5145
5721
|
return makeOrbital(
|
|
5146
5722
|
`${c.entityName}Orbital`,
|
|
5147
5723
|
buildEntity7(c),
|
|
@@ -5149,7 +5725,7 @@ function stdPagination(params) {
|
|
|
5149
5725
|
[buildPage7(c)]
|
|
5150
5726
|
);
|
|
5151
5727
|
}
|
|
5152
|
-
function
|
|
5728
|
+
function resolve8(params) {
|
|
5153
5729
|
const { entityName } = params;
|
|
5154
5730
|
const fields = ensureIdField(params.fields);
|
|
5155
5731
|
const nonIdFields = fields.filter((f) => f.name !== "id");
|
|
@@ -5325,16 +5901,16 @@ function buildPage8(c) {
|
|
|
5325
5901
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
5326
5902
|
}
|
|
5327
5903
|
function stdDrawerEntity(params) {
|
|
5328
|
-
return buildEntity8(
|
|
5904
|
+
return buildEntity8(resolve8(params));
|
|
5329
5905
|
}
|
|
5330
5906
|
function stdDrawerTrait(params) {
|
|
5331
|
-
return buildTrait8(
|
|
5907
|
+
return buildTrait8(resolve8(params));
|
|
5332
5908
|
}
|
|
5333
5909
|
function stdDrawerPage(params) {
|
|
5334
|
-
return buildPage8(
|
|
5910
|
+
return buildPage8(resolve8(params));
|
|
5335
5911
|
}
|
|
5336
5912
|
function stdDrawer(params) {
|
|
5337
|
-
const c =
|
|
5913
|
+
const c = resolve8(params);
|
|
5338
5914
|
return makeOrbital(
|
|
5339
5915
|
`${c.entityName}Orbital`,
|
|
5340
5916
|
buildEntity8(c),
|
|
@@ -5342,7 +5918,7 @@ function stdDrawer(params) {
|
|
|
5342
5918
|
[buildPage8(c)]
|
|
5343
5919
|
);
|
|
5344
5920
|
}
|
|
5345
|
-
function
|
|
5921
|
+
function resolve9(params) {
|
|
5346
5922
|
const { entityName } = params;
|
|
5347
5923
|
const baseFields = ensureIdField(params.fields);
|
|
5348
5924
|
const fields = [
|
|
@@ -5503,16 +6079,16 @@ function buildPage9(c) {
|
|
|
5503
6079
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
5504
6080
|
}
|
|
5505
6081
|
function stdNotificationEntity(params) {
|
|
5506
|
-
return buildEntity9(
|
|
6082
|
+
return buildEntity9(resolve9(params));
|
|
5507
6083
|
}
|
|
5508
6084
|
function stdNotificationTrait(params) {
|
|
5509
|
-
return buildTrait9(
|
|
6085
|
+
return buildTrait9(resolve9(params));
|
|
5510
6086
|
}
|
|
5511
6087
|
function stdNotificationPage(params) {
|
|
5512
|
-
return buildPage9(
|
|
6088
|
+
return buildPage9(resolve9(params));
|
|
5513
6089
|
}
|
|
5514
6090
|
function stdNotification(params) {
|
|
5515
|
-
const c =
|
|
6091
|
+
const c = resolve9(params);
|
|
5516
6092
|
return makeOrbital(
|
|
5517
6093
|
`${c.entityName}Orbital`,
|
|
5518
6094
|
buildEntity9(c),
|
|
@@ -5520,7 +6096,7 @@ function stdNotification(params) {
|
|
|
5520
6096
|
[buildPage9(c)]
|
|
5521
6097
|
);
|
|
5522
6098
|
}
|
|
5523
|
-
function
|
|
6099
|
+
function resolve10(params) {
|
|
5524
6100
|
const { entityName } = params;
|
|
5525
6101
|
const baseFields = ensureIdField(params.fields);
|
|
5526
6102
|
const fields = [
|
|
@@ -5760,16 +6336,16 @@ function buildPage10(c) {
|
|
|
5760
6336
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
5761
6337
|
}
|
|
5762
6338
|
function stdTimerEntity(params) {
|
|
5763
|
-
return buildEntity10(
|
|
6339
|
+
return buildEntity10(resolve10(params));
|
|
5764
6340
|
}
|
|
5765
6341
|
function stdTimerTrait(params) {
|
|
5766
|
-
return buildTrait10(
|
|
6342
|
+
return buildTrait10(resolve10(params));
|
|
5767
6343
|
}
|
|
5768
6344
|
function stdTimerPage(params) {
|
|
5769
|
-
return buildPage10(
|
|
6345
|
+
return buildPage10(resolve10(params));
|
|
5770
6346
|
}
|
|
5771
6347
|
function stdTimer(params) {
|
|
5772
|
-
const c =
|
|
6348
|
+
const c = resolve10(params);
|
|
5773
6349
|
return makeOrbital(
|
|
5774
6350
|
`${c.entityName}Orbital`,
|
|
5775
6351
|
buildEntity10(c),
|
|
@@ -5777,7 +6353,7 @@ function stdTimer(params) {
|
|
|
5777
6353
|
[buildPage10(c)]
|
|
5778
6354
|
);
|
|
5779
6355
|
}
|
|
5780
|
-
function
|
|
6356
|
+
function resolve11(params) {
|
|
5781
6357
|
const { entityName } = params;
|
|
5782
6358
|
const baseFields = ensureIdField(params.fields);
|
|
5783
6359
|
const p = plural(entityName);
|
|
@@ -5886,19 +6462,19 @@ function buildPage11(c) {
|
|
|
5886
6462
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
5887
6463
|
}
|
|
5888
6464
|
function stdTabsEntity(params) {
|
|
5889
|
-
return buildEntity11(
|
|
6465
|
+
return buildEntity11(resolve11(params));
|
|
5890
6466
|
}
|
|
5891
6467
|
function stdTabsTrait(params) {
|
|
5892
|
-
return buildTrait11(
|
|
6468
|
+
return buildTrait11(resolve11(params));
|
|
5893
6469
|
}
|
|
5894
6470
|
function stdTabsPage(params) {
|
|
5895
|
-
return buildPage11(
|
|
6471
|
+
return buildPage11(resolve11(params));
|
|
5896
6472
|
}
|
|
5897
6473
|
function stdTabs(params) {
|
|
5898
|
-
const c =
|
|
6474
|
+
const c = resolve11(params);
|
|
5899
6475
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity11(c), [buildTrait11(c)], [buildPage11(c)]);
|
|
5900
6476
|
}
|
|
5901
|
-
function
|
|
6477
|
+
function resolve12(params) {
|
|
5902
6478
|
const { entityName } = params;
|
|
5903
6479
|
const baseFields = ensureIdField(params.fields);
|
|
5904
6480
|
const fields = [
|
|
@@ -6100,16 +6676,16 @@ function buildPage12(c) {
|
|
|
6100
6676
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
6101
6677
|
}
|
|
6102
6678
|
function stdLoadingEntity(params) {
|
|
6103
|
-
return buildEntity12(
|
|
6679
|
+
return buildEntity12(resolve12(params));
|
|
6104
6680
|
}
|
|
6105
6681
|
function stdLoadingTrait(params) {
|
|
6106
|
-
return buildTrait12(
|
|
6682
|
+
return buildTrait12(resolve12(params));
|
|
6107
6683
|
}
|
|
6108
6684
|
function stdLoadingPage(params) {
|
|
6109
|
-
return buildPage12(
|
|
6685
|
+
return buildPage12(resolve12(params));
|
|
6110
6686
|
}
|
|
6111
6687
|
function stdLoading(params) {
|
|
6112
|
-
const c =
|
|
6688
|
+
const c = resolve12(params);
|
|
6113
6689
|
return makeOrbital(
|
|
6114
6690
|
`${c.entityName}Orbital`,
|
|
6115
6691
|
buildEntity12(c),
|
|
@@ -6117,7 +6693,7 @@ function stdLoading(params) {
|
|
|
6117
6693
|
[buildPage12(c)]
|
|
6118
6694
|
);
|
|
6119
6695
|
}
|
|
6120
|
-
function
|
|
6696
|
+
function resolve13(params) {
|
|
6121
6697
|
const { entityName } = params;
|
|
6122
6698
|
const baseFields = ensureIdField(params.fields);
|
|
6123
6699
|
const fields = baseFields;
|
|
@@ -6390,16 +6966,16 @@ function buildPage13(c) {
|
|
|
6390
6966
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
6391
6967
|
}
|
|
6392
6968
|
function stdSelectionEntity(params) {
|
|
6393
|
-
return buildEntity13(
|
|
6969
|
+
return buildEntity13(resolve13(params));
|
|
6394
6970
|
}
|
|
6395
6971
|
function stdSelectionTrait(params) {
|
|
6396
|
-
return buildTrait13(
|
|
6972
|
+
return buildTrait13(resolve13(params));
|
|
6397
6973
|
}
|
|
6398
6974
|
function stdSelectionPage(params) {
|
|
6399
|
-
return buildPage13(
|
|
6975
|
+
return buildPage13(resolve13(params));
|
|
6400
6976
|
}
|
|
6401
6977
|
function stdSelection(params) {
|
|
6402
|
-
const c =
|
|
6978
|
+
const c = resolve13(params);
|
|
6403
6979
|
return makeOrbital(
|
|
6404
6980
|
`${c.entityName}Orbital`,
|
|
6405
6981
|
buildEntity13(c),
|
|
@@ -6407,7 +6983,7 @@ function stdSelection(params) {
|
|
|
6407
6983
|
[buildPage13(c)]
|
|
6408
6984
|
);
|
|
6409
6985
|
}
|
|
6410
|
-
function
|
|
6986
|
+
function resolve14(params) {
|
|
6411
6987
|
const { entityName } = params;
|
|
6412
6988
|
const baseFields = ensureIdField(params.fields);
|
|
6413
6989
|
const fields = [
|
|
@@ -6521,19 +7097,19 @@ function buildPage14(c) {
|
|
|
6521
7097
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
6522
7098
|
}
|
|
6523
7099
|
function stdUndoEntity(params) {
|
|
6524
|
-
return buildEntity14(
|
|
7100
|
+
return buildEntity14(resolve14(params));
|
|
6525
7101
|
}
|
|
6526
7102
|
function stdUndoTrait(params) {
|
|
6527
|
-
return buildTrait14(
|
|
7103
|
+
return buildTrait14(resolve14(params));
|
|
6528
7104
|
}
|
|
6529
7105
|
function stdUndoPage(params) {
|
|
6530
|
-
return buildPage14(
|
|
7106
|
+
return buildPage14(resolve14(params));
|
|
6531
7107
|
}
|
|
6532
7108
|
function stdUndo(params) {
|
|
6533
|
-
const c =
|
|
7109
|
+
const c = resolve14(params);
|
|
6534
7110
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity14(c), [buildTrait14(c)], [buildPage14(c)]);
|
|
6535
7111
|
}
|
|
6536
|
-
function
|
|
7112
|
+
function resolve15(params) {
|
|
6537
7113
|
const { entityName } = params;
|
|
6538
7114
|
const baseFields = ensureIdField(params.fields);
|
|
6539
7115
|
const fields = [
|
|
@@ -6719,16 +7295,16 @@ function buildPage15(c) {
|
|
|
6719
7295
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
6720
7296
|
}
|
|
6721
7297
|
function stdInputEntity(params) {
|
|
6722
|
-
return buildEntity15(
|
|
7298
|
+
return buildEntity15(resolve15(params));
|
|
6723
7299
|
}
|
|
6724
7300
|
function stdInputTrait(params) {
|
|
6725
|
-
return buildTrait15(
|
|
7301
|
+
return buildTrait15(resolve15(params));
|
|
6726
7302
|
}
|
|
6727
7303
|
function stdInputPage(params) {
|
|
6728
|
-
return buildPage15(
|
|
7304
|
+
return buildPage15(resolve15(params));
|
|
6729
7305
|
}
|
|
6730
7306
|
function stdInput(params) {
|
|
6731
|
-
const c =
|
|
7307
|
+
const c = resolve15(params);
|
|
6732
7308
|
return makeOrbital(
|
|
6733
7309
|
`${c.entityName}Orbital`,
|
|
6734
7310
|
buildEntity15(c),
|
|
@@ -6736,7 +7312,7 @@ function stdInput(params) {
|
|
|
6736
7312
|
[buildPage15(c)]
|
|
6737
7313
|
);
|
|
6738
7314
|
}
|
|
6739
|
-
function
|
|
7315
|
+
function resolve16(params) {
|
|
6740
7316
|
const { entityName } = params;
|
|
6741
7317
|
const fields = ensureIdField(params.fields);
|
|
6742
7318
|
const nonIdFields = fields.filter((f) => f.name !== "id");
|
|
@@ -6977,16 +7553,16 @@ function buildPage16(c) {
|
|
|
6977
7553
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
6978
7554
|
}
|
|
6979
7555
|
function stdWizardEntity(params) {
|
|
6980
|
-
return buildEntity16(
|
|
7556
|
+
return buildEntity16(resolve16(params));
|
|
6981
7557
|
}
|
|
6982
7558
|
function stdWizardTrait(params) {
|
|
6983
|
-
return buildTrait16(
|
|
7559
|
+
return buildTrait16(resolve16(params));
|
|
6984
7560
|
}
|
|
6985
7561
|
function stdWizardPage(params) {
|
|
6986
|
-
return buildPage16(
|
|
7562
|
+
return buildPage16(resolve16(params));
|
|
6987
7563
|
}
|
|
6988
7564
|
function stdWizard(params) {
|
|
6989
|
-
const c =
|
|
7565
|
+
const c = resolve16(params);
|
|
6990
7566
|
return makeOrbital(
|
|
6991
7567
|
`${c.entityName}Orbital`,
|
|
6992
7568
|
buildEntity16(c),
|
|
@@ -6994,7 +7570,7 @@ function stdWizard(params) {
|
|
|
6994
7570
|
[buildPage16(c)]
|
|
6995
7571
|
);
|
|
6996
7572
|
}
|
|
6997
|
-
function
|
|
7573
|
+
function resolve17(params) {
|
|
6998
7574
|
const { entityName } = params;
|
|
6999
7575
|
const fields = ensureIdField(params.fields);
|
|
7000
7576
|
const nonIdFields = fields.filter((f) => f.name !== "id");
|
|
@@ -7109,18 +7685,18 @@ function buildTrait17(c) {
|
|
|
7109
7685
|
};
|
|
7110
7686
|
}
|
|
7111
7687
|
function stdDisplayEntity(params) {
|
|
7112
|
-
const c =
|
|
7688
|
+
const c = resolve17(params);
|
|
7113
7689
|
return makeEntity({ name: c.entityName, fields: c.fields, persistence: c.persistence, collection: c.collection });
|
|
7114
7690
|
}
|
|
7115
7691
|
function stdDisplayTrait(params) {
|
|
7116
|
-
return buildTrait17(
|
|
7692
|
+
return buildTrait17(resolve17(params));
|
|
7117
7693
|
}
|
|
7118
7694
|
function stdDisplayPage(params) {
|
|
7119
|
-
const c =
|
|
7695
|
+
const c = resolve17(params);
|
|
7120
7696
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
7121
7697
|
}
|
|
7122
7698
|
function stdDisplay(params) {
|
|
7123
|
-
const c =
|
|
7699
|
+
const c = resolve17(params);
|
|
7124
7700
|
return makeOrbital(
|
|
7125
7701
|
`${c.entityName}Orbital`,
|
|
7126
7702
|
makeEntity({ name: c.entityName, fields: c.fields, persistence: c.persistence, collection: c.collection }),
|
|
@@ -7128,7 +7704,7 @@ function stdDisplay(params) {
|
|
|
7128
7704
|
[makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial })]
|
|
7129
7705
|
);
|
|
7130
7706
|
}
|
|
7131
|
-
function
|
|
7707
|
+
function resolve18(params) {
|
|
7132
7708
|
const { entityName } = params;
|
|
7133
7709
|
const fields = ensureIdField(params.fields);
|
|
7134
7710
|
const p = plural(entityName);
|
|
@@ -7310,16 +7886,16 @@ function buildPage17(c) {
|
|
|
7310
7886
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
7311
7887
|
}
|
|
7312
7888
|
function stdAsyncEntity(params) {
|
|
7313
|
-
return buildEntity17(
|
|
7889
|
+
return buildEntity17(resolve18(params));
|
|
7314
7890
|
}
|
|
7315
7891
|
function stdAsyncTrait(params) {
|
|
7316
|
-
return buildTrait18(
|
|
7892
|
+
return buildTrait18(resolve18(params));
|
|
7317
7893
|
}
|
|
7318
7894
|
function stdAsyncPage(params) {
|
|
7319
|
-
return buildPage17(
|
|
7895
|
+
return buildPage17(resolve18(params));
|
|
7320
7896
|
}
|
|
7321
7897
|
function stdAsync(params) {
|
|
7322
|
-
const c =
|
|
7898
|
+
const c = resolve18(params);
|
|
7323
7899
|
return makeOrbital(
|
|
7324
7900
|
`${c.entityName}Orbital`,
|
|
7325
7901
|
buildEntity17(c),
|
|
@@ -7327,7 +7903,7 @@ function stdAsync(params) {
|
|
|
7327
7903
|
[buildPage17(c)]
|
|
7328
7904
|
);
|
|
7329
7905
|
}
|
|
7330
|
-
function
|
|
7906
|
+
function resolve19(params) {
|
|
7331
7907
|
const { entityName } = params;
|
|
7332
7908
|
const baseFields = ensureIdField(params.fields);
|
|
7333
7909
|
const p = plural(entityName);
|
|
@@ -7500,16 +8076,16 @@ function buildPage18(c) {
|
|
|
7500
8076
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
7501
8077
|
}
|
|
7502
8078
|
function stdCombatEntity(params) {
|
|
7503
|
-
return buildEntity18(
|
|
8079
|
+
return buildEntity18(resolve19(params));
|
|
7504
8080
|
}
|
|
7505
8081
|
function stdCombatTrait(params) {
|
|
7506
|
-
return buildTrait19(
|
|
8082
|
+
return buildTrait19(resolve19(params));
|
|
7507
8083
|
}
|
|
7508
8084
|
function stdCombatPage(params) {
|
|
7509
|
-
return buildPage18(
|
|
8085
|
+
return buildPage18(resolve19(params));
|
|
7510
8086
|
}
|
|
7511
8087
|
function stdCombat(params) {
|
|
7512
|
-
const c =
|
|
8088
|
+
const c = resolve19(params);
|
|
7513
8089
|
return makeOrbital(
|
|
7514
8090
|
`${c.entityName}Orbital`,
|
|
7515
8091
|
buildEntity18(c),
|
|
@@ -7517,7 +8093,7 @@ function stdCombat(params) {
|
|
|
7517
8093
|
[buildPage18(c)]
|
|
7518
8094
|
);
|
|
7519
8095
|
}
|
|
7520
|
-
function
|
|
8096
|
+
function resolve20(params) {
|
|
7521
8097
|
const { entityName } = params;
|
|
7522
8098
|
const baseFields = ensureIdField(params.fields);
|
|
7523
8099
|
const p = plural(entityName);
|
|
@@ -7689,16 +8265,16 @@ function buildPage19(c) {
|
|
|
7689
8265
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
7690
8266
|
}
|
|
7691
8267
|
function stdGameflowEntity(params) {
|
|
7692
|
-
return buildEntity19(
|
|
8268
|
+
return buildEntity19(resolve20(params));
|
|
7693
8269
|
}
|
|
7694
8270
|
function stdGameflowTrait(params) {
|
|
7695
|
-
return buildTrait20(
|
|
8271
|
+
return buildTrait20(resolve20(params));
|
|
7696
8272
|
}
|
|
7697
8273
|
function stdGameflowPage(params) {
|
|
7698
|
-
return buildPage19(
|
|
8274
|
+
return buildPage19(resolve20(params));
|
|
7699
8275
|
}
|
|
7700
8276
|
function stdGameflow(params) {
|
|
7701
|
-
const c =
|
|
8277
|
+
const c = resolve20(params);
|
|
7702
8278
|
return makeOrbital(
|
|
7703
8279
|
`${c.entityName}Orbital`,
|
|
7704
8280
|
buildEntity19(c),
|
|
@@ -7706,7 +8282,7 @@ function stdGameflow(params) {
|
|
|
7706
8282
|
[buildPage19(c)]
|
|
7707
8283
|
);
|
|
7708
8284
|
}
|
|
7709
|
-
function
|
|
8285
|
+
function resolve21(params) {
|
|
7710
8286
|
const { entityName } = params;
|
|
7711
8287
|
const fields = ensureIdField(params.fields);
|
|
7712
8288
|
const nonIdFields = fields.filter((f) => f.name !== "id");
|
|
@@ -7958,16 +8534,16 @@ function buildPage20(c) {
|
|
|
7958
8534
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
7959
8535
|
}
|
|
7960
8536
|
function stdMovementEntity(params) {
|
|
7961
|
-
return buildEntity20(
|
|
8537
|
+
return buildEntity20(resolve21(params));
|
|
7962
8538
|
}
|
|
7963
8539
|
function stdMovementTrait(params) {
|
|
7964
|
-
return buildTrait21(
|
|
8540
|
+
return buildTrait21(resolve21(params));
|
|
7965
8541
|
}
|
|
7966
8542
|
function stdMovementPage(params) {
|
|
7967
|
-
return buildPage20(
|
|
8543
|
+
return buildPage20(resolve21(params));
|
|
7968
8544
|
}
|
|
7969
8545
|
function stdMovement(params) {
|
|
7970
|
-
const c =
|
|
8546
|
+
const c = resolve21(params);
|
|
7971
8547
|
return makeOrbital(
|
|
7972
8548
|
`${c.entityName}Orbital`,
|
|
7973
8549
|
buildEntity20(c),
|
|
@@ -7975,7 +8551,7 @@ function stdMovement(params) {
|
|
|
7975
8551
|
[buildPage20(c)]
|
|
7976
8552
|
);
|
|
7977
8553
|
}
|
|
7978
|
-
function
|
|
8554
|
+
function resolve22(params) {
|
|
7979
8555
|
const { entityName } = params;
|
|
7980
8556
|
const fields = ensureIdField(params.fields);
|
|
7981
8557
|
const nonIdFields = fields.filter((f) => f.name !== "id");
|
|
@@ -8290,16 +8866,16 @@ function buildPage21(c) {
|
|
|
8290
8866
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
8291
8867
|
}
|
|
8292
8868
|
function stdQuestEntity(params) {
|
|
8293
|
-
return buildEntity21(
|
|
8869
|
+
return buildEntity21(resolve22(params));
|
|
8294
8870
|
}
|
|
8295
8871
|
function stdQuestTrait(params) {
|
|
8296
|
-
return buildTrait22(
|
|
8872
|
+
return buildTrait22(resolve22(params));
|
|
8297
8873
|
}
|
|
8298
8874
|
function stdQuestPage(params) {
|
|
8299
|
-
return buildPage21(
|
|
8875
|
+
return buildPage21(resolve22(params));
|
|
8300
8876
|
}
|
|
8301
8877
|
function stdQuest(params) {
|
|
8302
|
-
const c =
|
|
8878
|
+
const c = resolve22(params);
|
|
8303
8879
|
return makeOrbital(
|
|
8304
8880
|
`${c.entityName}Orbital`,
|
|
8305
8881
|
buildEntity21(c),
|
|
@@ -8307,7 +8883,7 @@ function stdQuest(params) {
|
|
|
8307
8883
|
[buildPage21(c)]
|
|
8308
8884
|
);
|
|
8309
8885
|
}
|
|
8310
|
-
function
|
|
8886
|
+
function resolve23(params) {
|
|
8311
8887
|
const { entityName } = params;
|
|
8312
8888
|
const fields = ensureIdField(params.fields);
|
|
8313
8889
|
const nonIdFields = fields.filter((f) => f.name !== "id");
|
|
@@ -8523,16 +9099,16 @@ function buildPage22(c) {
|
|
|
8523
9099
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
8524
9100
|
}
|
|
8525
9101
|
function stdOverworldEntity(params) {
|
|
8526
|
-
return buildEntity22(
|
|
9102
|
+
return buildEntity22(resolve23(params));
|
|
8527
9103
|
}
|
|
8528
9104
|
function stdOverworldTrait(params) {
|
|
8529
|
-
return buildTrait23(
|
|
9105
|
+
return buildTrait23(resolve23(params));
|
|
8530
9106
|
}
|
|
8531
9107
|
function stdOverworldPage(params) {
|
|
8532
|
-
return buildPage22(
|
|
9108
|
+
return buildPage22(resolve23(params));
|
|
8533
9109
|
}
|
|
8534
9110
|
function stdOverworld(params) {
|
|
8535
|
-
const c =
|
|
9111
|
+
const c = resolve23(params);
|
|
8536
9112
|
return makeOrbital(
|
|
8537
9113
|
`${c.entityName}Orbital`,
|
|
8538
9114
|
buildEntity22(c),
|
|
@@ -8540,7 +9116,7 @@ function stdOverworld(params) {
|
|
|
8540
9116
|
[buildPage22(c)]
|
|
8541
9117
|
);
|
|
8542
9118
|
}
|
|
8543
|
-
function
|
|
9119
|
+
function resolve24(params) {
|
|
8544
9120
|
const { entityName } = params;
|
|
8545
9121
|
const fields = ensureIdField(params.fields);
|
|
8546
9122
|
const p = plural(entityName);
|
|
@@ -8755,16 +9331,16 @@ function buildPage23(c) {
|
|
|
8755
9331
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
8756
9332
|
}
|
|
8757
9333
|
function stdCircuitBreakerEntity(params) {
|
|
8758
|
-
return buildEntity23(
|
|
9334
|
+
return buildEntity23(resolve24(params));
|
|
8759
9335
|
}
|
|
8760
9336
|
function stdCircuitBreakerTrait(params) {
|
|
8761
|
-
return buildTrait24(
|
|
9337
|
+
return buildTrait24(resolve24(params));
|
|
8762
9338
|
}
|
|
8763
9339
|
function stdCircuitBreakerPage(params) {
|
|
8764
|
-
return buildPage23(
|
|
9340
|
+
return buildPage23(resolve24(params));
|
|
8765
9341
|
}
|
|
8766
9342
|
function stdCircuitBreaker(params) {
|
|
8767
|
-
const c =
|
|
9343
|
+
const c = resolve24(params);
|
|
8768
9344
|
return makeOrbital(
|
|
8769
9345
|
`${c.entityName}Orbital`,
|
|
8770
9346
|
buildEntity23(c),
|
|
@@ -8772,7 +9348,7 @@ function stdCircuitBreaker(params) {
|
|
|
8772
9348
|
[buildPage23(c)]
|
|
8773
9349
|
);
|
|
8774
9350
|
}
|
|
8775
|
-
function
|
|
9351
|
+
function resolve25(params) {
|
|
8776
9352
|
const { entityName } = params;
|
|
8777
9353
|
const fields = ensureIdField(params.fields);
|
|
8778
9354
|
const nonIdFields = fields.filter((f) => f.name !== "id");
|
|
@@ -9059,16 +9635,16 @@ function buildPage24(c) {
|
|
|
9059
9635
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
9060
9636
|
}
|
|
9061
9637
|
function stdCacheAsideEntity(params) {
|
|
9062
|
-
return buildEntity24(
|
|
9638
|
+
return buildEntity24(resolve25(params));
|
|
9063
9639
|
}
|
|
9064
9640
|
function stdCacheAsideTrait(params) {
|
|
9065
|
-
return buildTrait25(
|
|
9641
|
+
return buildTrait25(resolve25(params));
|
|
9066
9642
|
}
|
|
9067
9643
|
function stdCacheAsidePage(params) {
|
|
9068
|
-
return buildPage24(
|
|
9644
|
+
return buildPage24(resolve25(params));
|
|
9069
9645
|
}
|
|
9070
9646
|
function stdCacheAside(params) {
|
|
9071
|
-
const c =
|
|
9647
|
+
const c = resolve25(params);
|
|
9072
9648
|
return makeOrbital(
|
|
9073
9649
|
`${c.entityName}Orbital`,
|
|
9074
9650
|
buildEntity24(c),
|
|
@@ -9076,7 +9652,7 @@ function stdCacheAside(params) {
|
|
|
9076
9652
|
[buildPage24(c)]
|
|
9077
9653
|
);
|
|
9078
9654
|
}
|
|
9079
|
-
function
|
|
9655
|
+
function resolve26(params) {
|
|
9080
9656
|
const { entityName } = params;
|
|
9081
9657
|
const baseFields = ensureIdField(params.fields);
|
|
9082
9658
|
const fields = [
|
|
@@ -9224,16 +9800,16 @@ function buildPage25(c) {
|
|
|
9224
9800
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
9225
9801
|
}
|
|
9226
9802
|
function stdScoreEntity(params) {
|
|
9227
|
-
return buildEntity25(
|
|
9803
|
+
return buildEntity25(resolve26(params));
|
|
9228
9804
|
}
|
|
9229
9805
|
function stdScoreTrait(params) {
|
|
9230
|
-
return buildTrait26(
|
|
9806
|
+
return buildTrait26(resolve26(params));
|
|
9231
9807
|
}
|
|
9232
9808
|
function stdScorePage(params) {
|
|
9233
|
-
return buildPage25(
|
|
9809
|
+
return buildPage25(resolve26(params));
|
|
9234
9810
|
}
|
|
9235
9811
|
function stdScore(params) {
|
|
9236
|
-
const c =
|
|
9812
|
+
const c = resolve26(params);
|
|
9237
9813
|
return makeOrbital(
|
|
9238
9814
|
`${c.entityName}Orbital`,
|
|
9239
9815
|
buildEntity25(c),
|
|
@@ -9241,7 +9817,7 @@ function stdScore(params) {
|
|
|
9241
9817
|
[buildPage25(c)]
|
|
9242
9818
|
);
|
|
9243
9819
|
}
|
|
9244
|
-
function
|
|
9820
|
+
function resolve27(params) {
|
|
9245
9821
|
const { entityName } = params;
|
|
9246
9822
|
const baseFields = ensureIdField(params.fields);
|
|
9247
9823
|
const fields = [
|
|
@@ -9398,19 +9974,19 @@ function buildPage26(c) {
|
|
|
9398
9974
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
9399
9975
|
}
|
|
9400
9976
|
function stdCalendarEntity(params) {
|
|
9401
|
-
return buildEntity26(
|
|
9977
|
+
return buildEntity26(resolve27(params));
|
|
9402
9978
|
}
|
|
9403
9979
|
function stdCalendarTrait(params) {
|
|
9404
|
-
return buildTrait27(
|
|
9980
|
+
return buildTrait27(resolve27(params));
|
|
9405
9981
|
}
|
|
9406
9982
|
function stdCalendarPage(params) {
|
|
9407
|
-
return buildPage26(
|
|
9983
|
+
return buildPage26(resolve27(params));
|
|
9408
9984
|
}
|
|
9409
9985
|
function stdCalendar(params) {
|
|
9410
|
-
const c =
|
|
9986
|
+
const c = resolve27(params);
|
|
9411
9987
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity26(c), [buildTrait27(c)], [buildPage26(c)]);
|
|
9412
9988
|
}
|
|
9413
|
-
function
|
|
9989
|
+
function resolve28(params) {
|
|
9414
9990
|
const { entityName } = params;
|
|
9415
9991
|
const baseFields = ensureIdField(params.fields);
|
|
9416
9992
|
const fields = [
|
|
@@ -9528,19 +10104,19 @@ function buildPage27(c) {
|
|
|
9528
10104
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
9529
10105
|
}
|
|
9530
10106
|
function stdGalleryEntity(params) {
|
|
9531
|
-
return buildEntity27(
|
|
10107
|
+
return buildEntity27(resolve28(params));
|
|
9532
10108
|
}
|
|
9533
10109
|
function stdGalleryTrait(params) {
|
|
9534
|
-
return buildTrait28(
|
|
10110
|
+
return buildTrait28(resolve28(params));
|
|
9535
10111
|
}
|
|
9536
10112
|
function stdGalleryPage(params) {
|
|
9537
|
-
return buildPage27(
|
|
10113
|
+
return buildPage27(resolve28(params));
|
|
9538
10114
|
}
|
|
9539
10115
|
function stdGallery(params) {
|
|
9540
|
-
const c =
|
|
10116
|
+
const c = resolve28(params);
|
|
9541
10117
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity27(c), [buildTrait28(c)], [buildPage27(c)]);
|
|
9542
10118
|
}
|
|
9543
|
-
function
|
|
10119
|
+
function resolve29(params) {
|
|
9544
10120
|
const { entityName } = params;
|
|
9545
10121
|
const baseFields = ensureIdField(params.fields);
|
|
9546
10122
|
const fields = [
|
|
@@ -9687,19 +10263,19 @@ function buildPage28(c) {
|
|
|
9687
10263
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
9688
10264
|
}
|
|
9689
10265
|
function stdFlipCardEntity(params) {
|
|
9690
|
-
return buildEntity28(
|
|
10266
|
+
return buildEntity28(resolve29(params));
|
|
9691
10267
|
}
|
|
9692
10268
|
function stdFlipCardTrait(params) {
|
|
9693
|
-
return buildTrait29(
|
|
10269
|
+
return buildTrait29(resolve29(params));
|
|
9694
10270
|
}
|
|
9695
10271
|
function stdFlipCardPage(params) {
|
|
9696
|
-
return buildPage28(
|
|
10272
|
+
return buildPage28(resolve29(params));
|
|
9697
10273
|
}
|
|
9698
10274
|
function stdFlipCard(params) {
|
|
9699
|
-
const c =
|
|
10275
|
+
const c = resolve29(params);
|
|
9700
10276
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity28(c), [buildTrait29(c)], [buildPage28(c)]);
|
|
9701
10277
|
}
|
|
9702
|
-
function
|
|
10278
|
+
function resolve30(params) {
|
|
9703
10279
|
const { entityName } = params;
|
|
9704
10280
|
const baseFields = ensureIdField(params.fields);
|
|
9705
10281
|
const fields = [
|
|
@@ -9803,19 +10379,19 @@ function buildPage29(c) {
|
|
|
9803
10379
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
9804
10380
|
}
|
|
9805
10381
|
function stdRatingEntity(params) {
|
|
9806
|
-
return buildEntity29(
|
|
10382
|
+
return buildEntity29(resolve30(params));
|
|
9807
10383
|
}
|
|
9808
10384
|
function stdRatingTrait(params) {
|
|
9809
|
-
return buildTrait30(
|
|
10385
|
+
return buildTrait30(resolve30(params));
|
|
9810
10386
|
}
|
|
9811
10387
|
function stdRatingPage(params) {
|
|
9812
|
-
return buildPage29(
|
|
10388
|
+
return buildPage29(resolve30(params));
|
|
9813
10389
|
}
|
|
9814
10390
|
function stdRating(params) {
|
|
9815
|
-
const c =
|
|
10391
|
+
const c = resolve30(params);
|
|
9816
10392
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity29(c), [buildTrait30(c)], [buildPage29(c)]);
|
|
9817
10393
|
}
|
|
9818
|
-
function
|
|
10394
|
+
function resolve31(params) {
|
|
9819
10395
|
const { entityName } = params;
|
|
9820
10396
|
const baseFields = ensureIdField(params.fields);
|
|
9821
10397
|
const fields = [
|
|
@@ -9963,19 +10539,19 @@ function buildPage30(c) {
|
|
|
9963
10539
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
9964
10540
|
}
|
|
9965
10541
|
function stdUploadEntity(params) {
|
|
9966
|
-
return buildEntity30(
|
|
10542
|
+
return buildEntity30(resolve31(params));
|
|
9967
10543
|
}
|
|
9968
10544
|
function stdUploadTrait(params) {
|
|
9969
|
-
return buildTrait31(
|
|
10545
|
+
return buildTrait31(resolve31(params));
|
|
9970
10546
|
}
|
|
9971
10547
|
function stdUploadPage(params) {
|
|
9972
|
-
return buildPage30(
|
|
10548
|
+
return buildPage30(resolve31(params));
|
|
9973
10549
|
}
|
|
9974
10550
|
function stdUpload(params) {
|
|
9975
|
-
const c =
|
|
10551
|
+
const c = resolve31(params);
|
|
9976
10552
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity30(c), [buildTrait31(c)], [buildPage30(c)]);
|
|
9977
10553
|
}
|
|
9978
|
-
function
|
|
10554
|
+
function resolve32(params) {
|
|
9979
10555
|
const { entityName } = params;
|
|
9980
10556
|
const baseFields = ensureIdField(params.fields);
|
|
9981
10557
|
const fields = [
|
|
@@ -10092,19 +10668,19 @@ function buildPage31(c) {
|
|
|
10092
10668
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
10093
10669
|
}
|
|
10094
10670
|
function stdThemeEntity(params) {
|
|
10095
|
-
return buildEntity31(
|
|
10671
|
+
return buildEntity31(resolve32(params));
|
|
10096
10672
|
}
|
|
10097
10673
|
function stdThemeTrait(params) {
|
|
10098
|
-
return buildTrait32(
|
|
10674
|
+
return buildTrait32(resolve32(params));
|
|
10099
10675
|
}
|
|
10100
10676
|
function stdThemePage(params) {
|
|
10101
|
-
return buildPage31(
|
|
10677
|
+
return buildPage31(resolve32(params));
|
|
10102
10678
|
}
|
|
10103
10679
|
function stdTheme(params) {
|
|
10104
|
-
const c =
|
|
10680
|
+
const c = resolve32(params);
|
|
10105
10681
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity31(c), [buildTrait32(c)], [buildPage31(c)]);
|
|
10106
10682
|
}
|
|
10107
|
-
function
|
|
10683
|
+
function resolve33(params) {
|
|
10108
10684
|
const { entityName } = params;
|
|
10109
10685
|
const baseFields = ensureIdField(params.fields);
|
|
10110
10686
|
const fields = [
|
|
@@ -10254,19 +10830,19 @@ function buildPage32(c) {
|
|
|
10254
10830
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
10255
10831
|
}
|
|
10256
10832
|
function stdTextEffectsEntity(params) {
|
|
10257
|
-
return buildEntity32(
|
|
10833
|
+
return buildEntity32(resolve33(params));
|
|
10258
10834
|
}
|
|
10259
10835
|
function stdTextEffectsTrait(params) {
|
|
10260
|
-
return buildTrait33(
|
|
10836
|
+
return buildTrait33(resolve33(params));
|
|
10261
10837
|
}
|
|
10262
10838
|
function stdTextEffectsPage(params) {
|
|
10263
|
-
return buildPage32(
|
|
10839
|
+
return buildPage32(resolve33(params));
|
|
10264
10840
|
}
|
|
10265
10841
|
function stdTextEffects(params) {
|
|
10266
|
-
const c =
|
|
10842
|
+
const c = resolve33(params);
|
|
10267
10843
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity32(c), [buildTrait33(c)], [buildPage32(c)]);
|
|
10268
10844
|
}
|
|
10269
|
-
function
|
|
10845
|
+
function resolve34(params) {
|
|
10270
10846
|
const { entityName } = params;
|
|
10271
10847
|
const baseFields = ensureIdField(params.fields);
|
|
10272
10848
|
const fields = [
|
|
@@ -10450,16 +11026,16 @@ function buildPage33(c) {
|
|
|
10450
11026
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
10451
11027
|
}
|
|
10452
11028
|
function stdCollisionEntity(params) {
|
|
10453
|
-
return buildEntity33(
|
|
11029
|
+
return buildEntity33(resolve34(params));
|
|
10454
11030
|
}
|
|
10455
11031
|
function stdCollisionTrait(params) {
|
|
10456
|
-
return buildTrait34(
|
|
11032
|
+
return buildTrait34(resolve34(params));
|
|
10457
11033
|
}
|
|
10458
11034
|
function stdCollisionPage(params) {
|
|
10459
|
-
return buildPage33(
|
|
11035
|
+
return buildPage33(resolve34(params));
|
|
10460
11036
|
}
|
|
10461
11037
|
function stdCollision(params) {
|
|
10462
|
-
const c =
|
|
11038
|
+
const c = resolve34(params);
|
|
10463
11039
|
return makeOrbital(
|
|
10464
11040
|
`${c.entityName}Orbital`,
|
|
10465
11041
|
buildEntity33(c),
|
|
@@ -10467,7 +11043,7 @@ function stdCollision(params) {
|
|
|
10467
11043
|
[buildPage33(c)]
|
|
10468
11044
|
);
|
|
10469
11045
|
}
|
|
10470
|
-
function
|
|
11046
|
+
function resolve35(params) {
|
|
10471
11047
|
const { entityName } = params;
|
|
10472
11048
|
const baseFields = ensureIdField(params.fields);
|
|
10473
11049
|
const fields = [
|
|
@@ -10614,16 +11190,16 @@ function buildPage34(c) {
|
|
|
10614
11190
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
10615
11191
|
}
|
|
10616
11192
|
function stdPhysics2dEntity(params) {
|
|
10617
|
-
return buildEntity34(
|
|
11193
|
+
return buildEntity34(resolve35(params));
|
|
10618
11194
|
}
|
|
10619
11195
|
function stdPhysics2dTrait(params) {
|
|
10620
|
-
return buildTrait35(
|
|
11196
|
+
return buildTrait35(resolve35(params));
|
|
10621
11197
|
}
|
|
10622
11198
|
function stdPhysics2dPage(params) {
|
|
10623
|
-
return buildPage34(
|
|
11199
|
+
return buildPage34(resolve35(params));
|
|
10624
11200
|
}
|
|
10625
11201
|
function stdPhysics2d(params) {
|
|
10626
|
-
const c =
|
|
11202
|
+
const c = resolve35(params);
|
|
10627
11203
|
return makeOrbital(
|
|
10628
11204
|
`${c.entityName}Orbital`,
|
|
10629
11205
|
buildEntity34(c),
|
|
@@ -10631,7 +11207,7 @@ function stdPhysics2d(params) {
|
|
|
10631
11207
|
[buildPage34(c)]
|
|
10632
11208
|
);
|
|
10633
11209
|
}
|
|
10634
|
-
function
|
|
11210
|
+
function resolve36(params) {
|
|
10635
11211
|
const { entityName } = params;
|
|
10636
11212
|
const baseFields = ensureIdField(params.fields);
|
|
10637
11213
|
const fields = [
|
|
@@ -10826,16 +11402,16 @@ function buildPage35(c) {
|
|
|
10826
11402
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
10827
11403
|
}
|
|
10828
11404
|
function stdRateLimiterEntity(params) {
|
|
10829
|
-
return buildEntity35(
|
|
11405
|
+
return buildEntity35(resolve36(params));
|
|
10830
11406
|
}
|
|
10831
11407
|
function stdRateLimiterTrait(params) {
|
|
10832
|
-
return buildTrait36(
|
|
11408
|
+
return buildTrait36(resolve36(params));
|
|
10833
11409
|
}
|
|
10834
11410
|
function stdRateLimiterPage(params) {
|
|
10835
|
-
return buildPage35(
|
|
11411
|
+
return buildPage35(resolve36(params));
|
|
10836
11412
|
}
|
|
10837
11413
|
function stdRateLimiter(params) {
|
|
10838
|
-
const c =
|
|
11414
|
+
const c = resolve36(params);
|
|
10839
11415
|
return makeOrbital(
|
|
10840
11416
|
`${c.entityName}Orbital`,
|
|
10841
11417
|
buildEntity35(c),
|
|
@@ -10843,7 +11419,7 @@ function stdRateLimiter(params) {
|
|
|
10843
11419
|
[buildPage35(c)]
|
|
10844
11420
|
);
|
|
10845
11421
|
}
|
|
10846
|
-
function
|
|
11422
|
+
function resolve37(params) {
|
|
10847
11423
|
const { entityName } = params;
|
|
10848
11424
|
const fields = ensureIdField(params.fields);
|
|
10849
11425
|
const nonIdFields = fields.filter((f) => f.name !== "id");
|
|
@@ -10900,19 +11476,19 @@ function buildPage36(c) {
|
|
|
10900
11476
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
10901
11477
|
}
|
|
10902
11478
|
function stdGameHudEntity(params) {
|
|
10903
|
-
return buildEntity36(
|
|
11479
|
+
return buildEntity36(resolve37(params));
|
|
10904
11480
|
}
|
|
10905
11481
|
function stdGameHudTrait(params) {
|
|
10906
|
-
return buildTrait37(
|
|
11482
|
+
return buildTrait37(resolve37(params));
|
|
10907
11483
|
}
|
|
10908
11484
|
function stdGameHudPage(params) {
|
|
10909
|
-
return buildPage36(
|
|
11485
|
+
return buildPage36(resolve37(params));
|
|
10910
11486
|
}
|
|
10911
11487
|
function stdGameHud(params) {
|
|
10912
|
-
const c =
|
|
11488
|
+
const c = resolve37(params);
|
|
10913
11489
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity36(c), [buildTrait37(c)], [buildPage36(c)]);
|
|
10914
11490
|
}
|
|
10915
|
-
function
|
|
11491
|
+
function resolve38(params) {
|
|
10916
11492
|
const { entityName } = params;
|
|
10917
11493
|
const baseFields = ensureIdField(params.fields);
|
|
10918
11494
|
const p = plural(entityName);
|
|
@@ -10984,19 +11560,19 @@ function buildPage37(c) {
|
|
|
10984
11560
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
10985
11561
|
}
|
|
10986
11562
|
function stdScoreBoardEntity(params) {
|
|
10987
|
-
return buildEntity37(
|
|
11563
|
+
return buildEntity37(resolve38(params));
|
|
10988
11564
|
}
|
|
10989
11565
|
function stdScoreBoardTrait(params) {
|
|
10990
|
-
return buildTrait38(
|
|
11566
|
+
return buildTrait38(resolve38(params));
|
|
10991
11567
|
}
|
|
10992
11568
|
function stdScoreBoardPage(params) {
|
|
10993
|
-
return buildPage37(
|
|
11569
|
+
return buildPage37(resolve38(params));
|
|
10994
11570
|
}
|
|
10995
11571
|
function stdScoreBoard(params) {
|
|
10996
|
-
const c =
|
|
11572
|
+
const c = resolve38(params);
|
|
10997
11573
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity37(c), [buildTrait38(c)], [buildPage37(c)]);
|
|
10998
11574
|
}
|
|
10999
|
-
function
|
|
11575
|
+
function resolve39(params) {
|
|
11000
11576
|
const { entityName } = params;
|
|
11001
11577
|
const fields = ensureIdField(params.fields);
|
|
11002
11578
|
const p = plural(entityName);
|
|
@@ -11064,19 +11640,19 @@ function buildPage38(c) {
|
|
|
11064
11640
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
11065
11641
|
}
|
|
11066
11642
|
function stdGameMenuEntity(params) {
|
|
11067
|
-
return buildEntity38(
|
|
11643
|
+
return buildEntity38(resolve39(params));
|
|
11068
11644
|
}
|
|
11069
11645
|
function stdGameMenuTrait(params) {
|
|
11070
|
-
return buildTrait39(
|
|
11646
|
+
return buildTrait39(resolve39(params));
|
|
11071
11647
|
}
|
|
11072
11648
|
function stdGameMenuPage(params) {
|
|
11073
|
-
return buildPage38(
|
|
11649
|
+
return buildPage38(resolve39(params));
|
|
11074
11650
|
}
|
|
11075
11651
|
function stdGameMenu(params) {
|
|
11076
|
-
const c =
|
|
11652
|
+
const c = resolve39(params);
|
|
11077
11653
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity38(c), [buildTrait39(c)], [buildPage38(c)]);
|
|
11078
11654
|
}
|
|
11079
|
-
function
|
|
11655
|
+
function resolve40(params) {
|
|
11080
11656
|
const { entityName } = params;
|
|
11081
11657
|
const baseFields = ensureIdField(params.fields);
|
|
11082
11658
|
const p = plural(entityName);
|
|
@@ -11145,19 +11721,19 @@ function buildPage39(c) {
|
|
|
11145
11721
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
11146
11722
|
}
|
|
11147
11723
|
function stdGameOverScreenEntity(params) {
|
|
11148
|
-
return buildEntity39(
|
|
11724
|
+
return buildEntity39(resolve40(params));
|
|
11149
11725
|
}
|
|
11150
11726
|
function stdGameOverScreenTrait(params) {
|
|
11151
|
-
return buildTrait40(
|
|
11727
|
+
return buildTrait40(resolve40(params));
|
|
11152
11728
|
}
|
|
11153
11729
|
function stdGameOverScreenPage(params) {
|
|
11154
|
-
return buildPage39(
|
|
11730
|
+
return buildPage39(resolve40(params));
|
|
11155
11731
|
}
|
|
11156
11732
|
function stdGameOverScreen(params) {
|
|
11157
|
-
const c =
|
|
11733
|
+
const c = resolve40(params);
|
|
11158
11734
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity39(c), [buildTrait40(c)], [buildPage39(c)]);
|
|
11159
11735
|
}
|
|
11160
|
-
function
|
|
11736
|
+
function resolve41(params) {
|
|
11161
11737
|
const { entityName } = params;
|
|
11162
11738
|
const baseFields = ensureIdField(params.fields);
|
|
11163
11739
|
const p = plural(entityName);
|
|
@@ -11247,19 +11823,19 @@ function buildPage40(c) {
|
|
|
11247
11823
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
11248
11824
|
}
|
|
11249
11825
|
function stdDialogueBoxEntity(params) {
|
|
11250
|
-
return buildEntity40(
|
|
11826
|
+
return buildEntity40(resolve41(params));
|
|
11251
11827
|
}
|
|
11252
11828
|
function stdDialogueBoxTrait(params) {
|
|
11253
|
-
return buildTrait41(
|
|
11829
|
+
return buildTrait41(resolve41(params));
|
|
11254
11830
|
}
|
|
11255
11831
|
function stdDialogueBoxPage(params) {
|
|
11256
|
-
return buildPage40(
|
|
11832
|
+
return buildPage40(resolve41(params));
|
|
11257
11833
|
}
|
|
11258
11834
|
function stdDialogueBox(params) {
|
|
11259
|
-
const c =
|
|
11835
|
+
const c = resolve41(params);
|
|
11260
11836
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity40(c), [buildTrait41(c)], [buildPage40(c)]);
|
|
11261
11837
|
}
|
|
11262
|
-
function
|
|
11838
|
+
function resolve42(params) {
|
|
11263
11839
|
const { entityName } = params;
|
|
11264
11840
|
const fields = ensureIdField(params.fields);
|
|
11265
11841
|
const p = plural(entityName);
|
|
@@ -11333,19 +11909,19 @@ function buildPage41(c) {
|
|
|
11333
11909
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
11334
11910
|
}
|
|
11335
11911
|
function stdInventoryPanelEntity(params) {
|
|
11336
|
-
return buildEntity41(
|
|
11912
|
+
return buildEntity41(resolve42(params));
|
|
11337
11913
|
}
|
|
11338
11914
|
function stdInventoryPanelTrait(params) {
|
|
11339
|
-
return buildTrait42(
|
|
11915
|
+
return buildTrait42(resolve42(params));
|
|
11340
11916
|
}
|
|
11341
11917
|
function stdInventoryPanelPage(params) {
|
|
11342
|
-
return buildPage41(
|
|
11918
|
+
return buildPage41(resolve42(params));
|
|
11343
11919
|
}
|
|
11344
11920
|
function stdInventoryPanel(params) {
|
|
11345
|
-
const c =
|
|
11921
|
+
const c = resolve42(params);
|
|
11346
11922
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity41(c), [buildTrait42(c)], [buildPage41(c)]);
|
|
11347
11923
|
}
|
|
11348
|
-
function
|
|
11924
|
+
function resolve43(params) {
|
|
11349
11925
|
const { entityName } = params;
|
|
11350
11926
|
const fields = ensureIdField(params.fields);
|
|
11351
11927
|
const p = plural(entityName);
|
|
@@ -11416,19 +11992,19 @@ function buildPage42(c) {
|
|
|
11416
11992
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
11417
11993
|
}
|
|
11418
11994
|
function stdCombatLogEntity(params) {
|
|
11419
|
-
return buildEntity42(
|
|
11995
|
+
return buildEntity42(resolve43(params));
|
|
11420
11996
|
}
|
|
11421
11997
|
function stdCombatLogTrait(params) {
|
|
11422
|
-
return buildTrait43(
|
|
11998
|
+
return buildTrait43(resolve43(params));
|
|
11423
11999
|
}
|
|
11424
12000
|
function stdCombatLogPage(params) {
|
|
11425
|
-
return buildPage42(
|
|
12001
|
+
return buildPage42(resolve43(params));
|
|
11426
12002
|
}
|
|
11427
12003
|
function stdCombatLog(params) {
|
|
11428
|
-
const c =
|
|
12004
|
+
const c = resolve43(params);
|
|
11429
12005
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity42(c), [buildTrait43(c)], [buildPage42(c)]);
|
|
11430
12006
|
}
|
|
11431
|
-
function
|
|
12007
|
+
function resolve44(params) {
|
|
11432
12008
|
const { entityName } = params;
|
|
11433
12009
|
const baseFields = ensureIdField(params.fields);
|
|
11434
12010
|
const p = plural(entityName);
|
|
@@ -11530,19 +12106,19 @@ function buildPage43(c) {
|
|
|
11530
12106
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
11531
12107
|
}
|
|
11532
12108
|
function stdSpriteEntity(params) {
|
|
11533
|
-
return buildEntity43(
|
|
12109
|
+
return buildEntity43(resolve44(params));
|
|
11534
12110
|
}
|
|
11535
12111
|
function stdSpriteTrait(params) {
|
|
11536
|
-
return buildTrait44(
|
|
12112
|
+
return buildTrait44(resolve44(params));
|
|
11537
12113
|
}
|
|
11538
12114
|
function stdSpritePage(params) {
|
|
11539
|
-
return buildPage43(
|
|
12115
|
+
return buildPage43(resolve44(params));
|
|
11540
12116
|
}
|
|
11541
12117
|
function stdSprite(params) {
|
|
11542
|
-
const c =
|
|
12118
|
+
const c = resolve44(params);
|
|
11543
12119
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity43(c), [buildTrait44(c)], [buildPage43(c)]);
|
|
11544
12120
|
}
|
|
11545
|
-
function
|
|
12121
|
+
function resolve45(params) {
|
|
11546
12122
|
const { entityName } = params;
|
|
11547
12123
|
const fields = ensureIdField(params.fields);
|
|
11548
12124
|
const p = plural(entityName);
|
|
@@ -11660,19 +12236,19 @@ function buildPage44(c) {
|
|
|
11660
12236
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
11661
12237
|
}
|
|
11662
12238
|
function stdGameAudioEntity(params) {
|
|
11663
|
-
return buildEntity44(
|
|
12239
|
+
return buildEntity44(resolve45(params));
|
|
11664
12240
|
}
|
|
11665
12241
|
function stdGameAudioTrait(params) {
|
|
11666
|
-
return buildTrait45(
|
|
12242
|
+
return buildTrait45(resolve45(params));
|
|
11667
12243
|
}
|
|
11668
12244
|
function stdGameAudioPage(params) {
|
|
11669
|
-
return buildPage44(
|
|
12245
|
+
return buildPage44(resolve45(params));
|
|
11670
12246
|
}
|
|
11671
12247
|
function stdGameAudio(params) {
|
|
11672
|
-
const c =
|
|
12248
|
+
const c = resolve45(params);
|
|
11673
12249
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity44(c), [buildTrait45(c)], [buildPage44(c)]);
|
|
11674
12250
|
}
|
|
11675
|
-
function
|
|
12251
|
+
function resolve46(params) {
|
|
11676
12252
|
const { entityName } = params;
|
|
11677
12253
|
const fields = ensureIdField(params.fields);
|
|
11678
12254
|
const p = plural(entityName);
|
|
@@ -11775,19 +12351,19 @@ function buildPage45(c) {
|
|
|
11775
12351
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
11776
12352
|
}
|
|
11777
12353
|
function stdIsometricCanvasEntity(params) {
|
|
11778
|
-
return buildEntity45(
|
|
12354
|
+
return buildEntity45(resolve46(params));
|
|
11779
12355
|
}
|
|
11780
12356
|
function stdIsometricCanvasTrait(params) {
|
|
11781
|
-
return buildTrait46(
|
|
12357
|
+
return buildTrait46(resolve46(params));
|
|
11782
12358
|
}
|
|
11783
12359
|
function stdIsometricCanvasPage(params) {
|
|
11784
|
-
return buildPage45(
|
|
12360
|
+
return buildPage45(resolve46(params));
|
|
11785
12361
|
}
|
|
11786
12362
|
function stdIsometricCanvas(params) {
|
|
11787
|
-
const c =
|
|
12363
|
+
const c = resolve46(params);
|
|
11788
12364
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity45(c), [buildTrait46(c)], [buildPage45(c)]);
|
|
11789
12365
|
}
|
|
11790
|
-
function
|
|
12366
|
+
function resolve47(params) {
|
|
11791
12367
|
const { entityName } = params;
|
|
11792
12368
|
const fields = ensureIdField(params.fields);
|
|
11793
12369
|
const p = plural(entityName);
|
|
@@ -11881,19 +12457,19 @@ function buildPage46(c) {
|
|
|
11881
12457
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
11882
12458
|
}
|
|
11883
12459
|
function stdPlatformerCanvasEntity(params) {
|
|
11884
|
-
return buildEntity46(
|
|
12460
|
+
return buildEntity46(resolve47(params));
|
|
11885
12461
|
}
|
|
11886
12462
|
function stdPlatformerCanvasTrait(params) {
|
|
11887
|
-
return buildTrait47(
|
|
12463
|
+
return buildTrait47(resolve47(params));
|
|
11888
12464
|
}
|
|
11889
12465
|
function stdPlatformerCanvasPage(params) {
|
|
11890
|
-
return buildPage46(
|
|
12466
|
+
return buildPage46(resolve47(params));
|
|
11891
12467
|
}
|
|
11892
12468
|
function stdPlatformerCanvas(params) {
|
|
11893
|
-
const c =
|
|
12469
|
+
const c = resolve47(params);
|
|
11894
12470
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity46(c), [buildTrait47(c)], [buildPage46(c)]);
|
|
11895
12471
|
}
|
|
11896
|
-
function
|
|
12472
|
+
function resolve48(params) {
|
|
11897
12473
|
const { entityName } = params;
|
|
11898
12474
|
const fields = ensureIdField(params.fields);
|
|
11899
12475
|
const p = plural(entityName);
|
|
@@ -11961,19 +12537,19 @@ function buildPage47(c) {
|
|
|
11961
12537
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
11962
12538
|
}
|
|
11963
12539
|
function stdSimulationCanvasEntity(params) {
|
|
11964
|
-
return buildEntity47(
|
|
12540
|
+
return buildEntity47(resolve48(params));
|
|
11965
12541
|
}
|
|
11966
12542
|
function stdSimulationCanvasTrait(params) {
|
|
11967
|
-
return buildTrait48(
|
|
12543
|
+
return buildTrait48(resolve48(params));
|
|
11968
12544
|
}
|
|
11969
12545
|
function stdSimulationCanvasPage(params) {
|
|
11970
|
-
return buildPage47(
|
|
12546
|
+
return buildPage47(resolve48(params));
|
|
11971
12547
|
}
|
|
11972
12548
|
function stdSimulationCanvas(params) {
|
|
11973
|
-
const c =
|
|
12549
|
+
const c = resolve48(params);
|
|
11974
12550
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity47(c), [buildTrait48(c)], [buildPage47(c)]);
|
|
11975
12551
|
}
|
|
11976
|
-
function
|
|
12552
|
+
function resolve49(params) {
|
|
11977
12553
|
const { entityName } = params;
|
|
11978
12554
|
const fields = ensureIdField(params.fields);
|
|
11979
12555
|
const p = plural(entityName);
|
|
@@ -12056,19 +12632,19 @@ function buildPage48(c) {
|
|
|
12056
12632
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
12057
12633
|
}
|
|
12058
12634
|
function stdGameCanvas2dEntity(params) {
|
|
12059
|
-
return buildEntity48(
|
|
12635
|
+
return buildEntity48(resolve49(params));
|
|
12060
12636
|
}
|
|
12061
12637
|
function stdGameCanvas2dTrait(params) {
|
|
12062
|
-
return buildTrait49(
|
|
12638
|
+
return buildTrait49(resolve49(params));
|
|
12063
12639
|
}
|
|
12064
12640
|
function stdGameCanvas2dPage(params) {
|
|
12065
|
-
return buildPage48(
|
|
12641
|
+
return buildPage48(resolve49(params));
|
|
12066
12642
|
}
|
|
12067
12643
|
function stdGameCanvas2d(params) {
|
|
12068
|
-
const c =
|
|
12644
|
+
const c = resolve49(params);
|
|
12069
12645
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity48(c), [buildTrait49(c)], [buildPage48(c)]);
|
|
12070
12646
|
}
|
|
12071
|
-
function
|
|
12647
|
+
function resolve50(params) {
|
|
12072
12648
|
const { entityName } = params;
|
|
12073
12649
|
const fields = ensureIdField(params.fields);
|
|
12074
12650
|
const p = plural(entityName);
|
|
@@ -12159,19 +12735,19 @@ function buildPage49(c) {
|
|
|
12159
12735
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
12160
12736
|
}
|
|
12161
12737
|
function stdGameCanvas3dEntity(params) {
|
|
12162
|
-
return buildEntity49(
|
|
12738
|
+
return buildEntity49(resolve50(params));
|
|
12163
12739
|
}
|
|
12164
12740
|
function stdGameCanvas3dTrait(params) {
|
|
12165
|
-
return buildTrait50(
|
|
12741
|
+
return buildTrait50(resolve50(params));
|
|
12166
12742
|
}
|
|
12167
12743
|
function stdGameCanvas3dPage(params) {
|
|
12168
|
-
return buildPage49(
|
|
12744
|
+
return buildPage49(resolve50(params));
|
|
12169
12745
|
}
|
|
12170
12746
|
function stdGameCanvas3d(params) {
|
|
12171
|
-
const c =
|
|
12747
|
+
const c = resolve50(params);
|
|
12172
12748
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity49(c), [buildTrait50(c)], [buildPage49(c)]);
|
|
12173
12749
|
}
|
|
12174
|
-
function
|
|
12750
|
+
function resolve51(params) {
|
|
12175
12751
|
const { entityName } = params;
|
|
12176
12752
|
const fields = ensureIdField(params.fields);
|
|
12177
12753
|
const nonIdFields = fields.filter((f) => f.name !== "id");
|
|
@@ -12246,14 +12822,14 @@ function detailContent(detailFields, closeEvent) {
|
|
|
12246
12822
|
};
|
|
12247
12823
|
}
|
|
12248
12824
|
function stdListEntity(params) {
|
|
12249
|
-
const c =
|
|
12825
|
+
const c = resolve51(params);
|
|
12250
12826
|
return makeEntity({ name: c.entityName, fields: c.fields, persistence: c.persistence, collection: c.collection });
|
|
12251
12827
|
}
|
|
12252
12828
|
function stdListTrait(params) {
|
|
12253
12829
|
return extractTrait(stdList(params));
|
|
12254
12830
|
}
|
|
12255
12831
|
function stdListPage(params) {
|
|
12256
|
-
const c =
|
|
12832
|
+
const c = resolve51(params);
|
|
12257
12833
|
return {
|
|
12258
12834
|
name: c.pageName,
|
|
12259
12835
|
path: c.pagePath,
|
|
@@ -12268,7 +12844,7 @@ function stdListPage(params) {
|
|
|
12268
12844
|
};
|
|
12269
12845
|
}
|
|
12270
12846
|
function stdList(params) {
|
|
12271
|
-
const c =
|
|
12847
|
+
const c = resolve51(params);
|
|
12272
12848
|
const { entityName, fields, formFields, detailFields } = c;
|
|
12273
12849
|
const UPPER = entityName.replace(/([a-z])([A-Z])/g, "$1_$2").toUpperCase();
|
|
12274
12850
|
const CREATED = `${UPPER}_CREATED`;
|
|
@@ -12414,7 +12990,7 @@ function stdList(params) {
|
|
|
12414
12990
|
pages: [page]
|
|
12415
12991
|
};
|
|
12416
12992
|
}
|
|
12417
|
-
function
|
|
12993
|
+
function resolve52(params) {
|
|
12418
12994
|
const { entityName } = params;
|
|
12419
12995
|
const baseFields = ensureIdField(params.fields);
|
|
12420
12996
|
const domainFields = [
|
|
@@ -12543,14 +13119,14 @@ function buildCartTrait(c) {
|
|
|
12543
13119
|
};
|
|
12544
13120
|
}
|
|
12545
13121
|
function stdCartEntity(params) {
|
|
12546
|
-
const c =
|
|
13122
|
+
const c = resolve52(params);
|
|
12547
13123
|
return makeEntity({ name: c.entityName, fields: c.fields, persistence: c.persistence, collection: c.collection });
|
|
12548
13124
|
}
|
|
12549
13125
|
function stdCartTrait(params) {
|
|
12550
|
-
return buildCartTrait(
|
|
13126
|
+
return buildCartTrait(resolve52(params));
|
|
12551
13127
|
}
|
|
12552
13128
|
function stdCartPage(params) {
|
|
12553
|
-
const c =
|
|
13129
|
+
const c = resolve52(params);
|
|
12554
13130
|
return {
|
|
12555
13131
|
name: c.pageName,
|
|
12556
13132
|
path: c.pagePath,
|
|
@@ -12559,7 +13135,7 @@ function stdCartPage(params) {
|
|
|
12559
13135
|
};
|
|
12560
13136
|
}
|
|
12561
13137
|
function stdCart(params) {
|
|
12562
|
-
const c =
|
|
13138
|
+
const c = resolve52(params);
|
|
12563
13139
|
const { entityName, fields, formFields } = c;
|
|
12564
13140
|
const cartTrait = buildCartTrait(c);
|
|
12565
13141
|
const addTrait = extractTrait(stdModal({
|
|
@@ -12615,7 +13191,7 @@ function stdCart(params) {
|
|
|
12615
13191
|
pages: [page]
|
|
12616
13192
|
};
|
|
12617
13193
|
}
|
|
12618
|
-
function
|
|
13194
|
+
function resolve53(params) {
|
|
12619
13195
|
const { entityName } = params;
|
|
12620
13196
|
const fields = ensureIdField(params.fields);
|
|
12621
13197
|
const nonIdFields = fields.filter((f) => f.name !== "id");
|
|
@@ -12641,14 +13217,14 @@ function resolve55(params) {
|
|
|
12641
13217
|
};
|
|
12642
13218
|
}
|
|
12643
13219
|
function stdDetailEntity(params) {
|
|
12644
|
-
const c =
|
|
13220
|
+
const c = resolve53(params);
|
|
12645
13221
|
return makeEntity({ name: c.entityName, fields: c.fields, persistence: c.persistence, collection: c.collection });
|
|
12646
13222
|
}
|
|
12647
13223
|
function stdDetailTrait(params) {
|
|
12648
13224
|
return extractTrait(stdDetail(params));
|
|
12649
13225
|
}
|
|
12650
13226
|
function stdDetailPage(params) {
|
|
12651
|
-
const c =
|
|
13227
|
+
const c = resolve53(params);
|
|
12652
13228
|
return {
|
|
12653
13229
|
name: c.pageName,
|
|
12654
13230
|
path: c.pagePath,
|
|
@@ -12657,7 +13233,7 @@ function stdDetailPage(params) {
|
|
|
12657
13233
|
};
|
|
12658
13234
|
}
|
|
12659
13235
|
function stdDetail(params) {
|
|
12660
|
-
const c =
|
|
13236
|
+
const c = resolve53(params);
|
|
12661
13237
|
const { entityName, fields, formFields, detailFields } = c;
|
|
12662
13238
|
const browseTrait = extractTrait(stdBrowse({
|
|
12663
13239
|
entityName,
|
|
@@ -12755,7 +13331,7 @@ function stdDetail(params) {
|
|
|
12755
13331
|
pages: [page]
|
|
12756
13332
|
};
|
|
12757
13333
|
}
|
|
12758
|
-
function
|
|
13334
|
+
function resolve54(params) {
|
|
12759
13335
|
const { entityName } = params;
|
|
12760
13336
|
const baseFields = ensureIdField(params.fields);
|
|
12761
13337
|
const p = plural(entityName);
|
|
@@ -12817,14 +13393,14 @@ function useItemContent(entityName, listFields) {
|
|
|
12817
13393
|
};
|
|
12818
13394
|
}
|
|
12819
13395
|
function stdInventoryEntity(params) {
|
|
12820
|
-
const c =
|
|
13396
|
+
const c = resolve54(params);
|
|
12821
13397
|
return makeEntity({ name: c.entityName, fields: c.fields, persistence: c.persistence, collection: c.collection });
|
|
12822
13398
|
}
|
|
12823
13399
|
function stdInventoryTrait(params) {
|
|
12824
13400
|
return extractTrait(stdInventory(params));
|
|
12825
13401
|
}
|
|
12826
13402
|
function stdInventoryPage(params) {
|
|
12827
|
-
const c =
|
|
13403
|
+
const c = resolve54(params);
|
|
12828
13404
|
return {
|
|
12829
13405
|
name: c.pageName,
|
|
12830
13406
|
path: c.pagePath,
|
|
@@ -12838,7 +13414,7 @@ function stdInventoryPage(params) {
|
|
|
12838
13414
|
};
|
|
12839
13415
|
}
|
|
12840
13416
|
function stdInventory(params) {
|
|
12841
|
-
const c =
|
|
13417
|
+
const c = resolve54(params);
|
|
12842
13418
|
const { entityName, fields, formFields, listFields } = c;
|
|
12843
13419
|
const browseTrait = extractTrait(stdBrowse({
|
|
12844
13420
|
entityName,
|
|
@@ -12933,7 +13509,7 @@ function stdInventory(params) {
|
|
|
12933
13509
|
pages: [page]
|
|
12934
13510
|
};
|
|
12935
13511
|
}
|
|
12936
|
-
function
|
|
13512
|
+
function resolve55(params) {
|
|
12937
13513
|
const { entityName } = params;
|
|
12938
13514
|
const fields = ensureIdField(params.fields);
|
|
12939
13515
|
const nonIdFields = fields.filter((f) => f.name !== "id");
|
|
@@ -12998,14 +13574,14 @@ function viewContent(detailFields) {
|
|
|
12998
13574
|
};
|
|
12999
13575
|
}
|
|
13000
13576
|
function stdMessagingEntity(params) {
|
|
13001
|
-
const c =
|
|
13577
|
+
const c = resolve55(params);
|
|
13002
13578
|
return makeEntity({ name: c.entityName, fields: c.fields, persistence: c.persistence, collection: c.collection });
|
|
13003
13579
|
}
|
|
13004
13580
|
function stdMessagingTrait(params) {
|
|
13005
13581
|
return extractTrait(stdMessaging(params));
|
|
13006
13582
|
}
|
|
13007
13583
|
function stdMessagingPage(params) {
|
|
13008
|
-
const c =
|
|
13584
|
+
const c = resolve55(params);
|
|
13009
13585
|
return {
|
|
13010
13586
|
name: c.pageName,
|
|
13011
13587
|
path: c.pagePath,
|
|
@@ -13018,7 +13594,7 @@ function stdMessagingPage(params) {
|
|
|
13018
13594
|
};
|
|
13019
13595
|
}
|
|
13020
13596
|
function stdMessaging(params) {
|
|
13021
|
-
const c =
|
|
13597
|
+
const c = resolve55(params);
|
|
13022
13598
|
const { entityName, fields, formFields, detailFields } = c;
|
|
13023
13599
|
const messagingColumns = params.displayColumns ?? [
|
|
13024
13600
|
{ name: c.listFields[0] ?? "name", label: humanizeLabel(c.listFields[0] ?? "name"), variant: "h4", icon: c.headerIcon },
|
|
@@ -13088,7 +13664,7 @@ function stdMessaging(params) {
|
|
|
13088
13664
|
pages: [page]
|
|
13089
13665
|
};
|
|
13090
13666
|
}
|
|
13091
|
-
function
|
|
13667
|
+
function resolve56(params) {
|
|
13092
13668
|
const { entityName } = params;
|
|
13093
13669
|
const baseFields = ensureIdField(params.fields);
|
|
13094
13670
|
const p = plural(entityName);
|
|
@@ -13145,14 +13721,14 @@ function detailContent2(detailFields, headerIcon) {
|
|
|
13145
13721
|
};
|
|
13146
13722
|
}
|
|
13147
13723
|
function stdGeospatialEntity(params) {
|
|
13148
|
-
const c =
|
|
13724
|
+
const c = resolve56(params);
|
|
13149
13725
|
return makeEntity({ name: c.entityName, fields: c.fields, persistence: c.persistence, collection: c.collection });
|
|
13150
13726
|
}
|
|
13151
13727
|
function stdGeospatialTrait(params) {
|
|
13152
13728
|
return extractTrait(stdGeospatial(params));
|
|
13153
13729
|
}
|
|
13154
13730
|
function stdGeospatialPage(params) {
|
|
13155
|
-
const c =
|
|
13731
|
+
const c = resolve56(params);
|
|
13156
13732
|
return {
|
|
13157
13733
|
name: c.pageName,
|
|
13158
13734
|
path: c.pagePath,
|
|
@@ -13165,7 +13741,7 @@ function stdGeospatialPage(params) {
|
|
|
13165
13741
|
};
|
|
13166
13742
|
}
|
|
13167
13743
|
function stdGeospatial(params) {
|
|
13168
|
-
const c =
|
|
13744
|
+
const c = resolve56(params);
|
|
13169
13745
|
const { entityName, fields, detailFields } = c;
|
|
13170
13746
|
const browseTrait = extractTrait(stdBrowse({
|
|
13171
13747
|
entityName,
|
|
@@ -13228,7 +13804,7 @@ function stdGeospatial(params) {
|
|
|
13228
13804
|
pages: [page]
|
|
13229
13805
|
};
|
|
13230
13806
|
}
|
|
13231
|
-
function
|
|
13807
|
+
function resolve57(params) {
|
|
13232
13808
|
const { entityName } = params;
|
|
13233
13809
|
const baseFields = ensureIdField(params.fields);
|
|
13234
13810
|
const fields = [
|
|
@@ -13433,19 +14009,19 @@ function buildPage50(c) {
|
|
|
13433
14009
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
13434
14010
|
}
|
|
13435
14011
|
function stdQuizEntity(params) {
|
|
13436
|
-
return buildEntity50(
|
|
14012
|
+
return buildEntity50(resolve57(params));
|
|
13437
14013
|
}
|
|
13438
14014
|
function stdQuizTrait(params) {
|
|
13439
|
-
return buildTrait51(
|
|
14015
|
+
return buildTrait51(resolve57(params));
|
|
13440
14016
|
}
|
|
13441
14017
|
function stdQuizPage(params) {
|
|
13442
|
-
return buildPage50(
|
|
14018
|
+
return buildPage50(resolve57(params));
|
|
13443
14019
|
}
|
|
13444
14020
|
function stdQuiz(params) {
|
|
13445
|
-
const c =
|
|
14021
|
+
const c = resolve57(params);
|
|
13446
14022
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity50(c), [buildTrait51(c)], [buildPage50(c)]);
|
|
13447
14023
|
}
|
|
13448
|
-
function
|
|
14024
|
+
function resolve58(params) {
|
|
13449
14025
|
const { entityName } = params;
|
|
13450
14026
|
const baseFields = ensureIdField(params.fields);
|
|
13451
14027
|
const fields = [
|
|
@@ -13579,19 +14155,19 @@ function buildPage51(c) {
|
|
|
13579
14155
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
13580
14156
|
}
|
|
13581
14157
|
function stdFormAdvancedEntity(params) {
|
|
13582
|
-
return buildEntity51(
|
|
14158
|
+
return buildEntity51(resolve58(params));
|
|
13583
14159
|
}
|
|
13584
14160
|
function stdFormAdvancedTrait(params) {
|
|
13585
|
-
return buildTrait52(
|
|
14161
|
+
return buildTrait52(resolve58(params));
|
|
13586
14162
|
}
|
|
13587
14163
|
function stdFormAdvancedPage(params) {
|
|
13588
|
-
return buildPage51(
|
|
14164
|
+
return buildPage51(resolve58(params));
|
|
13589
14165
|
}
|
|
13590
14166
|
function stdFormAdvanced(params) {
|
|
13591
|
-
const c =
|
|
14167
|
+
const c = resolve58(params);
|
|
13592
14168
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity51(c), [buildTrait52(c)], [buildPage51(c)]);
|
|
13593
14169
|
}
|
|
13594
|
-
function
|
|
14170
|
+
function resolve59(params) {
|
|
13595
14171
|
const { entityName } = params;
|
|
13596
14172
|
const baseFields = ensureIdField(params.fields);
|
|
13597
14173
|
const p = plural(entityName);
|
|
@@ -13819,16 +14395,16 @@ function buildPage52(c) {
|
|
|
13819
14395
|
};
|
|
13820
14396
|
}
|
|
13821
14397
|
function stdTurnBasedBattleEntity(params) {
|
|
13822
|
-
return buildEntity52(
|
|
14398
|
+
return buildEntity52(resolve59(params));
|
|
13823
14399
|
}
|
|
13824
14400
|
function stdTurnBasedBattleTrait(params) {
|
|
13825
|
-
return buildBattleFlowTrait(
|
|
14401
|
+
return buildBattleFlowTrait(resolve59(params));
|
|
13826
14402
|
}
|
|
13827
14403
|
function stdTurnBasedBattlePage(params) {
|
|
13828
|
-
return buildPage52(
|
|
14404
|
+
return buildPage52(resolve59(params));
|
|
13829
14405
|
}
|
|
13830
14406
|
function stdTurnBasedBattle(params) {
|
|
13831
|
-
const c =
|
|
14407
|
+
const c = resolve59(params);
|
|
13832
14408
|
const battleFlowTrait = buildBattleFlowTrait(c);
|
|
13833
14409
|
const battleLogTrait = buildBattleLogTrait(c);
|
|
13834
14410
|
const entity = buildEntity52(c);
|
|
@@ -13840,7 +14416,7 @@ function stdTurnBasedBattle(params) {
|
|
|
13840
14416
|
pages: [page]
|
|
13841
14417
|
};
|
|
13842
14418
|
}
|
|
13843
|
-
function
|
|
14419
|
+
function resolve60(params) {
|
|
13844
14420
|
const { entityName } = params;
|
|
13845
14421
|
const baseFields = ensureIdField(params.fields);
|
|
13846
14422
|
const p = plural(entityName);
|
|
@@ -14090,16 +14666,16 @@ function buildPage53(c) {
|
|
|
14090
14666
|
};
|
|
14091
14667
|
}
|
|
14092
14668
|
function stdPlatformerGameEntity(params) {
|
|
14093
|
-
return buildEntity53(
|
|
14669
|
+
return buildEntity53(resolve60(params));
|
|
14094
14670
|
}
|
|
14095
14671
|
function stdPlatformerGameTrait(params) {
|
|
14096
|
-
return buildPlatformerFlowTrait(
|
|
14672
|
+
return buildPlatformerFlowTrait(resolve60(params));
|
|
14097
14673
|
}
|
|
14098
14674
|
function stdPlatformerGamePage(params) {
|
|
14099
|
-
return buildPage53(
|
|
14675
|
+
return buildPage53(resolve60(params));
|
|
14100
14676
|
}
|
|
14101
14677
|
function stdPlatformerGame(params) {
|
|
14102
|
-
const c =
|
|
14678
|
+
const c = resolve60(params);
|
|
14103
14679
|
const flowTrait = buildPlatformerFlowTrait(c);
|
|
14104
14680
|
const canvasTrait = buildPlatformerCanvasTrait(c);
|
|
14105
14681
|
const entity = buildEntity53(c);
|
|
@@ -14111,7 +14687,7 @@ function stdPlatformerGame(params) {
|
|
|
14111
14687
|
pages: [page]
|
|
14112
14688
|
};
|
|
14113
14689
|
}
|
|
14114
|
-
function
|
|
14690
|
+
function resolve61(params) {
|
|
14115
14691
|
const { entityName } = params;
|
|
14116
14692
|
const baseFields = ensureIdField(params.fields);
|
|
14117
14693
|
const p = plural(entityName);
|
|
@@ -14342,16 +14918,16 @@ function buildPage54(c) {
|
|
|
14342
14918
|
};
|
|
14343
14919
|
}
|
|
14344
14920
|
function stdPuzzleGameEntity(params) {
|
|
14345
|
-
return buildEntity54(
|
|
14921
|
+
return buildEntity54(resolve61(params));
|
|
14346
14922
|
}
|
|
14347
14923
|
function stdPuzzleGameTrait(params) {
|
|
14348
|
-
return buildPuzzleFlowTrait(
|
|
14924
|
+
return buildPuzzleFlowTrait(resolve61(params));
|
|
14349
14925
|
}
|
|
14350
14926
|
function stdPuzzleGamePage(params) {
|
|
14351
|
-
return buildPage54(
|
|
14927
|
+
return buildPage54(resolve61(params));
|
|
14352
14928
|
}
|
|
14353
14929
|
function stdPuzzleGame(params) {
|
|
14354
|
-
const c =
|
|
14930
|
+
const c = resolve61(params);
|
|
14355
14931
|
const flowTrait = buildPuzzleFlowTrait(c);
|
|
14356
14932
|
const scoreTrait = buildPuzzleScoreTrait(c);
|
|
14357
14933
|
const entity = buildEntity54(c);
|
|
@@ -14363,7 +14939,7 @@ function stdPuzzleGame(params) {
|
|
|
14363
14939
|
pages: [page]
|
|
14364
14940
|
};
|
|
14365
14941
|
}
|
|
14366
|
-
function
|
|
14942
|
+
function resolve62(params) {
|
|
14367
14943
|
const { entityName } = params;
|
|
14368
14944
|
const baseFields = ensureIdField(params.fields);
|
|
14369
14945
|
const p = plural(entityName);
|
|
@@ -14485,16 +15061,16 @@ function buildPage55(c) {
|
|
|
14485
15061
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
14486
15062
|
}
|
|
14487
15063
|
function stdBuilderGameEntity(params) {
|
|
14488
|
-
return buildEntity55(
|
|
15064
|
+
return buildEntity55(resolve62(params));
|
|
14489
15065
|
}
|
|
14490
15066
|
function stdBuilderGameTrait(params) {
|
|
14491
|
-
return buildTrait53(
|
|
15067
|
+
return buildTrait53(resolve62(params));
|
|
14492
15068
|
}
|
|
14493
15069
|
function stdBuilderGamePage(params) {
|
|
14494
|
-
return buildPage55(
|
|
15070
|
+
return buildPage55(resolve62(params));
|
|
14495
15071
|
}
|
|
14496
15072
|
function stdBuilderGame(params) {
|
|
14497
|
-
const c =
|
|
15073
|
+
const c = resolve62(params);
|
|
14498
15074
|
return makeOrbital(
|
|
14499
15075
|
`${c.entityName}Orbital`,
|
|
14500
15076
|
buildEntity55(c),
|
|
@@ -14502,7 +15078,7 @@ function stdBuilderGame(params) {
|
|
|
14502
15078
|
[buildPage55(c)]
|
|
14503
15079
|
);
|
|
14504
15080
|
}
|
|
14505
|
-
function
|
|
15081
|
+
function resolve63(params) {
|
|
14506
15082
|
const { entityName } = params;
|
|
14507
15083
|
const baseFields = ensureIdField(params.fields);
|
|
14508
15084
|
const p = plural(entityName);
|
|
@@ -14624,16 +15200,16 @@ function buildPage56(c) {
|
|
|
14624
15200
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
14625
15201
|
}
|
|
14626
15202
|
function stdClassifierGameEntity(params) {
|
|
14627
|
-
return buildEntity56(
|
|
15203
|
+
return buildEntity56(resolve63(params));
|
|
14628
15204
|
}
|
|
14629
15205
|
function stdClassifierGameTrait(params) {
|
|
14630
|
-
return buildTrait54(
|
|
15206
|
+
return buildTrait54(resolve63(params));
|
|
14631
15207
|
}
|
|
14632
15208
|
function stdClassifierGamePage(params) {
|
|
14633
|
-
return buildPage56(
|
|
15209
|
+
return buildPage56(resolve63(params));
|
|
14634
15210
|
}
|
|
14635
15211
|
function stdClassifierGame(params) {
|
|
14636
|
-
const c =
|
|
15212
|
+
const c = resolve63(params);
|
|
14637
15213
|
return makeOrbital(
|
|
14638
15214
|
`${c.entityName}Orbital`,
|
|
14639
15215
|
buildEntity56(c),
|
|
@@ -14641,7 +15217,7 @@ function stdClassifierGame(params) {
|
|
|
14641
15217
|
[buildPage56(c)]
|
|
14642
15218
|
);
|
|
14643
15219
|
}
|
|
14644
|
-
function
|
|
15220
|
+
function resolve64(params) {
|
|
14645
15221
|
const { entityName } = params;
|
|
14646
15222
|
const baseFields = ensureIdField(params.fields);
|
|
14647
15223
|
const p = plural(entityName);
|
|
@@ -14763,16 +15339,16 @@ function buildPage57(c) {
|
|
|
14763
15339
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
14764
15340
|
}
|
|
14765
15341
|
function stdSequencerGameEntity(params) {
|
|
14766
|
-
return buildEntity57(
|
|
15342
|
+
return buildEntity57(resolve64(params));
|
|
14767
15343
|
}
|
|
14768
15344
|
function stdSequencerGameTrait(params) {
|
|
14769
|
-
return buildTrait55(
|
|
15345
|
+
return buildTrait55(resolve64(params));
|
|
14770
15346
|
}
|
|
14771
15347
|
function stdSequencerGamePage(params) {
|
|
14772
|
-
return buildPage57(
|
|
15348
|
+
return buildPage57(resolve64(params));
|
|
14773
15349
|
}
|
|
14774
15350
|
function stdSequencerGame(params) {
|
|
14775
|
-
const c =
|
|
15351
|
+
const c = resolve64(params);
|
|
14776
15352
|
return makeOrbital(
|
|
14777
15353
|
`${c.entityName}Orbital`,
|
|
14778
15354
|
buildEntity57(c),
|
|
@@ -14780,7 +15356,7 @@ function stdSequencerGame(params) {
|
|
|
14780
15356
|
[buildPage57(c)]
|
|
14781
15357
|
);
|
|
14782
15358
|
}
|
|
14783
|
-
function
|
|
15359
|
+
function resolve65(params) {
|
|
14784
15360
|
const { entityName } = params;
|
|
14785
15361
|
const baseFields = ensureIdField(params.fields);
|
|
14786
15362
|
const p = plural(entityName);
|
|
@@ -14902,16 +15478,16 @@ function buildPage58(c) {
|
|
|
14902
15478
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
14903
15479
|
}
|
|
14904
15480
|
function stdDebuggerGameEntity(params) {
|
|
14905
|
-
return buildEntity58(
|
|
15481
|
+
return buildEntity58(resolve65(params));
|
|
14906
15482
|
}
|
|
14907
15483
|
function stdDebuggerGameTrait(params) {
|
|
14908
|
-
return buildTrait56(
|
|
15484
|
+
return buildTrait56(resolve65(params));
|
|
14909
15485
|
}
|
|
14910
15486
|
function stdDebuggerGamePage(params) {
|
|
14911
|
-
return buildPage58(
|
|
15487
|
+
return buildPage58(resolve65(params));
|
|
14912
15488
|
}
|
|
14913
15489
|
function stdDebuggerGame(params) {
|
|
14914
|
-
const c =
|
|
15490
|
+
const c = resolve65(params);
|
|
14915
15491
|
return makeOrbital(
|
|
14916
15492
|
`${c.entityName}Orbital`,
|
|
14917
15493
|
buildEntity58(c),
|
|
@@ -14919,7 +15495,7 @@ function stdDebuggerGame(params) {
|
|
|
14919
15495
|
[buildPage58(c)]
|
|
14920
15496
|
);
|
|
14921
15497
|
}
|
|
14922
|
-
function
|
|
15498
|
+
function resolve66(params) {
|
|
14923
15499
|
const { entityName } = params;
|
|
14924
15500
|
const baseFields = ensureIdField(params.fields);
|
|
14925
15501
|
const p = plural(entityName);
|
|
@@ -15041,16 +15617,16 @@ function buildPage59(c) {
|
|
|
15041
15617
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
15042
15618
|
}
|
|
15043
15619
|
function stdNegotiatorGameEntity(params) {
|
|
15044
|
-
return buildEntity59(
|
|
15620
|
+
return buildEntity59(resolve66(params));
|
|
15045
15621
|
}
|
|
15046
15622
|
function stdNegotiatorGameTrait(params) {
|
|
15047
|
-
return buildTrait57(
|
|
15623
|
+
return buildTrait57(resolve66(params));
|
|
15048
15624
|
}
|
|
15049
15625
|
function stdNegotiatorGamePage(params) {
|
|
15050
|
-
return buildPage59(
|
|
15626
|
+
return buildPage59(resolve66(params));
|
|
15051
15627
|
}
|
|
15052
15628
|
function stdNegotiatorGame(params) {
|
|
15053
|
-
const c =
|
|
15629
|
+
const c = resolve66(params);
|
|
15054
15630
|
return makeOrbital(
|
|
15055
15631
|
`${c.entityName}Orbital`,
|
|
15056
15632
|
buildEntity59(c),
|
|
@@ -15058,7 +15634,7 @@ function stdNegotiatorGame(params) {
|
|
|
15058
15634
|
[buildPage59(c)]
|
|
15059
15635
|
);
|
|
15060
15636
|
}
|
|
15061
|
-
function
|
|
15637
|
+
function resolve67(params) {
|
|
15062
15638
|
const { entityName } = params;
|
|
15063
15639
|
const baseFields = ensureIdField(params.fields);
|
|
15064
15640
|
const p = plural(entityName);
|
|
@@ -15180,16 +15756,16 @@ function buildPage60(c) {
|
|
|
15180
15756
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
15181
15757
|
}
|
|
15182
15758
|
function stdSimulatorGameEntity(params) {
|
|
15183
|
-
return buildEntity60(
|
|
15759
|
+
return buildEntity60(resolve67(params));
|
|
15184
15760
|
}
|
|
15185
15761
|
function stdSimulatorGameTrait(params) {
|
|
15186
|
-
return buildTrait58(
|
|
15762
|
+
return buildTrait58(resolve67(params));
|
|
15187
15763
|
}
|
|
15188
15764
|
function stdSimulatorGamePage(params) {
|
|
15189
|
-
return buildPage60(
|
|
15765
|
+
return buildPage60(resolve67(params));
|
|
15190
15766
|
}
|
|
15191
15767
|
function stdSimulatorGame(params) {
|
|
15192
|
-
const c =
|
|
15768
|
+
const c = resolve67(params);
|
|
15193
15769
|
return makeOrbital(
|
|
15194
15770
|
`${c.entityName}Orbital`,
|
|
15195
15771
|
buildEntity60(c),
|
|
@@ -15197,7 +15773,7 @@ function stdSimulatorGame(params) {
|
|
|
15197
15773
|
[buildPage60(c)]
|
|
15198
15774
|
);
|
|
15199
15775
|
}
|
|
15200
|
-
function
|
|
15776
|
+
function resolve68(params) {
|
|
15201
15777
|
const { entityName } = params;
|
|
15202
15778
|
const baseFields = ensureIdField(params.fields);
|
|
15203
15779
|
const p = plural(entityName);
|
|
@@ -15319,16 +15895,16 @@ function buildPage61(c) {
|
|
|
15319
15895
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
15320
15896
|
}
|
|
15321
15897
|
function stdEventHandlerGameEntity(params) {
|
|
15322
|
-
return buildEntity61(
|
|
15898
|
+
return buildEntity61(resolve68(params));
|
|
15323
15899
|
}
|
|
15324
15900
|
function stdEventHandlerGameTrait(params) {
|
|
15325
|
-
return buildTrait59(
|
|
15901
|
+
return buildTrait59(resolve68(params));
|
|
15326
15902
|
}
|
|
15327
15903
|
function stdEventHandlerGamePage(params) {
|
|
15328
|
-
return buildPage61(
|
|
15904
|
+
return buildPage61(resolve68(params));
|
|
15329
15905
|
}
|
|
15330
15906
|
function stdEventHandlerGame(params) {
|
|
15331
|
-
const c =
|
|
15907
|
+
const c = resolve68(params);
|
|
15332
15908
|
return makeOrbital(
|
|
15333
15909
|
`${c.entityName}Orbital`,
|
|
15334
15910
|
buildEntity61(c),
|
|
@@ -15336,7 +15912,7 @@ function stdEventHandlerGame(params) {
|
|
|
15336
15912
|
[buildPage61(c)]
|
|
15337
15913
|
);
|
|
15338
15914
|
}
|
|
15339
|
-
function
|
|
15915
|
+
function resolve69(params) {
|
|
15340
15916
|
const { entityName } = params;
|
|
15341
15917
|
const baseFields = ensureIdField(params.fields);
|
|
15342
15918
|
const domainFields = [
|
|
@@ -15502,18 +16078,18 @@ function buildTrait60(c) {
|
|
|
15502
16078
|
};
|
|
15503
16079
|
}
|
|
15504
16080
|
function stdClassifierEntity(params) {
|
|
15505
|
-
const c =
|
|
16081
|
+
const c = resolve69(params);
|
|
15506
16082
|
return makeEntity({ name: c.entityName, fields: c.fields, persistence: "runtime" });
|
|
15507
16083
|
}
|
|
15508
16084
|
function stdClassifierTrait(params) {
|
|
15509
|
-
return buildTrait60(
|
|
16085
|
+
return buildTrait60(resolve69(params));
|
|
15510
16086
|
}
|
|
15511
16087
|
function stdClassifierPage(params) {
|
|
15512
|
-
const c =
|
|
16088
|
+
const c = resolve69(params);
|
|
15513
16089
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
15514
16090
|
}
|
|
15515
16091
|
function stdClassifier(params) {
|
|
15516
|
-
const c =
|
|
16092
|
+
const c = resolve69(params);
|
|
15517
16093
|
const entity = makeEntity({ name: c.entityName, fields: c.fields, persistence: "runtime" });
|
|
15518
16094
|
const trait = buildTrait60(c);
|
|
15519
16095
|
const page = {
|
|
@@ -15529,7 +16105,7 @@ function stdClassifier(params) {
|
|
|
15529
16105
|
pages: [page]
|
|
15530
16106
|
};
|
|
15531
16107
|
}
|
|
15532
|
-
function
|
|
16108
|
+
function resolve70(params) {
|
|
15533
16109
|
const { entityName } = params;
|
|
15534
16110
|
const baseFields = ensureIdField(params.fields);
|
|
15535
16111
|
const domainFields = [
|
|
@@ -15842,14 +16418,14 @@ function buildCheckpointTrait(c) {
|
|
|
15842
16418
|
};
|
|
15843
16419
|
}
|
|
15844
16420
|
function stdTrainerEntity(params) {
|
|
15845
|
-
const c =
|
|
16421
|
+
const c = resolve70(params);
|
|
15846
16422
|
return makeEntity({ name: c.entityName, fields: c.fields, persistence: "runtime" });
|
|
15847
16423
|
}
|
|
15848
16424
|
function stdTrainerTrait(params) {
|
|
15849
|
-
return buildTrainLoopTrait(
|
|
16425
|
+
return buildTrainLoopTrait(resolve70(params));
|
|
15850
16426
|
}
|
|
15851
16427
|
function stdTrainerPage(params) {
|
|
15852
|
-
const c =
|
|
16428
|
+
const c = resolve70(params);
|
|
15853
16429
|
return {
|
|
15854
16430
|
name: c.pageName,
|
|
15855
16431
|
path: c.pagePath,
|
|
@@ -15862,7 +16438,7 @@ function stdTrainerPage(params) {
|
|
|
15862
16438
|
};
|
|
15863
16439
|
}
|
|
15864
16440
|
function stdTrainer(params) {
|
|
15865
|
-
const c =
|
|
16441
|
+
const c = resolve70(params);
|
|
15866
16442
|
const entity = makeEntity({ name: c.entityName, fields: c.fields, persistence: "runtime" });
|
|
15867
16443
|
const trainTrait = buildTrainLoopTrait(c);
|
|
15868
16444
|
const traits = [trainTrait];
|
|
@@ -15887,7 +16463,7 @@ function stdTrainer(params) {
|
|
|
15887
16463
|
pages: [page]
|
|
15888
16464
|
};
|
|
15889
16465
|
}
|
|
15890
|
-
function
|
|
16466
|
+
function resolve71(params) {
|
|
15891
16467
|
const { entityName } = params;
|
|
15892
16468
|
const baseFields = [
|
|
15893
16469
|
{ name: "id", type: "string", default: "" },
|
|
@@ -16167,14 +16743,14 @@ function buildTrainTrait(c) {
|
|
|
16167
16743
|
};
|
|
16168
16744
|
}
|
|
16169
16745
|
function stdRlAgentEntity(params) {
|
|
16170
|
-
const c =
|
|
16746
|
+
const c = resolve71(params);
|
|
16171
16747
|
return makeEntity({ name: c.entityName, fields: c.fields, persistence: "runtime" });
|
|
16172
16748
|
}
|
|
16173
16749
|
function stdRlAgentTrait(params) {
|
|
16174
|
-
return buildPolicyTrait(
|
|
16750
|
+
return buildPolicyTrait(resolve71(params));
|
|
16175
16751
|
}
|
|
16176
16752
|
function stdRlAgentPage(params) {
|
|
16177
|
-
const c =
|
|
16753
|
+
const c = resolve71(params);
|
|
16178
16754
|
return {
|
|
16179
16755
|
name: c.pageName,
|
|
16180
16756
|
path: c.pagePath,
|
|
@@ -16187,7 +16763,7 @@ function stdRlAgentPage(params) {
|
|
|
16187
16763
|
};
|
|
16188
16764
|
}
|
|
16189
16765
|
function stdRlAgent(params) {
|
|
16190
|
-
const c =
|
|
16766
|
+
const c = resolve71(params);
|
|
16191
16767
|
const entity = makeEntity({ name: c.entityName, fields: c.fields, persistence: "runtime" });
|
|
16192
16768
|
const policyTrait = buildPolicyTrait(c);
|
|
16193
16769
|
const collectorTrait = buildCollectorTrait(c);
|
|
@@ -16209,7 +16785,7 @@ function stdRlAgent(params) {
|
|
|
16209
16785
|
pages: [page]
|
|
16210
16786
|
};
|
|
16211
16787
|
}
|
|
16212
|
-
function
|
|
16788
|
+
function resolve72(params) {
|
|
16213
16789
|
const { entityName } = params;
|
|
16214
16790
|
const baseFields = [{ name: "id", type: "string", default: "" }];
|
|
16215
16791
|
const domainFields = [
|
|
@@ -16424,14 +17000,14 @@ function buildGnnClassifyTrait(c) {
|
|
|
16424
17000
|
};
|
|
16425
17001
|
}
|
|
16426
17002
|
function stdGraphClassifierEntity(params) {
|
|
16427
|
-
const c =
|
|
17003
|
+
const c = resolve72(params);
|
|
16428
17004
|
return makeEntity({ name: c.entityName, fields: c.fields, persistence: "runtime" });
|
|
16429
17005
|
}
|
|
16430
17006
|
function stdGraphClassifierTrait(params) {
|
|
16431
|
-
return buildGraphBuilderTrait(
|
|
17007
|
+
return buildGraphBuilderTrait(resolve72(params));
|
|
16432
17008
|
}
|
|
16433
17009
|
function stdGraphClassifierPage(params) {
|
|
16434
|
-
const c =
|
|
17010
|
+
const c = resolve72(params);
|
|
16435
17011
|
return {
|
|
16436
17012
|
name: c.pageName,
|
|
16437
17013
|
path: c.pagePath,
|
|
@@ -16443,7 +17019,7 @@ function stdGraphClassifierPage(params) {
|
|
|
16443
17019
|
};
|
|
16444
17020
|
}
|
|
16445
17021
|
function stdGraphClassifier(params) {
|
|
16446
|
-
const c =
|
|
17022
|
+
const c = resolve72(params);
|
|
16447
17023
|
const entity = makeEntity({ name: c.entityName, fields: c.fields, persistence: "runtime" });
|
|
16448
17024
|
const graphTrait = buildGraphBuilderTrait(c);
|
|
16449
17025
|
const classifyTrait = buildGnnClassifyTrait(c);
|
|
@@ -16463,7 +17039,7 @@ function stdGraphClassifier(params) {
|
|
|
16463
17039
|
pages: [page]
|
|
16464
17040
|
};
|
|
16465
17041
|
}
|
|
16466
|
-
function
|
|
17042
|
+
function resolve73(params) {
|
|
16467
17043
|
const { entityName } = params;
|
|
16468
17044
|
const baseFields = [
|
|
16469
17045
|
{ name: "id", type: "string", default: "" },
|
|
@@ -16680,14 +17256,14 @@ function buildTextClassifyTrait(c) {
|
|
|
16680
17256
|
};
|
|
16681
17257
|
}
|
|
16682
17258
|
function stdTextClassifierEntity(params) {
|
|
16683
|
-
const c =
|
|
17259
|
+
const c = resolve73(params);
|
|
16684
17260
|
return makeEntity({ name: c.entityName, fields: c.fields, persistence: "runtime" });
|
|
16685
17261
|
}
|
|
16686
17262
|
function stdTextClassifierTrait(params) {
|
|
16687
|
-
return buildTokenizerTrait(
|
|
17263
|
+
return buildTokenizerTrait(resolve73(params));
|
|
16688
17264
|
}
|
|
16689
17265
|
function stdTextClassifierPage(params) {
|
|
16690
|
-
const c =
|
|
17266
|
+
const c = resolve73(params);
|
|
16691
17267
|
return {
|
|
16692
17268
|
name: c.pageName,
|
|
16693
17269
|
path: c.pagePath,
|
|
@@ -16699,7 +17275,7 @@ function stdTextClassifierPage(params) {
|
|
|
16699
17275
|
};
|
|
16700
17276
|
}
|
|
16701
17277
|
function stdTextClassifier(params) {
|
|
16702
|
-
const c =
|
|
17278
|
+
const c = resolve73(params);
|
|
16703
17279
|
const entity = makeEntity({ name: c.entityName, fields: c.fields, persistence: "runtime" });
|
|
16704
17280
|
const tokenizerTrait = buildTokenizerTrait(c);
|
|
16705
17281
|
const classifyTrait = buildTextClassifyTrait(c);
|
|
@@ -16719,7 +17295,7 @@ function stdTextClassifier(params) {
|
|
|
16719
17295
|
pages: [page]
|
|
16720
17296
|
};
|
|
16721
17297
|
}
|
|
16722
|
-
function
|
|
17298
|
+
function resolve74(params) {
|
|
16723
17299
|
const { entityName } = params;
|
|
16724
17300
|
const baseFields = [{ name: "id", type: "string", default: "" }];
|
|
16725
17301
|
const domainFields = [
|
|
@@ -16883,14 +17459,14 @@ function buildTrait61(c) {
|
|
|
16883
17459
|
};
|
|
16884
17460
|
}
|
|
16885
17461
|
function stdAutoregressiveEntity(params) {
|
|
16886
|
-
const c =
|
|
17462
|
+
const c = resolve74(params);
|
|
16887
17463
|
return makeEntity({ name: c.entityName, fields: c.fields, persistence: "runtime" });
|
|
16888
17464
|
}
|
|
16889
17465
|
function stdAutoregressiveTrait(params) {
|
|
16890
|
-
return buildTrait61(
|
|
17466
|
+
return buildTrait61(resolve74(params));
|
|
16891
17467
|
}
|
|
16892
17468
|
function stdAutoregressivePage(params) {
|
|
16893
|
-
const c =
|
|
17469
|
+
const c = resolve74(params);
|
|
16894
17470
|
return {
|
|
16895
17471
|
name: c.pageName,
|
|
16896
17472
|
path: c.pagePath,
|
|
@@ -16899,7 +17475,7 @@ function stdAutoregressivePage(params) {
|
|
|
16899
17475
|
};
|
|
16900
17476
|
}
|
|
16901
17477
|
function stdAutoregressive(params) {
|
|
16902
|
-
const c =
|
|
17478
|
+
const c = resolve74(params);
|
|
16903
17479
|
const entity = makeEntity({ name: c.entityName, fields: c.fields, persistence: "runtime" });
|
|
16904
17480
|
const trait = buildTrait61(c);
|
|
16905
17481
|
const page = {
|
|
@@ -16915,7 +17491,7 @@ function stdAutoregressive(params) {
|
|
|
16915
17491
|
pages: [page]
|
|
16916
17492
|
};
|
|
16917
17493
|
}
|
|
16918
|
-
function
|
|
17494
|
+
function resolve75(params) {
|
|
16919
17495
|
const entityName = params.entityName ?? "OrderPayment";
|
|
16920
17496
|
const p = plural(entityName);
|
|
16921
17497
|
const requiredFields = [
|
|
@@ -17254,13 +17830,13 @@ function buildPage62(c) {
|
|
|
17254
17830
|
};
|
|
17255
17831
|
}
|
|
17256
17832
|
function stdServicePaymentFlowEntity(params = {}) {
|
|
17257
|
-
return buildEntity62(
|
|
17833
|
+
return buildEntity62(resolve75(params));
|
|
17258
17834
|
}
|
|
17259
17835
|
function stdServicePaymentFlowPage(params = {}) {
|
|
17260
|
-
return buildPage62(
|
|
17836
|
+
return buildPage62(resolve75(params));
|
|
17261
17837
|
}
|
|
17262
17838
|
function stdServicePaymentFlow(params = {}) {
|
|
17263
|
-
const c =
|
|
17839
|
+
const c = resolve75(params);
|
|
17264
17840
|
return makeOrbital(
|
|
17265
17841
|
`${c.entityName}Orbital`,
|
|
17266
17842
|
buildEntity62(c),
|
|
@@ -17268,7 +17844,7 @@ function stdServicePaymentFlow(params = {}) {
|
|
|
17268
17844
|
[buildPage62(c)]
|
|
17269
17845
|
);
|
|
17270
17846
|
}
|
|
17271
|
-
function
|
|
17847
|
+
function resolve76(params) {
|
|
17272
17848
|
const entityName = params.entityName ?? "Notification";
|
|
17273
17849
|
const p = plural(entityName);
|
|
17274
17850
|
const requiredFields = [
|
|
@@ -17503,16 +18079,16 @@ function buildPage63(c) {
|
|
|
17503
18079
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
17504
18080
|
}
|
|
17505
18081
|
function stdServiceNotificationHubEntity(params = {}) {
|
|
17506
|
-
return buildEntity63(
|
|
18082
|
+
return buildEntity63(resolve76(params));
|
|
17507
18083
|
}
|
|
17508
18084
|
function stdServiceNotificationHubTrait(params = {}) {
|
|
17509
|
-
return buildTrait62(
|
|
18085
|
+
return buildTrait62(resolve76(params));
|
|
17510
18086
|
}
|
|
17511
18087
|
function stdServiceNotificationHubPage(params = {}) {
|
|
17512
|
-
return buildPage63(
|
|
18088
|
+
return buildPage63(resolve76(params));
|
|
17513
18089
|
}
|
|
17514
18090
|
function stdServiceNotificationHub(params = {}) {
|
|
17515
|
-
const c =
|
|
18091
|
+
const c = resolve76(params);
|
|
17516
18092
|
return makeOrbital(
|
|
17517
18093
|
`${c.entityName}Orbital`,
|
|
17518
18094
|
buildEntity63(c),
|
|
@@ -17520,7 +18096,7 @@ function stdServiceNotificationHub(params = {}) {
|
|
|
17520
18096
|
[buildPage63(c)]
|
|
17521
18097
|
);
|
|
17522
18098
|
}
|
|
17523
|
-
function
|
|
18099
|
+
function resolve77(params) {
|
|
17524
18100
|
const entityName = params.entityName ?? "Research";
|
|
17525
18101
|
const p = plural(entityName);
|
|
17526
18102
|
const requiredFields = [
|
|
@@ -17897,19 +18473,19 @@ function buildPage64(c) {
|
|
|
17897
18473
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
17898
18474
|
}
|
|
17899
18475
|
function stdServiceContentPipelineEntity(params) {
|
|
17900
|
-
return buildEntity64(
|
|
18476
|
+
return buildEntity64(resolve77(params));
|
|
17901
18477
|
}
|
|
17902
18478
|
function stdServiceContentPipelineTrait(params) {
|
|
17903
|
-
return buildTrait63(
|
|
18479
|
+
return buildTrait63(resolve77(params));
|
|
17904
18480
|
}
|
|
17905
18481
|
function stdServiceContentPipelinePage(params) {
|
|
17906
|
-
return buildPage64(
|
|
18482
|
+
return buildPage64(resolve77(params));
|
|
17907
18483
|
}
|
|
17908
18484
|
function stdServiceContentPipeline(params) {
|
|
17909
|
-
const c =
|
|
18485
|
+
const c = resolve77(params);
|
|
17910
18486
|
return makeOrbital(`${c.entityName}Orbital`, buildEntity64(c), [buildTrait63(c)], [buildPage64(c)]);
|
|
17911
18487
|
}
|
|
17912
|
-
function
|
|
18488
|
+
function resolve78(params) {
|
|
17913
18489
|
const entityName = params.entityName ?? "DevopsTool";
|
|
17914
18490
|
const p = plural(entityName);
|
|
17915
18491
|
const requiredFields = [
|
|
@@ -18430,11 +19006,11 @@ function buildStorageTrait(c) {
|
|
|
18430
19006
|
};
|
|
18431
19007
|
}
|
|
18432
19008
|
function stdServiceDevopsToolkitEntity(params = {}) {
|
|
18433
|
-
const c =
|
|
19009
|
+
const c = resolve78(params);
|
|
18434
19010
|
return makeEntity({ name: c.entityName, fields: c.fields, persistence: c.persistence });
|
|
18435
19011
|
}
|
|
18436
19012
|
function stdServiceDevopsToolkitPage(params = {}) {
|
|
18437
|
-
const c =
|
|
19013
|
+
const c = resolve78(params);
|
|
18438
19014
|
return {
|
|
18439
19015
|
name: c.pageName,
|
|
18440
19016
|
path: c.pagePath,
|
|
@@ -18447,7 +19023,7 @@ function stdServiceDevopsToolkitPage(params = {}) {
|
|
|
18447
19023
|
};
|
|
18448
19024
|
}
|
|
18449
19025
|
function stdServiceDevopsToolkit(params = {}) {
|
|
18450
|
-
const c =
|
|
19026
|
+
const c = resolve78(params);
|
|
18451
19027
|
const githubTrait = buildGithubTrait(c);
|
|
18452
19028
|
const redisTrait = buildRedisTrait(c);
|
|
18453
19029
|
const storageTrait = buildStorageTrait(c);
|
|
@@ -18469,7 +19045,7 @@ function stdServiceDevopsToolkit(params = {}) {
|
|
|
18469
19045
|
pages: [page]
|
|
18470
19046
|
};
|
|
18471
19047
|
}
|
|
18472
|
-
function
|
|
19048
|
+
function resolve79(params) {
|
|
18473
19049
|
const entityName = params.entityName ?? "ApiTest";
|
|
18474
19050
|
const p = plural(entityName);
|
|
18475
19051
|
const requiredFields = [
|
|
@@ -18727,16 +19303,16 @@ function buildPage65(c) {
|
|
|
18727
19303
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
18728
19304
|
}
|
|
18729
19305
|
function stdServiceCustomApiTesterEntity(params) {
|
|
18730
|
-
return buildEntity65(
|
|
19306
|
+
return buildEntity65(resolve79(params));
|
|
18731
19307
|
}
|
|
18732
19308
|
function stdServiceCustomApiTesterTrait(params) {
|
|
18733
|
-
return buildTrait64(
|
|
19309
|
+
return buildTrait64(resolve79(params));
|
|
18734
19310
|
}
|
|
18735
19311
|
function stdServiceCustomApiTesterPage(params) {
|
|
18736
|
-
return buildPage65(
|
|
19312
|
+
return buildPage65(resolve79(params));
|
|
18737
19313
|
}
|
|
18738
19314
|
function stdServiceCustomApiTester(params) {
|
|
18739
|
-
const c =
|
|
19315
|
+
const c = resolve79(params);
|
|
18740
19316
|
const orbital = makeOrbital(
|
|
18741
19317
|
`${c.entityName}Orbital`,
|
|
18742
19318
|
buildEntity65(c),
|
|
@@ -20823,7 +21399,7 @@ function stdLogicTraining(params) {
|
|
|
20823
21399
|
const schema = compose([debuggerOrbital, negotiatorOrbital, scoreOrbital], pages, connections, appName);
|
|
20824
21400
|
return wrapInGameShell(schema, appName);
|
|
20825
21401
|
}
|
|
20826
|
-
function
|
|
21402
|
+
function resolve80(params) {
|
|
20827
21403
|
const entityName = params.entityName ?? "AuthSession";
|
|
20828
21404
|
const p = plural(entityName);
|
|
20829
21405
|
const requiredFields = [
|
|
@@ -21108,16 +21684,16 @@ function buildPage66(c) {
|
|
|
21108
21684
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
21109
21685
|
}
|
|
21110
21686
|
function stdServiceOauthEntity(params = {}) {
|
|
21111
|
-
return buildEntity66(
|
|
21687
|
+
return buildEntity66(resolve80(params));
|
|
21112
21688
|
}
|
|
21113
21689
|
function stdServiceOauthTrait(params = {}) {
|
|
21114
|
-
return buildTrait65(
|
|
21690
|
+
return buildTrait65(resolve80(params));
|
|
21115
21691
|
}
|
|
21116
21692
|
function stdServiceOauthPage(params = {}) {
|
|
21117
|
-
return buildPage66(
|
|
21693
|
+
return buildPage66(resolve80(params));
|
|
21118
21694
|
}
|
|
21119
21695
|
function stdServiceOauth(params = {}) {
|
|
21120
|
-
const c =
|
|
21696
|
+
const c = resolve80(params);
|
|
21121
21697
|
const pages = [];
|
|
21122
21698
|
const page = buildPage66(c);
|
|
21123
21699
|
if (page) pages.push(page);
|
|
@@ -21207,7 +21783,7 @@ function stdServiceMarketplace(params = {}) {
|
|
|
21207
21783
|
]);
|
|
21208
21784
|
return wrapInDashboardLayout(schema, appName, navItems);
|
|
21209
21785
|
}
|
|
21210
|
-
function
|
|
21786
|
+
function resolve81(params) {
|
|
21211
21787
|
const entityName = params.entityName ?? "CacheEntry";
|
|
21212
21788
|
const p = plural(entityName);
|
|
21213
21789
|
const requiredFields = [
|
|
@@ -21413,16 +21989,16 @@ function buildPage67(c) {
|
|
|
21413
21989
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
21414
21990
|
}
|
|
21415
21991
|
function stdServiceRedisEntity(params = {}) {
|
|
21416
|
-
return buildEntity67(
|
|
21992
|
+
return buildEntity67(resolve81(params));
|
|
21417
21993
|
}
|
|
21418
21994
|
function stdServiceRedisTrait(params = {}) {
|
|
21419
|
-
return buildTrait66(
|
|
21995
|
+
return buildTrait66(resolve81(params));
|
|
21420
21996
|
}
|
|
21421
21997
|
function stdServiceRedisPage(params = {}) {
|
|
21422
|
-
return buildPage67(
|
|
21998
|
+
return buildPage67(resolve81(params));
|
|
21423
21999
|
}
|
|
21424
22000
|
function stdServiceRedis(params = {}) {
|
|
21425
|
-
const c =
|
|
22001
|
+
const c = resolve81(params);
|
|
21426
22002
|
return makeOrbital(
|
|
21427
22003
|
`${c.entityName}Orbital`,
|
|
21428
22004
|
buildEntity67(c),
|
|
@@ -21430,7 +22006,7 @@ function stdServiceRedis(params = {}) {
|
|
|
21430
22006
|
[buildPage67(c)]
|
|
21431
22007
|
);
|
|
21432
22008
|
}
|
|
21433
|
-
function
|
|
22009
|
+
function resolve82(params) {
|
|
21434
22010
|
const entityName = params.entityName ?? "StorageFile";
|
|
21435
22011
|
const p = plural(entityName);
|
|
21436
22012
|
const requiredFields = [
|
|
@@ -21676,16 +22252,16 @@ function buildPage68(c) {
|
|
|
21676
22252
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
21677
22253
|
}
|
|
21678
22254
|
function stdServiceStorageEntity(params = {}) {
|
|
21679
|
-
return buildEntity68(
|
|
22255
|
+
return buildEntity68(resolve82(params));
|
|
21680
22256
|
}
|
|
21681
22257
|
function stdServiceStorageTrait(params = {}) {
|
|
21682
|
-
return buildTrait67(
|
|
22258
|
+
return buildTrait67(resolve82(params));
|
|
21683
22259
|
}
|
|
21684
22260
|
function stdServiceStoragePage(params = {}) {
|
|
21685
|
-
return buildPage68(
|
|
22261
|
+
return buildPage68(resolve82(params));
|
|
21686
22262
|
}
|
|
21687
22263
|
function stdServiceStorage(params = {}) {
|
|
21688
|
-
const c =
|
|
22264
|
+
const c = resolve82(params);
|
|
21689
22265
|
return makeOrbital(
|
|
21690
22266
|
`${c.entityName}Orbital`,
|
|
21691
22267
|
buildEntity68(c),
|
|
@@ -21693,7 +22269,7 @@ function stdServiceStorage(params = {}) {
|
|
|
21693
22269
|
[buildPage68(c)]
|
|
21694
22270
|
);
|
|
21695
22271
|
}
|
|
21696
|
-
function
|
|
22272
|
+
function resolve83(params) {
|
|
21697
22273
|
const entityName = params.entityName ?? "ApiCall";
|
|
21698
22274
|
const p = plural(entityName);
|
|
21699
22275
|
const requiredFields = [
|
|
@@ -21890,16 +22466,16 @@ function buildPage69(c) {
|
|
|
21890
22466
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
21891
22467
|
}
|
|
21892
22468
|
function stdServiceCustomBearerEntity(params) {
|
|
21893
|
-
return buildEntity69(
|
|
22469
|
+
return buildEntity69(resolve83(params));
|
|
21894
22470
|
}
|
|
21895
22471
|
function stdServiceCustomBearerTrait(params) {
|
|
21896
|
-
return buildTrait68(
|
|
22472
|
+
return buildTrait68(resolve83(params));
|
|
21897
22473
|
}
|
|
21898
22474
|
function stdServiceCustomBearerPage(params) {
|
|
21899
|
-
return buildPage69(
|
|
22475
|
+
return buildPage69(resolve83(params));
|
|
21900
22476
|
}
|
|
21901
22477
|
function stdServiceCustomBearer(params) {
|
|
21902
|
-
const c =
|
|
22478
|
+
const c = resolve83(params);
|
|
21903
22479
|
const orbital = makeOrbital(
|
|
21904
22480
|
`${c.entityName}Orbital`,
|
|
21905
22481
|
buildEntity69(c),
|
|
@@ -22473,7 +23049,7 @@ function stdValidateOnSave(params = {}) {
|
|
|
22473
23049
|
];
|
|
22474
23050
|
return makeOrbital("ValidateOnSave", entity, [trait], pages);
|
|
22475
23051
|
}
|
|
22476
|
-
function
|
|
23052
|
+
function resolve84(params) {
|
|
22477
23053
|
const { entityName } = params;
|
|
22478
23054
|
const requiredFields = [
|
|
22479
23055
|
{ name: "to", type: "string" },
|
|
@@ -22690,16 +23266,16 @@ function buildPage70(c) {
|
|
|
22690
23266
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
22691
23267
|
}
|
|
22692
23268
|
function stdServiceEmailEntity(params) {
|
|
22693
|
-
return buildEntity70(
|
|
23269
|
+
return buildEntity70(resolve84(params));
|
|
22694
23270
|
}
|
|
22695
23271
|
function stdServiceEmailTrait(params) {
|
|
22696
|
-
return buildTrait69(
|
|
23272
|
+
return buildTrait69(resolve84(params));
|
|
22697
23273
|
}
|
|
22698
23274
|
function stdServiceEmailPage(params) {
|
|
22699
|
-
return buildPage70(
|
|
23275
|
+
return buildPage70(resolve84(params));
|
|
22700
23276
|
}
|
|
22701
23277
|
function stdServiceEmail(params) {
|
|
22702
|
-
const c =
|
|
23278
|
+
const c = resolve84(params);
|
|
22703
23279
|
const pages = [];
|
|
22704
23280
|
const page = buildPage70(c);
|
|
22705
23281
|
if (page) pages.push(page);
|
|
@@ -22710,7 +23286,7 @@ function stdServiceEmail(params) {
|
|
|
22710
23286
|
pages
|
|
22711
23287
|
);
|
|
22712
23288
|
}
|
|
22713
|
-
function
|
|
23289
|
+
function resolve85(params) {
|
|
22714
23290
|
const entityName = params.entityName ?? "Payment";
|
|
22715
23291
|
const p = plural(entityName);
|
|
22716
23292
|
const requiredFields = [
|
|
@@ -22941,16 +23517,16 @@ function buildPage71(c) {
|
|
|
22941
23517
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
22942
23518
|
}
|
|
22943
23519
|
function stdServiceStripeEntity(params = {}) {
|
|
22944
|
-
return buildEntity71(
|
|
23520
|
+
return buildEntity71(resolve85(params));
|
|
22945
23521
|
}
|
|
22946
23522
|
function stdServiceStripeTrait(params = {}) {
|
|
22947
|
-
return buildTrait70(
|
|
23523
|
+
return buildTrait70(resolve85(params));
|
|
22948
23524
|
}
|
|
22949
23525
|
function stdServiceStripePage(params = {}) {
|
|
22950
|
-
return buildPage71(
|
|
23526
|
+
return buildPage71(resolve85(params));
|
|
22951
23527
|
}
|
|
22952
23528
|
function stdServiceStripe(params = {}) {
|
|
22953
|
-
const c =
|
|
23529
|
+
const c = resolve85(params);
|
|
22954
23530
|
return makeOrbital(
|
|
22955
23531
|
`${c.entityName}Orbital`,
|
|
22956
23532
|
buildEntity71(c),
|
|
@@ -22958,7 +23534,7 @@ function stdServiceStripe(params = {}) {
|
|
|
22958
23534
|
[buildPage71(c)]
|
|
22959
23535
|
);
|
|
22960
23536
|
}
|
|
22961
|
-
function
|
|
23537
|
+
function resolve86(params) {
|
|
22962
23538
|
const entityName = params.entityName ?? "Message";
|
|
22963
23539
|
const p = plural(entityName);
|
|
22964
23540
|
const requiredFields = [
|
|
@@ -23189,16 +23765,16 @@ function buildPage72(c) {
|
|
|
23189
23765
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
23190
23766
|
}
|
|
23191
23767
|
function stdServiceTwilioEntity(params = {}) {
|
|
23192
|
-
return buildEntity72(
|
|
23768
|
+
return buildEntity72(resolve86(params));
|
|
23193
23769
|
}
|
|
23194
23770
|
function stdServiceTwilioTrait(params = {}) {
|
|
23195
|
-
return buildTrait71(
|
|
23771
|
+
return buildTrait71(resolve86(params));
|
|
23196
23772
|
}
|
|
23197
23773
|
function stdServiceTwilioPage(params = {}) {
|
|
23198
|
-
return buildPage72(
|
|
23774
|
+
return buildPage72(resolve86(params));
|
|
23199
23775
|
}
|
|
23200
23776
|
function stdServiceTwilio(params = {}) {
|
|
23201
|
-
const c =
|
|
23777
|
+
const c = resolve86(params);
|
|
23202
23778
|
const pages = [];
|
|
23203
23779
|
const page = buildPage72(c);
|
|
23204
23780
|
if (page) pages.push(page);
|
|
@@ -23209,7 +23785,7 @@ function stdServiceTwilio(params = {}) {
|
|
|
23209
23785
|
pages
|
|
23210
23786
|
);
|
|
23211
23787
|
}
|
|
23212
|
-
function
|
|
23788
|
+
function resolve87(params) {
|
|
23213
23789
|
const entityName = params.entityName ?? "PullRequest";
|
|
23214
23790
|
const p = plural(entityName);
|
|
23215
23791
|
const requiredFields = [
|
|
@@ -23413,16 +23989,16 @@ function buildPage73(c) {
|
|
|
23413
23989
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
23414
23990
|
}
|
|
23415
23991
|
function stdServiceGithubEntity(params = {}) {
|
|
23416
|
-
return buildEntity73(
|
|
23992
|
+
return buildEntity73(resolve87(params));
|
|
23417
23993
|
}
|
|
23418
23994
|
function stdServiceGithubTrait(params = {}) {
|
|
23419
|
-
return buildTrait72(
|
|
23995
|
+
return buildTrait72(resolve87(params));
|
|
23420
23996
|
}
|
|
23421
23997
|
function stdServiceGithubPage(params = {}) {
|
|
23422
|
-
return buildPage73(
|
|
23998
|
+
return buildPage73(resolve87(params));
|
|
23423
23999
|
}
|
|
23424
24000
|
function stdServiceGithub(params = {}) {
|
|
23425
|
-
const c =
|
|
24001
|
+
const c = resolve87(params);
|
|
23426
24002
|
return makeOrbital(
|
|
23427
24003
|
`${c.entityName}Orbital`,
|
|
23428
24004
|
buildEntity73(c),
|
|
@@ -23430,7 +24006,7 @@ function stdServiceGithub(params = {}) {
|
|
|
23430
24006
|
[buildPage73(c)]
|
|
23431
24007
|
);
|
|
23432
24008
|
}
|
|
23433
|
-
function
|
|
24009
|
+
function resolve88(params) {
|
|
23434
24010
|
const entityName = params.entityName ?? "VideoSearch";
|
|
23435
24011
|
const p = plural(entityName);
|
|
23436
24012
|
const requiredFields = [
|
|
@@ -23724,16 +24300,16 @@ function buildPage74(c) {
|
|
|
23724
24300
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
23725
24301
|
}
|
|
23726
24302
|
function stdServiceYoutubeEntity(params = {}) {
|
|
23727
|
-
return buildEntity74(
|
|
24303
|
+
return buildEntity74(resolve88(params));
|
|
23728
24304
|
}
|
|
23729
24305
|
function stdServiceYoutubeTrait(params = {}) {
|
|
23730
|
-
return buildTrait73(
|
|
24306
|
+
return buildTrait73(resolve88(params));
|
|
23731
24307
|
}
|
|
23732
24308
|
function stdServiceYoutubePage(params = {}) {
|
|
23733
|
-
return buildPage74(
|
|
24309
|
+
return buildPage74(resolve88(params));
|
|
23734
24310
|
}
|
|
23735
24311
|
function stdServiceYoutube(params = {}) {
|
|
23736
|
-
const c =
|
|
24312
|
+
const c = resolve88(params);
|
|
23737
24313
|
const pages = [];
|
|
23738
24314
|
const page = buildPage74(c);
|
|
23739
24315
|
if (page) pages.push(page);
|
|
@@ -23744,7 +24320,7 @@ function stdServiceYoutube(params = {}) {
|
|
|
23744
24320
|
pages
|
|
23745
24321
|
);
|
|
23746
24322
|
}
|
|
23747
|
-
function
|
|
24323
|
+
function resolve89(params) {
|
|
23748
24324
|
const entityName = params.entityName ?? "LlmTask";
|
|
23749
24325
|
const p = plural(entityName);
|
|
23750
24326
|
const requiredFields = [
|
|
@@ -23991,16 +24567,16 @@ function buildPage75(c) {
|
|
|
23991
24567
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
23992
24568
|
}
|
|
23993
24569
|
function stdServiceLlmEntity(params = {}) {
|
|
23994
|
-
return buildEntity75(
|
|
24570
|
+
return buildEntity75(resolve89(params));
|
|
23995
24571
|
}
|
|
23996
24572
|
function stdServiceLlmTrait(params = {}) {
|
|
23997
|
-
return buildTrait74(
|
|
24573
|
+
return buildTrait74(resolve89(params));
|
|
23998
24574
|
}
|
|
23999
24575
|
function stdServiceLlmPage(params = {}) {
|
|
24000
|
-
return buildPage75(
|
|
24576
|
+
return buildPage75(resolve89(params));
|
|
24001
24577
|
}
|
|
24002
24578
|
function stdServiceLlm(params = {}) {
|
|
24003
|
-
const c =
|
|
24579
|
+
const c = resolve89(params);
|
|
24004
24580
|
const pages = [];
|
|
24005
24581
|
const page = buildPage75(c);
|
|
24006
24582
|
if (page) pages.push(page);
|
|
@@ -24011,7 +24587,7 @@ function stdServiceLlm(params = {}) {
|
|
|
24011
24587
|
pages
|
|
24012
24588
|
);
|
|
24013
24589
|
}
|
|
24014
|
-
function
|
|
24590
|
+
function resolve90(params) {
|
|
24015
24591
|
const entityName = params.entityName ?? "ApiCall";
|
|
24016
24592
|
const p = plural(entityName);
|
|
24017
24593
|
const requiredFields = [
|
|
@@ -24209,16 +24785,16 @@ function buildPage76(c) {
|
|
|
24209
24785
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
24210
24786
|
}
|
|
24211
24787
|
function stdServiceCustomHeaderEntity(params) {
|
|
24212
|
-
return buildEntity76(
|
|
24788
|
+
return buildEntity76(resolve90(params));
|
|
24213
24789
|
}
|
|
24214
24790
|
function stdServiceCustomHeaderTrait(params) {
|
|
24215
|
-
return buildTrait75(
|
|
24791
|
+
return buildTrait75(resolve90(params));
|
|
24216
24792
|
}
|
|
24217
24793
|
function stdServiceCustomHeaderPage(params) {
|
|
24218
|
-
return buildPage76(
|
|
24794
|
+
return buildPage76(resolve90(params));
|
|
24219
24795
|
}
|
|
24220
24796
|
function stdServiceCustomHeader(params) {
|
|
24221
|
-
const c =
|
|
24797
|
+
const c = resolve90(params);
|
|
24222
24798
|
const orbital = makeOrbital(
|
|
24223
24799
|
`${c.entityName}Orbital`,
|
|
24224
24800
|
buildEntity76(c),
|
|
@@ -24240,7 +24816,7 @@ function stdServiceCustomHeader(params) {
|
|
|
24240
24816
|
}]
|
|
24241
24817
|
};
|
|
24242
24818
|
}
|
|
24243
|
-
function
|
|
24819
|
+
function resolve91(params) {
|
|
24244
24820
|
const entityName = params.entityName ?? "ApiCall";
|
|
24245
24821
|
const p = plural(entityName);
|
|
24246
24822
|
const requiredFields = [
|
|
@@ -24438,16 +25014,16 @@ function buildPage77(c) {
|
|
|
24438
25014
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
24439
25015
|
}
|
|
24440
25016
|
function stdServiceCustomQueryEntity(params) {
|
|
24441
|
-
return buildEntity77(
|
|
25017
|
+
return buildEntity77(resolve91(params));
|
|
24442
25018
|
}
|
|
24443
25019
|
function stdServiceCustomQueryTrait(params) {
|
|
24444
|
-
return buildTrait76(
|
|
25020
|
+
return buildTrait76(resolve91(params));
|
|
24445
25021
|
}
|
|
24446
25022
|
function stdServiceCustomQueryPage(params) {
|
|
24447
|
-
return buildPage77(
|
|
25023
|
+
return buildPage77(resolve91(params));
|
|
24448
25024
|
}
|
|
24449
25025
|
function stdServiceCustomQuery(params) {
|
|
24450
|
-
const c =
|
|
25026
|
+
const c = resolve91(params);
|
|
24451
25027
|
const orbital = makeOrbital(
|
|
24452
25028
|
`${c.entityName}Orbital`,
|
|
24453
25029
|
buildEntity77(c),
|
|
@@ -24469,7 +25045,7 @@ function stdServiceCustomQuery(params) {
|
|
|
24469
25045
|
}]
|
|
24470
25046
|
};
|
|
24471
25047
|
}
|
|
24472
|
-
function
|
|
25048
|
+
function resolve92(params) {
|
|
24473
25049
|
const entityName = params.entityName ?? "ApiCall";
|
|
24474
25050
|
const p = plural(entityName);
|
|
24475
25051
|
const requiredFields = [
|
|
@@ -24665,16 +25241,16 @@ function buildPage78(c) {
|
|
|
24665
25241
|
return makePage({ name: c.pageName, path: c.pagePath, traitName: c.traitName, isInitial: c.isInitial });
|
|
24666
25242
|
}
|
|
24667
25243
|
function stdServiceCustomNoauthEntity(params) {
|
|
24668
|
-
return buildEntity78(
|
|
25244
|
+
return buildEntity78(resolve92(params));
|
|
24669
25245
|
}
|
|
24670
25246
|
function stdServiceCustomNoauthTrait(params) {
|
|
24671
|
-
return buildTrait77(
|
|
25247
|
+
return buildTrait77(resolve92(params));
|
|
24672
25248
|
}
|
|
24673
25249
|
function stdServiceCustomNoauthPage(params) {
|
|
24674
|
-
return buildPage78(
|
|
25250
|
+
return buildPage78(resolve92(params));
|
|
24675
25251
|
}
|
|
24676
25252
|
function stdServiceCustomNoauth(params) {
|
|
24677
|
-
const c =
|
|
25253
|
+
const c = resolve92(params);
|
|
24678
25254
|
const orbital = makeOrbital(
|
|
24679
25255
|
`${c.entityName}Orbital`,
|
|
24680
25256
|
buildEntity78(c),
|
|
@@ -24691,6 +25267,175 @@ function stdServiceCustomNoauth(params) {
|
|
|
24691
25267
|
};
|
|
24692
25268
|
}
|
|
24693
25269
|
|
|
25270
|
+
// behaviors/exports-reader.ts
|
|
25271
|
+
function fnNameToBehaviorName(fnName) {
|
|
25272
|
+
if (fnName.includes("Entity") || fnName.includes("Trait") || fnName.includes("Page")) return null;
|
|
25273
|
+
if (["connect", "compose", "pipe", "makeEntity", "makePage", "makeOrbital", "mergeOrbitals", "wire", "extractTrait", "ensureIdField", "plural"].includes(fnName)) return null;
|
|
25274
|
+
const withDashes = fnName.replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase();
|
|
25275
|
+
if (!withDashes.startsWith("std-")) return null;
|
|
25276
|
+
return withDashes;
|
|
25277
|
+
}
|
|
25278
|
+
var cachedEntries = null;
|
|
25279
|
+
function getEntries() {
|
|
25280
|
+
if (cachedEntries) return cachedEntries;
|
|
25281
|
+
cachedEntries = [];
|
|
25282
|
+
const fns = functions_exports;
|
|
25283
|
+
for (const [fnName, fn] of Object.entries(fns)) {
|
|
25284
|
+
if (typeof fn !== "function") continue;
|
|
25285
|
+
const behaviorName = fnNameToBehaviorName(fnName);
|
|
25286
|
+
if (!behaviorName) continue;
|
|
25287
|
+
cachedEntries.push({ name: behaviorName, fn });
|
|
25288
|
+
}
|
|
25289
|
+
return cachedEntries;
|
|
25290
|
+
}
|
|
25291
|
+
function callBehavior(entry) {
|
|
25292
|
+
const result = entry.fn({ entityName: entry.name.replace(/^std-/, "") });
|
|
25293
|
+
const schema = result;
|
|
25294
|
+
schema.name = entry.name;
|
|
25295
|
+
return schema;
|
|
25296
|
+
}
|
|
25297
|
+
function getAllBehaviorNames() {
|
|
25298
|
+
return getEntries().map((e) => e.name);
|
|
25299
|
+
}
|
|
25300
|
+
function getAllBehaviors() {
|
|
25301
|
+
return getEntries().map((e) => callBehavior(e));
|
|
25302
|
+
}
|
|
25303
|
+
function getBehaviorsByLevel(level) {
|
|
25304
|
+
return getAllBehaviors();
|
|
25305
|
+
}
|
|
25306
|
+
function loadGoldenOrb(behaviorName) {
|
|
25307
|
+
const entry = getEntries().find((e) => e.name === behaviorName);
|
|
25308
|
+
if (!entry) return null;
|
|
25309
|
+
try {
|
|
25310
|
+
return callBehavior(entry);
|
|
25311
|
+
} catch {
|
|
25312
|
+
return null;
|
|
25313
|
+
}
|
|
25314
|
+
}
|
|
25315
|
+
function hasGoldenOrb(behaviorName) {
|
|
25316
|
+
return getEntries().some((e) => e.name === behaviorName);
|
|
25317
|
+
}
|
|
25318
|
+
|
|
25319
|
+
// behaviors/query.ts
|
|
25320
|
+
var registryJsonData = null;
|
|
25321
|
+
async function loadRegistryData() {
|
|
25322
|
+
if (registryJsonData) return registryJsonData;
|
|
25323
|
+
try {
|
|
25324
|
+
const { readFileSync } = await import('fs');
|
|
25325
|
+
const { resolve: resolve93, dirname } = await import('path');
|
|
25326
|
+
const { fileURLToPath } = await import('url');
|
|
25327
|
+
const dir = dirname(fileURLToPath(import.meta.url));
|
|
25328
|
+
const raw = readFileSync(resolve93(dir, "behaviors-registry.json"), "utf-8");
|
|
25329
|
+
registryJsonData = JSON.parse(raw);
|
|
25330
|
+
} catch {
|
|
25331
|
+
registryJsonData = { behaviors: {} };
|
|
25332
|
+
}
|
|
25333
|
+
return registryJsonData;
|
|
25334
|
+
}
|
|
25335
|
+
var registryCache = null;
|
|
25336
|
+
async function getBehaviorRegistry() {
|
|
25337
|
+
if (registryCache) return registryCache;
|
|
25338
|
+
try {
|
|
25339
|
+
const data = await loadRegistryData();
|
|
25340
|
+
registryCache = data.behaviors;
|
|
25341
|
+
return registryCache;
|
|
25342
|
+
} catch {
|
|
25343
|
+
return {};
|
|
25344
|
+
}
|
|
25345
|
+
}
|
|
25346
|
+
async function getBehaviorsByDomain(domain) {
|
|
25347
|
+
const registry = await getBehaviorRegistry();
|
|
25348
|
+
const lower = domain.toLowerCase();
|
|
25349
|
+
return Object.values(registry).filter((b) => {
|
|
25350
|
+
return b.layer.toLowerCase() === lower || b.layer.toLowerCase().includes(lower) || b.family.toLowerCase() === lower || b.family.toLowerCase().includes(lower);
|
|
25351
|
+
});
|
|
25352
|
+
}
|
|
25353
|
+
async function getBehaviorsByOperations(ops) {
|
|
25354
|
+
const registry = await getBehaviorRegistry();
|
|
25355
|
+
const upperOps = ops.map((o) => o.toUpperCase());
|
|
25356
|
+
const scored = Object.values(registry).map((b) => {
|
|
25357
|
+
const matches = upperOps.filter(
|
|
25358
|
+
(op) => b.connectableEvents.some((e) => e.toUpperCase() === op || e.toUpperCase().includes(op))
|
|
25359
|
+
);
|
|
25360
|
+
return { entry: b, score: matches.length };
|
|
25361
|
+
});
|
|
25362
|
+
return scored.filter((s) => s.score > 0).sort((a, b) => b.score - a.score).map((s) => s.entry);
|
|
25363
|
+
}
|
|
25364
|
+
async function searchBehaviors(query) {
|
|
25365
|
+
const registry = await getBehaviorRegistry();
|
|
25366
|
+
const tokens = query.toLowerCase().split(/\s+/).filter(Boolean);
|
|
25367
|
+
const scored = Object.values(registry).map((b) => {
|
|
25368
|
+
const searchText = [
|
|
25369
|
+
b.name,
|
|
25370
|
+
b.description,
|
|
25371
|
+
b.family,
|
|
25372
|
+
b.layer,
|
|
25373
|
+
b.defaultEntity.name,
|
|
25374
|
+
b.statePattern
|
|
25375
|
+
].join(" ").toLowerCase();
|
|
25376
|
+
const score = tokens.filter((t) => searchText.includes(t)).length;
|
|
25377
|
+
return { entry: b, score };
|
|
25378
|
+
});
|
|
25379
|
+
return scored.filter((s) => s.score > 0).sort((a, b) => b.score - a.score).map((s) => s.entry);
|
|
25380
|
+
}
|
|
25381
|
+
async function getBehaviorSummary(name) {
|
|
25382
|
+
const registry = await getBehaviorRegistry();
|
|
25383
|
+
const entry = registry[name];
|
|
25384
|
+
if (!entry) return null;
|
|
25385
|
+
const summary = {
|
|
25386
|
+
name: entry.name,
|
|
25387
|
+
level: entry.level,
|
|
25388
|
+
description: entry.description,
|
|
25389
|
+
states: entry.statePattern.split(", ").filter(Boolean),
|
|
25390
|
+
events: entry.connectableEvents,
|
|
25391
|
+
slots: [],
|
|
25392
|
+
patterns: [],
|
|
25393
|
+
complexity: entry.complexity,
|
|
25394
|
+
composableWith: entry.composableWith.slice(0, 10)
|
|
25395
|
+
};
|
|
25396
|
+
try {
|
|
25397
|
+
const orb = loadGoldenOrb(name);
|
|
25398
|
+
if (orb) {
|
|
25399
|
+
const slots = /* @__PURE__ */ new Set();
|
|
25400
|
+
const patterns = /* @__PURE__ */ new Set();
|
|
25401
|
+
extractSlotsAndPatterns(orb, slots, patterns);
|
|
25402
|
+
summary.slots = Array.from(slots);
|
|
25403
|
+
summary.patterns = Array.from(patterns);
|
|
25404
|
+
}
|
|
25405
|
+
} catch {
|
|
25406
|
+
}
|
|
25407
|
+
return summary;
|
|
25408
|
+
}
|
|
25409
|
+
function extractSlotsAndPatterns(obj, slots, patterns) {
|
|
25410
|
+
if (Array.isArray(obj)) {
|
|
25411
|
+
if (obj.length >= 3 && obj[0] === "render-ui" && typeof obj[1] === "string") {
|
|
25412
|
+
slots.add(obj[1]);
|
|
25413
|
+
if (obj[2] && typeof obj[2] === "object") {
|
|
25414
|
+
extractPatternTypes(obj[2], patterns);
|
|
25415
|
+
}
|
|
25416
|
+
}
|
|
25417
|
+
for (const item of obj) {
|
|
25418
|
+
extractSlotsAndPatterns(item, slots, patterns);
|
|
25419
|
+
}
|
|
25420
|
+
} else if (obj && typeof obj === "object") {
|
|
25421
|
+
for (const value of Object.values(obj)) {
|
|
25422
|
+
extractSlotsAndPatterns(value, slots, patterns);
|
|
25423
|
+
}
|
|
25424
|
+
}
|
|
25425
|
+
}
|
|
25426
|
+
function extractPatternTypes(node, patterns) {
|
|
25427
|
+
if (!node || typeof node !== "object") return;
|
|
25428
|
+
const obj = node;
|
|
25429
|
+
if (typeof obj.type === "string") {
|
|
25430
|
+
patterns.add(obj.type);
|
|
25431
|
+
}
|
|
25432
|
+
if (Array.isArray(obj.children)) {
|
|
25433
|
+
for (const child of obj.children) {
|
|
25434
|
+
extractPatternTypes(child, patterns);
|
|
25435
|
+
}
|
|
25436
|
+
}
|
|
25437
|
+
}
|
|
25438
|
+
|
|
24694
25439
|
// docs-generator.ts
|
|
24695
25440
|
var MODULE_DESCRIPTIONS = {
|
|
24696
25441
|
math: {
|
|
@@ -24788,6 +25533,12 @@ var MODULE_DESCRIPTIONS = {
|
|
|
24788
25533
|
displayName: "Data Pipeline",
|
|
24789
25534
|
description: "Data loading, batching, shuffling, and preprocessing for ML pipelines.",
|
|
24790
25535
|
icon: "\u{1F4E6}"
|
|
25536
|
+
},
|
|
25537
|
+
agent: {
|
|
25538
|
+
name: "Agent",
|
|
25539
|
+
displayName: "Agent Intelligence",
|
|
25540
|
+
description: "Agent memory management, LLM access, tool invocation, context management, and session control.",
|
|
25541
|
+
icon: "\u{1F916}"
|
|
24791
25542
|
}
|
|
24792
25543
|
};
|
|
24793
25544
|
var BEHAVIOR_GROUPINGS = {
|