@almadar/core 1.0.15 → 1.0.16
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/domain-language/index.d.ts +1 -1
- package/dist/domain-language/index.js +12 -8
- package/dist/domain-language/index.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +13 -9
- package/dist/index.js.map +1 -1
- package/dist/{schema-DFOz4rEu.d.ts → schema-zGCZtr5W.d.ts} +43 -36
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.js +13 -9
- package/dist/types/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -3733,6 +3733,13 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3733
3733
|
*/
|
|
3734
3734
|
type DomainCategory = "healthcare" | "education" | "finance" | "ecommerce" | "real-estate" | "logistics" | "hospitality" | "hr-management" | "project-management" | "social" | "content-management" | "iot" | "analytics" | "game" | "custom";
|
|
3735
3735
|
declare const DomainCategorySchema: z.ZodEnum<["healthcare", "education", "finance", "ecommerce", "real-estate", "logistics", "hospitality", "hr-management", "project-management", "social", "content-management", "iot", "analytics", "game", "custom"]>;
|
|
3736
|
+
/**
|
|
3737
|
+
* Simplified domain categories used by the agent tools for application classification.
|
|
3738
|
+
* All agent tools and skill generators should derive from this constant.
|
|
3739
|
+
*/
|
|
3740
|
+
declare const AGENT_DOMAIN_CATEGORIES: readonly ["game", "business", "dashboard", "form", "content", "social", "ecommerce", "workflow"];
|
|
3741
|
+
type AgentDomainCategory = (typeof AGENT_DOMAIN_CATEGORIES)[number];
|
|
3742
|
+
declare const AgentDomainCategorySchema: z.ZodEnum<["game", "business", "dashboard", "form", "content", "social", "ecommerce", "workflow"]>;
|
|
3736
3743
|
/**
|
|
3737
3744
|
* Game genre sub-categories
|
|
3738
3745
|
*/
|
|
@@ -3820,7 +3827,7 @@ interface DomainContext {
|
|
|
3820
3827
|
*/
|
|
3821
3828
|
requestFragment?: string;
|
|
3822
3829
|
/** Domain category */
|
|
3823
|
-
category:
|
|
3830
|
+
category: AgentDomainCategory;
|
|
3824
3831
|
/** Sub-domain for more specific classification */
|
|
3825
3832
|
subDomain?: string;
|
|
3826
3833
|
/** User personas */
|
|
@@ -3831,7 +3838,7 @@ interface DomainContext {
|
|
|
3831
3838
|
declare const DomainContextSchema: z.ZodObject<{
|
|
3832
3839
|
request: z.ZodString;
|
|
3833
3840
|
requestFragment: z.ZodOptional<z.ZodString>;
|
|
3834
|
-
category: z.ZodEnum<["game", "business", "dashboard", "form", "content", "social"]>;
|
|
3841
|
+
category: z.ZodEnum<["game", "business", "dashboard", "form", "content", "social", "ecommerce", "workflow"]>;
|
|
3835
3842
|
subDomain: z.ZodOptional<z.ZodString>;
|
|
3836
3843
|
personas: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3837
3844
|
name: z.ZodString;
|
|
@@ -3848,7 +3855,7 @@ declare const DomainContextSchema: z.ZodObject<{
|
|
|
3848
3855
|
}>, "many">>;
|
|
3849
3856
|
vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3850
3857
|
}, "strip", z.ZodTypeAny, {
|
|
3851
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
3858
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
3852
3859
|
request: string;
|
|
3853
3860
|
requestFragment?: string | undefined;
|
|
3854
3861
|
subDomain?: string | undefined;
|
|
@@ -3859,7 +3866,7 @@ declare const DomainContextSchema: z.ZodObject<{
|
|
|
3859
3866
|
}[] | undefined;
|
|
3860
3867
|
vocabulary?: Record<string, string> | undefined;
|
|
3861
3868
|
}, {
|
|
3862
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
3869
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
3863
3870
|
request: string;
|
|
3864
3871
|
requestFragment?: string | undefined;
|
|
3865
3872
|
subDomain?: string | undefined;
|
|
@@ -6584,7 +6591,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
6584
6591
|
domainContext: z.ZodOptional<z.ZodObject<{
|
|
6585
6592
|
request: z.ZodString;
|
|
6586
6593
|
requestFragment: z.ZodOptional<z.ZodString>;
|
|
6587
|
-
category: z.ZodEnum<["game", "business", "dashboard", "form", "content", "social"]>;
|
|
6594
|
+
category: z.ZodEnum<["game", "business", "dashboard", "form", "content", "social", "ecommerce", "workflow"]>;
|
|
6588
6595
|
subDomain: z.ZodOptional<z.ZodString>;
|
|
6589
6596
|
personas: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6590
6597
|
name: z.ZodString;
|
|
@@ -6601,7 +6608,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
6601
6608
|
}>, "many">>;
|
|
6602
6609
|
vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6603
6610
|
}, "strip", z.ZodTypeAny, {
|
|
6604
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
6611
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
6605
6612
|
request: string;
|
|
6606
6613
|
requestFragment?: string | undefined;
|
|
6607
6614
|
subDomain?: string | undefined;
|
|
@@ -6612,7 +6619,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
6612
6619
|
}[] | undefined;
|
|
6613
6620
|
vocabulary?: Record<string, string> | undefined;
|
|
6614
6621
|
}, {
|
|
6615
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
6622
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
6616
6623
|
request: string;
|
|
6617
6624
|
requestFragment?: string | undefined;
|
|
6618
6625
|
subDomain?: string | undefined;
|
|
@@ -6937,7 +6944,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
6937
6944
|
})[] | undefined;
|
|
6938
6945
|
exposes?: string[] | undefined;
|
|
6939
6946
|
domainContext?: {
|
|
6940
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
6947
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
6941
6948
|
request: string;
|
|
6942
6949
|
requestFragment?: string | undefined;
|
|
6943
6950
|
subDomain?: string | undefined;
|
|
@@ -7194,7 +7201,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
7194
7201
|
})[] | undefined;
|
|
7195
7202
|
exposes?: string[] | undefined;
|
|
7196
7203
|
domainContext?: {
|
|
7197
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
7204
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
7198
7205
|
request: string;
|
|
7199
7206
|
requestFragment?: string | undefined;
|
|
7200
7207
|
subDomain?: string | undefined;
|
|
@@ -8224,7 +8231,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
8224
8231
|
domainContext: z.ZodOptional<z.ZodObject<{
|
|
8225
8232
|
request: z.ZodString;
|
|
8226
8233
|
requestFragment: z.ZodOptional<z.ZodString>;
|
|
8227
|
-
category: z.ZodEnum<["game", "business", "dashboard", "form", "content", "social"]>;
|
|
8234
|
+
category: z.ZodEnum<["game", "business", "dashboard", "form", "content", "social", "ecommerce", "workflow"]>;
|
|
8228
8235
|
subDomain: z.ZodOptional<z.ZodString>;
|
|
8229
8236
|
personas: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8230
8237
|
name: z.ZodString;
|
|
@@ -8241,7 +8248,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
8241
8248
|
}>, "many">>;
|
|
8242
8249
|
vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
8243
8250
|
}, "strip", z.ZodTypeAny, {
|
|
8244
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
8251
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
8245
8252
|
request: string;
|
|
8246
8253
|
requestFragment?: string | undefined;
|
|
8247
8254
|
subDomain?: string | undefined;
|
|
@@ -8252,7 +8259,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
8252
8259
|
}[] | undefined;
|
|
8253
8260
|
vocabulary?: Record<string, string> | undefined;
|
|
8254
8261
|
}, {
|
|
8255
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
8262
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
8256
8263
|
request: string;
|
|
8257
8264
|
requestFragment?: string | undefined;
|
|
8258
8265
|
subDomain?: string | undefined;
|
|
@@ -8577,7 +8584,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
8577
8584
|
})[] | undefined;
|
|
8578
8585
|
exposes?: string[] | undefined;
|
|
8579
8586
|
domainContext?: {
|
|
8580
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
8587
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
8581
8588
|
request: string;
|
|
8582
8589
|
requestFragment?: string | undefined;
|
|
8583
8590
|
subDomain?: string | undefined;
|
|
@@ -8834,7 +8841,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
8834
8841
|
})[] | undefined;
|
|
8835
8842
|
exposes?: string[] | undefined;
|
|
8836
8843
|
domainContext?: {
|
|
8837
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
8844
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
8838
8845
|
request: string;
|
|
8839
8846
|
requestFragment?: string | undefined;
|
|
8840
8847
|
subDomain?: string | undefined;
|
|
@@ -9871,7 +9878,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
9871
9878
|
domainContext: z.ZodOptional<z.ZodObject<{
|
|
9872
9879
|
request: z.ZodString;
|
|
9873
9880
|
requestFragment: z.ZodOptional<z.ZodString>;
|
|
9874
|
-
category: z.ZodEnum<["game", "business", "dashboard", "form", "content", "social"]>;
|
|
9881
|
+
category: z.ZodEnum<["game", "business", "dashboard", "form", "content", "social", "ecommerce", "workflow"]>;
|
|
9875
9882
|
subDomain: z.ZodOptional<z.ZodString>;
|
|
9876
9883
|
personas: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9877
9884
|
name: z.ZodString;
|
|
@@ -9888,7 +9895,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
9888
9895
|
}>, "many">>;
|
|
9889
9896
|
vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
9890
9897
|
}, "strip", z.ZodTypeAny, {
|
|
9891
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
9898
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
9892
9899
|
request: string;
|
|
9893
9900
|
requestFragment?: string | undefined;
|
|
9894
9901
|
subDomain?: string | undefined;
|
|
@@ -9899,7 +9906,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
9899
9906
|
}[] | undefined;
|
|
9900
9907
|
vocabulary?: Record<string, string> | undefined;
|
|
9901
9908
|
}, {
|
|
9902
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
9909
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
9903
9910
|
request: string;
|
|
9904
9911
|
requestFragment?: string | undefined;
|
|
9905
9912
|
subDomain?: string | undefined;
|
|
@@ -10224,7 +10231,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
10224
10231
|
})[] | undefined;
|
|
10225
10232
|
exposes?: string[] | undefined;
|
|
10226
10233
|
domainContext?: {
|
|
10227
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
10234
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
10228
10235
|
request: string;
|
|
10229
10236
|
requestFragment?: string | undefined;
|
|
10230
10237
|
subDomain?: string | undefined;
|
|
@@ -10481,7 +10488,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
10481
10488
|
})[] | undefined;
|
|
10482
10489
|
exposes?: string[] | undefined;
|
|
10483
10490
|
domainContext?: {
|
|
10484
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
10491
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
10485
10492
|
request: string;
|
|
10486
10493
|
requestFragment?: string | undefined;
|
|
10487
10494
|
subDomain?: string | undefined;
|
|
@@ -10627,7 +10634,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
10627
10634
|
domainContext: z.ZodOptional<z.ZodObject<{
|
|
10628
10635
|
request: z.ZodString;
|
|
10629
10636
|
requestFragment: z.ZodOptional<z.ZodString>;
|
|
10630
|
-
category: z.ZodEnum<["game", "business", "dashboard", "form", "content", "social"]>;
|
|
10637
|
+
category: z.ZodEnum<["game", "business", "dashboard", "form", "content", "social", "ecommerce", "workflow"]>;
|
|
10631
10638
|
subDomain: z.ZodOptional<z.ZodString>;
|
|
10632
10639
|
personas: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10633
10640
|
name: z.ZodString;
|
|
@@ -10644,7 +10651,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
10644
10651
|
}>, "many">>;
|
|
10645
10652
|
vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
10646
10653
|
}, "strip", z.ZodTypeAny, {
|
|
10647
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
10654
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
10648
10655
|
request: string;
|
|
10649
10656
|
requestFragment?: string | undefined;
|
|
10650
10657
|
subDomain?: string | undefined;
|
|
@@ -10655,7 +10662,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
10655
10662
|
}[] | undefined;
|
|
10656
10663
|
vocabulary?: Record<string, string> | undefined;
|
|
10657
10664
|
}, {
|
|
10658
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
10665
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
10659
10666
|
request: string;
|
|
10660
10667
|
requestFragment?: string | undefined;
|
|
10661
10668
|
subDomain?: string | undefined;
|
|
@@ -11759,7 +11766,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
11759
11766
|
domainContext: z.ZodOptional<z.ZodObject<{
|
|
11760
11767
|
request: z.ZodString;
|
|
11761
11768
|
requestFragment: z.ZodOptional<z.ZodString>;
|
|
11762
|
-
category: z.ZodEnum<["game", "business", "dashboard", "form", "content", "social"]>;
|
|
11769
|
+
category: z.ZodEnum<["game", "business", "dashboard", "form", "content", "social", "ecommerce", "workflow"]>;
|
|
11763
11770
|
subDomain: z.ZodOptional<z.ZodString>;
|
|
11764
11771
|
personas: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11765
11772
|
name: z.ZodString;
|
|
@@ -11776,7 +11783,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
11776
11783
|
}>, "many">>;
|
|
11777
11784
|
vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
11778
11785
|
}, "strip", z.ZodTypeAny, {
|
|
11779
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
11786
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
11780
11787
|
request: string;
|
|
11781
11788
|
requestFragment?: string | undefined;
|
|
11782
11789
|
subDomain?: string | undefined;
|
|
@@ -11787,7 +11794,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
11787
11794
|
}[] | undefined;
|
|
11788
11795
|
vocabulary?: Record<string, string> | undefined;
|
|
11789
11796
|
}, {
|
|
11790
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
11797
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
11791
11798
|
request: string;
|
|
11792
11799
|
requestFragment?: string | undefined;
|
|
11793
11800
|
subDomain?: string | undefined;
|
|
@@ -12112,7 +12119,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
12112
12119
|
})[] | undefined;
|
|
12113
12120
|
exposes?: string[] | undefined;
|
|
12114
12121
|
domainContext?: {
|
|
12115
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
12122
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
12116
12123
|
request: string;
|
|
12117
12124
|
requestFragment?: string | undefined;
|
|
12118
12125
|
subDomain?: string | undefined;
|
|
@@ -12369,7 +12376,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
12369
12376
|
})[] | undefined;
|
|
12370
12377
|
exposes?: string[] | undefined;
|
|
12371
12378
|
domainContext?: {
|
|
12372
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
12379
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
12373
12380
|
request: string;
|
|
12374
12381
|
requestFragment?: string | undefined;
|
|
12375
12382
|
subDomain?: string | undefined;
|
|
@@ -12804,7 +12811,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
12804
12811
|
})[] | undefined;
|
|
12805
12812
|
exposes?: string[] | undefined;
|
|
12806
12813
|
domainContext?: {
|
|
12807
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
12814
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
12808
12815
|
request: string;
|
|
12809
12816
|
requestFragment?: string | undefined;
|
|
12810
12817
|
subDomain?: string | undefined;
|
|
@@ -12887,7 +12894,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
12887
12894
|
env?: Record<string, string> | undefined;
|
|
12888
12895
|
})[] | undefined;
|
|
12889
12896
|
domainContext?: {
|
|
12890
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
12897
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
12891
12898
|
request: string;
|
|
12892
12899
|
requestFragment?: string | undefined;
|
|
12893
12900
|
subDomain?: string | undefined;
|
|
@@ -13150,7 +13157,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
13150
13157
|
})[] | undefined;
|
|
13151
13158
|
exposes?: string[] | undefined;
|
|
13152
13159
|
domainContext?: {
|
|
13153
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
13160
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
13154
13161
|
request: string;
|
|
13155
13162
|
requestFragment?: string | undefined;
|
|
13156
13163
|
subDomain?: string | undefined;
|
|
@@ -13233,7 +13240,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
13233
13240
|
env?: Record<string, string> | undefined;
|
|
13234
13241
|
})[] | undefined;
|
|
13235
13242
|
domainContext?: {
|
|
13236
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
13243
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
13237
13244
|
request: string;
|
|
13238
13245
|
requestFragment?: string | undefined;
|
|
13239
13246
|
subDomain?: string | undefined;
|
|
@@ -13504,7 +13511,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
13504
13511
|
})[] | undefined;
|
|
13505
13512
|
exposes?: string[] | undefined;
|
|
13506
13513
|
domainContext?: {
|
|
13507
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
13514
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
13508
13515
|
request: string;
|
|
13509
13516
|
requestFragment?: string | undefined;
|
|
13510
13517
|
subDomain?: string | undefined;
|
|
@@ -13587,7 +13594,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
13587
13594
|
env?: Record<string, string> | undefined;
|
|
13588
13595
|
})[] | undefined;
|
|
13589
13596
|
domainContext?: {
|
|
13590
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
13597
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
13591
13598
|
request: string;
|
|
13592
13599
|
requestFragment?: string | undefined;
|
|
13593
13600
|
subDomain?: string | undefined;
|
|
@@ -13850,7 +13857,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
13850
13857
|
})[] | undefined;
|
|
13851
13858
|
exposes?: string[] | undefined;
|
|
13852
13859
|
domainContext?: {
|
|
13853
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
13860
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
13854
13861
|
request: string;
|
|
13855
13862
|
requestFragment?: string | undefined;
|
|
13856
13863
|
subDomain?: string | undefined;
|
|
@@ -13933,7 +13940,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
13933
13940
|
env?: Record<string, string> | undefined;
|
|
13934
13941
|
})[] | undefined;
|
|
13935
13942
|
domainContext?: {
|
|
13936
|
-
category: "dashboard" | "content" | "form" | "social" | "game" | "business";
|
|
13943
|
+
category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
|
|
13937
13944
|
request: string;
|
|
13938
13945
|
requestFragment?: string | undefined;
|
|
13939
13946
|
subDomain?: string | undefined;
|
|
@@ -13974,4 +13981,4 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
13974
13981
|
type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
|
|
13975
13982
|
type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
|
|
13976
13983
|
|
|
13977
|
-
export {
|
|
13984
|
+
export { EntityRefStringSchema as $, AGENT_DOMAIN_CATEGORIES as A, DesignPreferencesSchema as B, CORE_BINDINGS as C, type DesignPreferences as D, type DesignTokens as E, type DesignTokensInput as F, DesignTokensSchema as G, type DomainCategory as H, DomainCategorySchema as I, type DomainContext as J, type DomainContextInput as K, DomainContextSchema as L, type DomainVocabulary as M, DomainVocabularySchema as N, type OrbitalSchema as O, ENTITY_ROLES as P, type Effect as Q, type EffectInput as R, EffectSchema as S, type Entity as T, type EntityField as U, type EntityFieldInput as V, EntityFieldSchema as W, type EntityPersistence as X, EntityPersistenceSchema as Y, type EntityRef as Z, EntityRefSchema as _, ALLOWED_CUSTOM_COMPONENTS as a, type PageRefObject as a$, type EntityRole as a0, EntityRoleSchema as a1, EntitySchema as a2, type EntitySemanticRole as a3, EntitySemanticRoleSchema as a4, type Event as a5, type EventInput as a6, type EventListener as a7, EventListenerSchema as a8, type EventPayloadField as a9, type McpServiceDef as aA, McpServiceDefSchema as aB, type NodeClassification as aC, NodeClassificationSchema as aD, type OrbitalConfig as aE, type OrbitalConfigInput as aF, OrbitalConfigSchema as aG, type OrbitalDefinition as aH, OrbitalDefinitionSchema as aI, type OrbitalEntity as aJ, type OrbitalEntityInput as aK, OrbitalEntitySchema as aL, type OrbitalInput as aM, type OrbitalPage as aN, type OrbitalPageInput as aO, OrbitalPageSchema as aP, type OrbitalPageStrictInput as aQ, OrbitalPageStrictSchema as aR, type OrbitalSchemaInput as aS, OrbitalSchemaSchema as aT, type OrbitalTraitRef as aU, OrbitalTraitRefSchema as aV, type OrbitalUnit as aW, OrbitalUnitSchema as aX, OrbitalSchema$1 as aY, type Page as aZ, type PageRef as a_, EventPayloadFieldSchema as aa, EventSchema as ab, type EventScope as ac, EventScopeSchema as ad, type EventSemanticRole as ae, EventSemanticRoleSchema as af, type EventSource as ag, EventSourceSchema as ah, type Expression as ai, type ExpressionInput as aj, ExpressionSchema as ak, type Field as al, type FieldFormat as am, FieldFormatSchema as an, FieldSchema as ao, type FieldType as ap, FieldTypeSchema as aq, type Orbital as ar, GAME_TYPES as as, type GameSubCategory as at, GameSubCategorySchema as au, type GameType as av, GameTypeSchema as aw, type Guard as ax, type GuardInput as ay, GuardSchema as az, type AgentDomainCategory as b, type Trait as b$, PageRefObjectSchema as b0, PageRefSchema as b1, PageRefStringSchema as b2, PageSchema as b3, type PageTraitRef as b4, PageTraitRefSchema as b5, type ParsedBinding as b6, type PayloadField as b7, PayloadFieldSchema as b8, type PresentationType as b9, ServiceRefSchema as bA, ServiceRefStringSchema as bB, type ServiceType as bC, ServiceTypeSchema as bD, type SocketEvents as bE, SocketEventsSchema as bF, type SocketServiceDef as bG, SocketServiceDefSchema as bH, type State as bI, type StateInput as bJ, type StateMachine as bK, type StateMachineInput as bL, StateMachineSchema as bM, StateSchema as bN, type StateSemanticRole as bO, StateSemanticRoleSchema as bP, type SuggestedGuard as bQ, SuggestedGuardSchema as bR, type ThemeDefinition as bS, ThemeDefinitionSchema as bT, type ThemeRef as bU, ThemeRefSchema as bV, ThemeRefStringSchema as bW, type ThemeTokens as bX, ThemeTokensSchema as bY, type ThemeVariant as bZ, ThemeVariantSchema as b_, type RelatedLink as ba, RelatedLinkSchema as bb, type RelationConfig as bc, RelationConfigSchema as bd, type RenderUIConfig as be, type RequiredField as bf, RequiredFieldSchema as bg, type ResolvedAsset as bh, type ResolvedAssetInput as bi, ResolvedAssetSchema as bj, type RestAuthConfig as bk, RestAuthConfigSchema as bl, type RestServiceDef as bm, RestServiceDefSchema as bn, SERVICE_TYPES as bo, type SExpr as bp, type SExprAtom as bq, SExprAtomSchema as br, type SExprInput as bs, SExprSchema as bt, type SemanticAssetRef as bu, type SemanticAssetRefInput as bv, SemanticAssetRefSchema as bw, type ServiceDefinition as bx, ServiceDefinitionSchema as by, type ServiceRef as bz, AgentDomainCategorySchema as c, isPageReferenceString as c$, type TraitCategory as c0, TraitCategorySchema as c1, type TraitDataEntity as c2, TraitDataEntitySchema as c3, type TraitEntityField as c4, TraitEntityFieldSchema as c5, type TraitEventContract as c6, TraitEventContractSchema as c7, type TraitEventListener as c8, TraitEventListenerSchema as c9, type VisualStyle as cA, VisualStyleSchema as cB, callService as cC, collectBindings as cD, createAssetKey as cE, deriveCollection as cF, despawn as cG, doEffects as cH, emit as cI, findService as cJ, getArgs as cK, getDefaultAnimationsForRole as cL, getOperator as cM, getServiceNames as cN, getTraitConfig as cO, getTraitName as cP, hasService as cQ, isBinding as cR, isCircuitEvent as cS, isEffect as cT, isEntityReference as cU, isImportedTraitRef as cV, isInlineTrait as cW, isMcpService as cX, isOrbitalDefinition as cY, isPageReference as cZ, isPageReferenceObject as c_, type TraitInput as ca, type TraitRef as cb, TraitRefSchema as cc, type TraitReference as cd, type TraitReferenceInput as ce, TraitReferenceSchema as cf, TraitSchema as cg, type TraitTick as ch, TraitTickSchema as ci, type TraitUIBinding as cj, type Transition as ck, type TransitionInput as cl, TransitionSchema as cm, type UISlot as cn, UISlotSchema as co, UI_SLOTS as cp, type UXHints as cq, UXHintsSchema as cr, type UseDeclaration as cs, UseDeclarationSchema as ct, type UserPersona as cu, type UserPersonaInput as cv, UserPersonaSchema as cw, VISUAL_STYLES as cx, type ViewType as cy, ViewTypeSchema as cz, type AllowedCustomComponent as d, isRestService as d0, isRuntimeEntity as d1, isSExpr as d2, isSExprAtom as d3, isSExprCall as d4, isSExprEffect as d5, isServiceReference as d6, isSingletonEntity as d7, isSocketService as d8, isThemeReference as d9, isValidBinding as da, navigate as db, normalizeTraitRef as dc, notify as dd, parseAssetKey as de, parseBinding as df, parseEntityRef as dg, parseImportedTraitRef as dh, parseOrbitalSchema as di, parsePageRef as dj, parseServiceRef as dk, persist as dl, renderUI as dm, safeParseOrbitalSchema as dn, set as dp, sexpr as dq, spawn as dr, validateAssetAnimations as ds, walkSExpr as dt, type AnimationDef as e, type AnimationDefInput as f, AnimationDefSchema as g, type AssetMap as h, type AssetMapInput as i, AssetMapSchema as j, type AssetMapping as k, type AssetMappingInput as l, AssetMappingSchema as m, type CallServiceConfig as n, type ComputedEventContract as o, ComputedEventContractSchema as p, type ComputedEventListener as q, ComputedEventListenerSchema as r, type CoreBinding as s, type CustomPatternDefinition as t, type CustomPatternDefinitionInput as u, CustomPatternDefinitionSchema as v, type CustomPatternMap as w, type CustomPatternMapInput as x, CustomPatternMapSchema as y, type DesignPreferencesInput as z };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export { A as
|
|
1
|
+
import { bp as SExpr } from '../schema-zGCZtr5W.js';
|
|
2
|
+
export { A as AGENT_DOMAIN_CATEGORIES, a as ALLOWED_CUSTOM_COMPONENTS, b as AgentDomainCategory, c as AgentDomainCategorySchema, d as AllowedCustomComponent, e as AnimationDef, f as AnimationDefInput, g as AnimationDefSchema, O as AppSchema, h as AssetMap, i as AssetMapInput, j as AssetMapSchema, k as AssetMapping, l as AssetMappingInput, m as AssetMappingSchema, C as CORE_BINDINGS, n as CallServiceConfig, o as ComputedEventContract, p as ComputedEventContractSchema, q as ComputedEventListener, r as ComputedEventListenerSchema, s as CoreBinding, t as CustomPatternDefinition, u as CustomPatternDefinitionInput, v as CustomPatternDefinitionSchema, w as CustomPatternMap, x as CustomPatternMapInput, y as CustomPatternMapSchema, D as DesignPreferences, z as DesignPreferencesInput, B as DesignPreferencesSchema, E as DesignTokens, F as DesignTokensInput, G as DesignTokensSchema, H as DomainCategory, I as DomainCategorySchema, J as DomainContext, K as DomainContextInput, L as DomainContextSchema, M as DomainVocabulary, N as DomainVocabularySchema, P as ENTITY_ROLES, Q as Effect, R as EffectInput, S as EffectSchema, T as Entity, U as EntityField, V as EntityFieldInput, W as EntityFieldSchema, X as EntityPersistence, Y as EntityPersistenceSchema, Z as EntityRef, _ as EntityRefSchema, $ as EntityRefStringSchema, a0 as EntityRole, a1 as EntityRoleSchema, a2 as EntitySchema, a3 as EntitySemanticRole, a4 as EntitySemanticRoleSchema, a5 as Event, a6 as EventInput, a7 as EventListener, a8 as EventListenerSchema, a9 as EventPayloadField, aa as EventPayloadFieldSchema, ab as EventSchema, ac as EventScope, ad as EventScopeSchema, ae as EventSemanticRole, af as EventSemanticRoleSchema, ag as EventSource, ah as EventSourceSchema, ai as Expression, aj as ExpressionInput, ak as ExpressionSchema, al as Field, am as FieldFormat, an as FieldFormatSchema, ao as FieldSchema, ap as FieldType, aq as FieldTypeSchema, ar as FullOrbitalUnit, as as GAME_TYPES, at as GameSubCategory, au as GameSubCategorySchema, av as GameType, aw as GameTypeSchema, ax as Guard, ay as GuardInput, az as GuardSchema, aA as McpServiceDef, aB as McpServiceDefSchema, aC as NodeClassification, aD as NodeClassificationSchema, ar as Orbital, aE as OrbitalConfig, aF as OrbitalConfigInput, aG as OrbitalConfigSchema, aH as OrbitalDefinition, aI as OrbitalDefinitionSchema, aJ as OrbitalEntity, aK as OrbitalEntityInput, aL as OrbitalEntitySchema, aM as OrbitalInput, aN as OrbitalPage, aO as OrbitalPageInput, aP as OrbitalPageSchema, aQ as OrbitalPageStrictInput, aR as OrbitalPageStrictSchema, O as OrbitalSchema, aS as OrbitalSchemaInput, aT as OrbitalSchemaSchema, aU as OrbitalTraitRef, aV as OrbitalTraitRefSchema, aW as OrbitalUnit, aX as OrbitalUnitSchema, aY as OrbitalZodSchema, aZ as Page, a_ as PageRef, a$ as PageRefObject, b0 as PageRefObjectSchema, b1 as PageRefSchema, b2 as PageRefStringSchema, b3 as PageSchema, b4 as PageTraitRef, b5 as PageTraitRefSchema, b6 as ParsedBinding, b7 as PayloadField, b8 as PayloadFieldSchema, b9 as PresentationType, ba as RelatedLink, bb as RelatedLinkSchema, bc as RelationConfig, bd as RelationConfigSchema, be as RenderUIConfig, bf as RequiredField, bg as RequiredFieldSchema, bh as ResolvedAsset, bi as ResolvedAssetInput, bj as ResolvedAssetSchema, bk as RestAuthConfig, bl as RestAuthConfigSchema, bm as RestServiceDef, bn as RestServiceDefSchema, bo as SERVICE_TYPES, bq as SExprAtom, br as SExprAtomSchema, bs as SExprInput, bt as SExprSchema, bu as SemanticAssetRef, bv as SemanticAssetRefInput, bw as SemanticAssetRefSchema, bx as ServiceDefinition, by as ServiceDefinitionSchema, bz as ServiceRef, bA as ServiceRefSchema, bB as ServiceRefStringSchema, bC as ServiceType, bD as ServiceTypeSchema, bE as SocketEvents, bF as SocketEventsSchema, bG as SocketServiceDef, bH as SocketServiceDefSchema, bI as State, bJ as StateInput, bK as StateMachine, bL as StateMachineInput, bM as StateMachineSchema, bN as StateSchema, bO as StateSemanticRole, bP as StateSemanticRoleSchema, bQ as SuggestedGuard, bR as SuggestedGuardSchema, bS as ThemeDefinition, bT as ThemeDefinitionSchema, bU as ThemeRef, bV as ThemeRefSchema, bW as ThemeRefStringSchema, bX as ThemeTokens, bY as ThemeTokensSchema, bZ as ThemeVariant, b_ as ThemeVariantSchema, b$ as Trait, c0 as TraitCategory, c1 as TraitCategorySchema, c2 as TraitDataEntity, c3 as TraitDataEntitySchema, c4 as TraitEntityField, c5 as TraitEntityFieldSchema, c6 as TraitEventContract, c7 as TraitEventContractSchema, c8 as TraitEventListener, c9 as TraitEventListenerSchema, ca as TraitInput, cb as TraitRef, cc as TraitRefSchema, cd as TraitReference, ce as TraitReferenceInput, cf as TraitReferenceSchema, cg as TraitSchema, ch as TraitTick, ci as TraitTickSchema, cj as TraitUIBinding, ck as Transition, cl as TransitionInput, cm as TransitionSchema, cn as UISlot, co as UISlotSchema, cp as UI_SLOTS, cq as UXHints, cr as UXHintsSchema, cs as UseDeclaration, ct as UseDeclarationSchema, cu as UserPersona, cv as UserPersonaInput, cw as UserPersonaSchema, cx as VISUAL_STYLES, cy as ViewType, cz as ViewTypeSchema, cA as VisualStyle, cB as VisualStyleSchema, cC as callService, cD as collectBindings, cE as createAssetKey, cF as deriveCollection, cG as despawn, cH as doEffects, cI as emit, cJ as findService, cK as getArgs, cL as getDefaultAnimationsForRole, cM as getOperator, cN as getServiceNames, cO as getTraitConfig, cP as getTraitName, cQ as hasService, cR as isBinding, cS as isCircuitEvent, cT as isEffect, cU as isEntityReference, cV as isImportedTraitRef, cW as isInlineTrait, cX as isMcpService, cY as isOrbitalDefinition, cZ as isPageReference, c_ as isPageReferenceObject, c$ as isPageReferenceString, d0 as isRestService, d1 as isRuntimeEntity, d2 as isSExpr, d3 as isSExprAtom, d4 as isSExprCall, d5 as isSExprEffect, d6 as isServiceReference, d7 as isSingletonEntity, d8 as isSocketService, d9 as isThemeReference, da as isValidBinding, db as navigate, dc as normalizeTraitRef, dd as notify, de as parseAssetKey, df as parseBinding, dg as parseEntityRef, dh as parseImportedTraitRef, di as parseOrbitalSchema, dj as parsePageRef, dk as parseServiceRef, dl as persist, dm as renderUI, dn as safeParseOrbitalSchema, dp as set, dq as sexpr, dr as spawn, ds as validateAssetAnimations, dt as walkSExpr } from '../schema-zGCZtr5W.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
export { CATEGORIES, CategoryMeta, OPERATORS, OPERATORS_SCHEMA, OPERATOR_NAMES, OperatorCategory, OperatorMeta, OperatorStats, OperatorsSchema, TargetPlatform, getOperatorMeta, getOperatorStats, getOperatorsByCategory, getOperatorsForTarget, isEffectOperator, isGuardOperator, isKnownOperator, validateOperatorArity } from '@almadar/operators';
|
|
5
5
|
export { PATTERN_TYPES, PatternConfig, PatternType, isValidPatternType } from '@almadar/patterns';
|
package/dist/types/index.js
CHANGED
|
@@ -584,6 +584,17 @@ var DomainCategorySchema = z.enum([
|
|
|
584
584
|
"game",
|
|
585
585
|
"custom"
|
|
586
586
|
]);
|
|
587
|
+
var AGENT_DOMAIN_CATEGORIES = [
|
|
588
|
+
"game",
|
|
589
|
+
"business",
|
|
590
|
+
"dashboard",
|
|
591
|
+
"form",
|
|
592
|
+
"content",
|
|
593
|
+
"social",
|
|
594
|
+
"ecommerce",
|
|
595
|
+
"workflow"
|
|
596
|
+
];
|
|
597
|
+
var AgentDomainCategorySchema = z.enum([...AGENT_DOMAIN_CATEGORIES]);
|
|
587
598
|
var GameSubCategorySchema = z.enum([
|
|
588
599
|
"platformer",
|
|
589
600
|
"shooter",
|
|
@@ -640,14 +651,7 @@ var UserPersonaSchema = z.object({
|
|
|
640
651
|
var DomainContextSchema = z.object({
|
|
641
652
|
request: z.string().min(1, "Original request is required"),
|
|
642
653
|
requestFragment: z.string().optional(),
|
|
643
|
-
category:
|
|
644
|
-
"game",
|
|
645
|
-
"business",
|
|
646
|
-
"dashboard",
|
|
647
|
-
"form",
|
|
648
|
-
"content",
|
|
649
|
-
"social"
|
|
650
|
-
]),
|
|
654
|
+
category: AgentDomainCategorySchema,
|
|
651
655
|
subDomain: z.string().optional(),
|
|
652
656
|
personas: z.array(UserPersonaSchema).optional(),
|
|
653
657
|
vocabulary: DomainVocabularySchema.optional()
|
|
@@ -1148,6 +1152,6 @@ function isResolvedIR(ir) {
|
|
|
1148
1152
|
return typeof r.appName === "string" && r.traits instanceof Map && r.pages instanceof Map;
|
|
1149
1153
|
}
|
|
1150
1154
|
|
|
1151
|
-
export { ALLOWED_CUSTOM_COMPONENTS, AnimationDefSchema, AssetMapSchema, AssetMappingSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BindingSchema, CORE_BINDINGS, ComputedEventContractSchema, ComputedEventListenerSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EffectSchema, EntityFieldSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpressionSchema, FieldFormatSchema, FieldSchema, FieldTypeSchema, GAME_TYPES, GameSubCategorySchema, GameTypeSchema, GuardSchema, InteractionModelSchema, McpServiceDefSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PatternTypeSchema, PayloadFieldSchema, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, ResolvedAssetSchema, RestAuthConfigSchema, RestServiceDefSchema, SERVICE_TYPES, SExprAtomSchema, SExprSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SocketEventsSchema, SocketServiceDefSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SuggestedGuardSchema, ThemeDefinitionSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TraitCategorySchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TransitionSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, callService, collectBindings, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createResolvedField, deriveCollection, despawn, doEffects, emit, findService, getAllOperators, getAllPatternTypes, getArgs, getBindingExamples, getDefaultAnimationsForRole, getInteractionModelForDomain, getOperator, getServiceNames, getTraitConfig, getTraitName, hasService, inferTsType, isBinding, isCircuitEvent, isEffect, isEntityReference, isImportedTraitRef, isInlineTrait, isMcpService, isOrbitalDefinition, isPageReference, isPageReferenceObject, isPageReferenceString, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isServiceReference, isSingletonEntity, isSocketService, isThemeReference, isValidBinding, navigate, normalizeTraitRef, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, persist, renderUI, safeParseOrbitalSchema, set, sexpr, spawn, validateAssetAnimations, validateBindingInContext, walkSExpr };
|
|
1155
|
+
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, AgentDomainCategorySchema, AnimationDefSchema, AssetMapSchema, AssetMappingSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BindingSchema, CORE_BINDINGS, ComputedEventContractSchema, ComputedEventListenerSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EffectSchema, EntityFieldSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpressionSchema, FieldFormatSchema, FieldSchema, FieldTypeSchema, GAME_TYPES, GameSubCategorySchema, GameTypeSchema, GuardSchema, InteractionModelSchema, McpServiceDefSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PatternTypeSchema, PayloadFieldSchema, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, ResolvedAssetSchema, RestAuthConfigSchema, RestServiceDefSchema, SERVICE_TYPES, SExprAtomSchema, SExprSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SocketEventsSchema, SocketServiceDefSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SuggestedGuardSchema, ThemeDefinitionSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TraitCategorySchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TransitionSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, callService, collectBindings, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createResolvedField, deriveCollection, despawn, doEffects, emit, findService, getAllOperators, getAllPatternTypes, getArgs, getBindingExamples, getDefaultAnimationsForRole, getInteractionModelForDomain, getOperator, getServiceNames, getTraitConfig, getTraitName, hasService, inferTsType, isBinding, isCircuitEvent, isEffect, isEntityReference, isImportedTraitRef, isInlineTrait, isMcpService, isOrbitalDefinition, isPageReference, isPageReferenceObject, isPageReferenceString, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isServiceReference, isSingletonEntity, isSocketService, isThemeReference, isValidBinding, navigate, normalizeTraitRef, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, persist, renderUI, safeParseOrbitalSchema, set, sexpr, spawn, validateAssetAnimations, validateBindingInContext, walkSExpr };
|
|
1152
1156
|
//# sourceMappingURL=index.js.map
|
|
1153
1157
|
//# sourceMappingURL=index.js.map
|