agentlang 0.9.4 → 0.9.6
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/out/api/http.js +8 -2
- package/out/api/http.js.map +1 -1
- package/out/extension/main.cjs +253 -253
- package/out/extension/main.cjs.map +2 -2
- package/out/language/generated/ast.d.ts +1997 -151
- package/out/language/generated/ast.d.ts.map +1 -1
- package/out/language/generated/ast.js +2113 -1263
- package/out/language/generated/ast.js.map +1 -1
- package/out/language/generated/grammar.d.ts +1 -1
- package/out/language/generated/grammar.d.ts.map +1 -1
- package/out/language/generated/grammar.js +649 -762
- package/out/language/generated/grammar.js.map +1 -1
- package/out/language/generated/module.d.ts +1 -1
- package/out/language/generated/module.js +1 -1
- package/out/language/main.cjs +6401 -4072
- package/out/language/main.cjs.map +4 -4
- package/out/language/parser.js +8 -8
- package/out/language/parser.js.map +1 -1
- package/out/runtime/agents/common.d.ts +7 -1
- package/out/runtime/agents/common.d.ts.map +1 -1
- package/out/runtime/agents/common.js +101 -0
- package/out/runtime/agents/common.js.map +1 -1
- package/out/runtime/agents/impl/anthropic.js +4 -4
- package/out/runtime/agents/impl/anthropic.js.map +1 -1
- package/out/runtime/agents/impl/openai.js +4 -4
- package/out/runtime/agents/impl/openai.js.map +1 -1
- package/out/runtime/auth/defs.d.ts +1 -1
- package/out/runtime/auth/defs.js +1 -1
- package/out/runtime/defs.d.ts +1 -1
- package/out/runtime/defs.js +1 -1
- package/out/runtime/exec-graph.d.ts.map +1 -1
- package/out/runtime/exec-graph.js +5 -0
- package/out/runtime/exec-graph.js.map +1 -1
- package/out/runtime/interpreter.d.ts +4 -0
- package/out/runtime/interpreter.d.ts.map +1 -1
- package/out/runtime/interpreter.js +20 -4
- package/out/runtime/interpreter.js.map +1 -1
- package/out/runtime/loader.d.ts.map +1 -1
- package/out/runtime/loader.js +43 -6
- package/out/runtime/loader.js.map +1 -1
- package/out/runtime/module.d.ts +18 -3
- package/out/runtime/module.d.ts.map +1 -1
- package/out/runtime/module.js +62 -4
- package/out/runtime/module.js.map +1 -1
- package/out/runtime/modules/ai.d.ts +18 -2
- package/out/runtime/modules/ai.d.ts.map +1 -1
- package/out/runtime/modules/ai.js +271 -21
- package/out/runtime/modules/ai.js.map +1 -1
- package/out/runtime/modules/auth.d.ts.map +1 -1
- package/out/runtime/modules/auth.js +11 -5
- package/out/runtime/modules/auth.js.map +1 -1
- package/out/runtime/resolvers/interface.d.ts +1 -1
- package/out/runtime/resolvers/interface.d.ts.map +1 -1
- package/out/runtime/resolvers/interface.js.map +1 -1
- package/out/runtime/resolvers/sqldb/database.d.ts +1 -0
- package/out/runtime/resolvers/sqldb/database.d.ts.map +1 -1
- package/out/runtime/resolvers/sqldb/database.js +19 -10
- package/out/runtime/resolvers/sqldb/database.js.map +1 -1
- package/out/runtime/resolvers/sqldb/impl.d.ts +1 -1
- package/out/runtime/resolvers/sqldb/impl.d.ts.map +1 -1
- package/out/runtime/resolvers/sqldb/impl.js +2 -2
- package/out/runtime/resolvers/sqldb/impl.js.map +1 -1
- package/out/runtime/state.d.ts +37 -367
- package/out/runtime/state.d.ts.map +1 -1
- package/out/runtime/state.js +3 -0
- package/out/runtime/state.js.map +1 -1
- package/out/setupClassic.d.ts +98 -0
- package/out/setupClassic.d.ts.map +1 -0
- package/out/setupClassic.js +38 -0
- package/out/setupClassic.js.map +1 -0
- package/out/setupCommon.d.ts +2 -0
- package/out/setupCommon.d.ts.map +1 -0
- package/out/setupCommon.js +33 -0
- package/out/setupCommon.js.map +1 -0
- package/out/setupExtended.d.ts +40 -0
- package/out/setupExtended.d.ts.map +1 -0
- package/out/setupExtended.js +67 -0
- package/out/setupExtended.js.map +1 -0
- package/out/syntaxes/agentlang.monarch.js +4 -4
- package/out/syntaxes/agentlang.monarch.js.map +1 -1
- package/out/utils/runtime.d.ts +7 -6
- package/out/utils/runtime.d.ts.map +1 -1
- package/package.json +185 -187
- package/src/api/http.ts +8 -2
- package/src/language/agentlang.langium +8 -2
- package/src/language/generated/ast.ts +2204 -1322
- package/src/language/generated/grammar.ts +649 -762
- package/src/language/generated/module.ts +1 -1
- package/src/language/parser.ts +8 -8
- package/src/runtime/agents/common.ts +107 -0
- package/src/runtime/agents/impl/anthropic.ts +4 -4
- package/src/runtime/agents/impl/openai.ts +4 -4
- package/src/runtime/auth/defs.ts +1 -1
- package/src/runtime/defs.ts +1 -1
- package/src/runtime/exec-graph.ts +4 -0
- package/src/runtime/interpreter.ts +23 -4
- package/src/runtime/loader.ts +43 -4
- package/src/runtime/module.ts +80 -3
- package/src/runtime/modules/ai.ts +391 -19
- package/src/runtime/modules/auth.ts +11 -5
- package/src/runtime/resolvers/interface.ts +1 -1
- package/src/runtime/resolvers/sqldb/database.ts +20 -11
- package/src/runtime/resolvers/sqldb/impl.ts +3 -3
- package/src/runtime/state.ts +4 -0
- package/src/syntaxes/agentlang.monarch.ts +4 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/******************************************************************************
|
|
2
|
-
* This file was generated by langium-cli
|
|
2
|
+
* This file was generated by langium-cli 4.1.0.
|
|
3
3
|
* DO NOT EDIT MANUALLY!
|
|
4
4
|
******************************************************************************/
|
|
5
5
|
import * as langium from 'langium';
|
|
@@ -13,66 +13,29 @@ export declare const AgentlangTerminals: {
|
|
|
13
13
|
SL_COMMENT: RegExp;
|
|
14
14
|
};
|
|
15
15
|
export type AgentlangTerminalNames = keyof typeof AgentlangTerminals;
|
|
16
|
-
export type AgentlangKeywordNames = "!=" | "(" | ")" | "*" | "+" | "," | "-" | "-->" | "." | "/" | ":" | ";" | "<" | "<=" | "<>" | "=" | "==" | ">" | ">=" | "?" | "@" | "@actions" | "@after" | "@as" | "@asc" | "@async" | "@before" | "@catch" | "@desc" | "@distinct" | "@enum" | "@expr" | "@from" | "@full_join" | "@groupBy" | "@inner_join" | "@into" | "@join" | "@left_join" | "@meta" | "@oneof" | "@orderBy" | "@public" | "@rbac" | "@ref" | "@right_join" | "@then" | "@upsert" | "@where" | "@with_unique" | "[" | "]" | "agent" | "agentlang/retry" | "allow" | "and" | "attempts" | "await" | "backoff" | "between" | "case" | "commitTransaction" | "contains" | "create" | "decision" | "delete" | "directive" | "else" | "entity" | "error" | "event" | "extends" | "false" | "flow" | "for" | "glossaryEntry" | "if" | "import" | "in" | "like" | "module" | "not" | "not_found" | "onSubscription" | "or" | "purge" | "query" | "read" | "record" | "relationship" | "resolver" | "return" | "roles" | "rollbackTransaction" | "scenario" | "startTransaction" | "subscribe" | "throw" | "true" | "update" | "upsert" | "where" | "workflow" | "{" | "}";
|
|
16
|
+
export type AgentlangKeywordNames = "!=" | "(" | ")" | "*" | "+" | "," | "-" | "-->" | "." | "/" | ":" | ";" | "<" | "<=" | "<>" | "=" | "==" | ">" | ">=" | "?" | "@" | "@actions" | "@after" | "@as" | "@asc" | "@async" | "@before" | "@catch" | "@desc" | "@distinct" | "@enum" | "@expr" | "@from" | "@full_join" | "@groupBy" | "@inner_join" | "@into" | "@join" | "@left_join" | "@meta" | "@oneof" | "@orderBy" | "@public" | "@rbac" | "@ref" | "@right_join" | "@then" | "@upsert" | "@where" | "@withRole" | "@with_unique" | "[" | "]" | "agent" | "agentlang/retry" | "allow" | "and" | "attempts" | "await" | "backoff" | "between" | "case" | "commitTransaction" | "contains" | "create" | "decision" | "delete" | "directive" | "else" | "entity" | "error" | "eval" | "event" | "extends" | "false" | "flow" | "for" | "glossaryEntry" | "if" | "import" | "in" | "like" | "module" | "not" | "not_found" | "onSubscription" | "or" | "purge" | "query" | "read" | "record" | "relationship" | "resolver" | "return" | "roles" | "rollbackTransaction" | "scenario" | "startTransaction" | "subscribe" | "throw" | "true" | "update" | "upsert" | "where" | "workflow" | "{" | "}";
|
|
17
17
|
export type AgentlangTokenNames = AgentlangTerminalNames | AgentlangKeywordNames;
|
|
18
|
-
export type AttributeValueExpression = Expr;
|
|
19
|
-
export declare const AttributeValueExpression = "AttributeValueExpression";
|
|
20
|
-
export declare function isAttributeValueExpression(item: unknown): item is AttributeValueExpression;
|
|
21
|
-
export type Boolean = 'false' | 'true';
|
|
22
|
-
export declare function isBoolean(item: unknown): item is Boolean;
|
|
23
|
-
export type Decimal = number;
|
|
24
|
-
export declare function isDecimal(item: unknown): item is Decimal;
|
|
25
|
-
export type Definition = AgentDefinition | DecisionDefinition | DirectiveDefinition | FlowDefinition | GlossaryEntryDefinition | PublicAgentDefinition | PublicWorkflowDefinition | RelationshipDefinition | ResolverDefinition | RetryDefinition | ScenarioDefinition | SchemaDefinition | StandaloneStatement | WorkflowDefinition;
|
|
26
|
-
export declare const Definition = "Definition";
|
|
27
|
-
export declare function isDefinition(item: unknown): item is Definition;
|
|
28
|
-
export type Expr = BinExpr | PrimExpr;
|
|
29
|
-
export declare const Expr = "Expr";
|
|
30
|
-
export declare function isExpr(item: unknown): item is Expr;
|
|
31
|
-
export type FlowStepSpec = Statement;
|
|
32
|
-
export declare const FlowStepSpec = "FlowStepSpec";
|
|
33
|
-
export declare function isFlowStepSpec(item: unknown): item is FlowStepSpec;
|
|
34
|
-
export type GenericName = STRING | string;
|
|
35
|
-
export declare function isGenericName(item: unknown): item is GenericName;
|
|
36
|
-
export type JoinType = '@full_join' | '@inner_join' | '@join' | '@left_join' | '@right_join';
|
|
37
|
-
export declare function isJoinType(item: unknown): item is JoinType;
|
|
38
|
-
export type PrimExpr = Group | Literal | NegExpr | NotExpr;
|
|
39
|
-
export declare const PrimExpr = "PrimExpr";
|
|
40
|
-
export declare function isPrimExpr(item: unknown): item is PrimExpr;
|
|
41
|
-
export type QualifiedName = Ref | string;
|
|
42
|
-
export declare function isQualifiedName(item: unknown): item is QualifiedName;
|
|
43
|
-
export type QueryId = string;
|
|
44
|
-
export declare function isQueryId(item: unknown): item is QueryId;
|
|
45
|
-
export type Ref = string;
|
|
46
|
-
export declare function isRef(item: unknown): item is Ref;
|
|
47
|
-
export type ResolverPathEntry = GenericName | QualifiedName;
|
|
48
|
-
export declare function isResolverPathEntry(item: unknown): item is ResolverPathEntry;
|
|
49
|
-
export type SchemaDefinition = EntityDefinition | EventDefinition | PublicEventDefinition | RecordDefinition;
|
|
50
|
-
export declare const SchemaDefinition = "SchemaDefinition";
|
|
51
|
-
export declare function isSchemaDefinition(item: unknown): item is SchemaDefinition;
|
|
52
|
-
export type SqlComparisonOpr = '!=' | '<' | '<=' | '<>' | '=' | '>' | '>=' | 'between' | 'in' | 'like';
|
|
53
|
-
export declare function isSqlComparisonOpr(item: unknown): item is SqlComparisonOpr;
|
|
54
|
-
export type STRING = string;
|
|
55
|
-
export declare function isSTRING(item: unknown): item is STRING;
|
|
56
|
-
export type TaggedId = string;
|
|
57
|
-
export declare function isTaggedId(item: unknown): item is TaggedId;
|
|
58
|
-
export type WorkflowHeaderPrefix = 'create' | 'delete' | 'update';
|
|
59
|
-
export declare function isWorkflowHeaderPrefix(item: unknown): item is WorkflowHeaderPrefix;
|
|
60
|
-
export type WorkflowHeaderTag = '@after' | '@before';
|
|
61
|
-
export declare function isWorkflowHeaderTag(item: unknown): item is WorkflowHeaderTag;
|
|
62
18
|
export interface ActionEntry extends langium.AstNode {
|
|
63
19
|
readonly $container: EntityActionsDefinitions;
|
|
64
20
|
readonly $type: 'ActionEntry';
|
|
65
21
|
event: string;
|
|
66
22
|
name: string;
|
|
67
23
|
}
|
|
68
|
-
export declare const ActionEntry
|
|
24
|
+
export declare const ActionEntry: {
|
|
25
|
+
readonly $type: "ActionEntry";
|
|
26
|
+
readonly event: "event";
|
|
27
|
+
readonly name: "name";
|
|
28
|
+
};
|
|
69
29
|
export declare function isActionEntry(item: unknown): item is ActionEntry;
|
|
70
30
|
export interface AfterTriggerDefinition extends langium.AstNode {
|
|
71
31
|
readonly $container: PrePostTriggerDefinition;
|
|
72
32
|
readonly $type: 'AfterTriggerDefinition';
|
|
73
33
|
triggers: TriggerDefinition;
|
|
74
34
|
}
|
|
75
|
-
export declare const AfterTriggerDefinition
|
|
35
|
+
export declare const AfterTriggerDefinition: {
|
|
36
|
+
readonly $type: "AfterTriggerDefinition";
|
|
37
|
+
readonly triggers: "triggers";
|
|
38
|
+
};
|
|
76
39
|
export declare function isAfterTriggerDefinition(item: unknown): item is AfterTriggerDefinition;
|
|
77
40
|
export interface AgentDefinition extends langium.AstNode {
|
|
78
41
|
readonly $container: ModuleDefinition | PublicAgentDefinition;
|
|
@@ -80,22 +43,45 @@ export interface AgentDefinition extends langium.AstNode {
|
|
|
80
43
|
body?: GenericDefBody;
|
|
81
44
|
name: GenericName;
|
|
82
45
|
}
|
|
83
|
-
export declare const AgentDefinition
|
|
46
|
+
export declare const AgentDefinition: {
|
|
47
|
+
readonly $type: "AgentDefinition";
|
|
48
|
+
readonly body: "body";
|
|
49
|
+
readonly name: "name";
|
|
50
|
+
};
|
|
84
51
|
export declare function isAgentDefinition(item: unknown): item is AgentDefinition;
|
|
52
|
+
export interface AgentEvaluatorDefinition extends langium.AstNode {
|
|
53
|
+
readonly $container: ModuleDefinition;
|
|
54
|
+
readonly $type: 'AgentEvaluatorDefinition';
|
|
55
|
+
attributes: Array<SetAttribute>;
|
|
56
|
+
name?: string;
|
|
57
|
+
}
|
|
58
|
+
export declare const AgentEvaluatorDefinition: {
|
|
59
|
+
readonly $type: "AgentEvaluatorDefinition";
|
|
60
|
+
readonly attributes: "attributes";
|
|
61
|
+
readonly name: "name";
|
|
62
|
+
};
|
|
63
|
+
export declare function isAgentEvaluatorDefinition(item: unknown): item is AgentEvaluatorDefinition;
|
|
85
64
|
export interface AgentXtraAttribute extends langium.AstNode {
|
|
86
65
|
readonly $container: AgentXtraSpec;
|
|
87
66
|
readonly $type: 'AgentXtraAttribute' | 'Ref';
|
|
88
67
|
name: string;
|
|
89
68
|
value: STRING;
|
|
90
69
|
}
|
|
91
|
-
export declare const AgentXtraAttribute
|
|
70
|
+
export declare const AgentXtraAttribute: {
|
|
71
|
+
readonly $type: "AgentXtraAttribute";
|
|
72
|
+
readonly name: "name";
|
|
73
|
+
readonly value: "value";
|
|
74
|
+
};
|
|
92
75
|
export declare function isAgentXtraAttribute(item: unknown): item is AgentXtraAttribute;
|
|
93
76
|
export interface AgentXtraSpec extends langium.AstNode {
|
|
94
77
|
readonly $container: GlossaryEntryDefinition;
|
|
95
78
|
readonly $type: 'AgentXtraSpec';
|
|
96
79
|
attributes: Array<AgentXtraAttribute>;
|
|
97
80
|
}
|
|
98
|
-
export declare const AgentXtraSpec
|
|
81
|
+
export declare const AgentXtraSpec: {
|
|
82
|
+
readonly $type: "AgentXtraSpec";
|
|
83
|
+
readonly attributes: "attributes";
|
|
84
|
+
};
|
|
99
85
|
export declare function isAgentXtraSpec(item: unknown): item is AgentXtraSpec;
|
|
100
86
|
export interface AggregateFunctionSpec extends langium.AstNode {
|
|
101
87
|
readonly $container: SelectIntoEntry | SetAttribute;
|
|
@@ -103,7 +89,11 @@ export interface AggregateFunctionSpec extends langium.AstNode {
|
|
|
103
89
|
args: Array<QualifiedName>;
|
|
104
90
|
name: string;
|
|
105
91
|
}
|
|
106
|
-
export declare const AggregateFunctionSpec
|
|
92
|
+
export declare const AggregateFunctionSpec: {
|
|
93
|
+
readonly $type: "AggregateFunctionSpec";
|
|
94
|
+
readonly args: "args";
|
|
95
|
+
readonly name: "name";
|
|
96
|
+
};
|
|
107
97
|
export declare function isAggregateFunctionSpec(item: unknown): item is AggregateFunctionSpec;
|
|
108
98
|
export interface AliasSpec extends langium.AstNode {
|
|
109
99
|
readonly $container: RuntimeHint;
|
|
@@ -111,21 +101,31 @@ export interface AliasSpec extends langium.AstNode {
|
|
|
111
101
|
alias?: string;
|
|
112
102
|
aliases: Array<string>;
|
|
113
103
|
}
|
|
114
|
-
export declare const AliasSpec
|
|
104
|
+
export declare const AliasSpec: {
|
|
105
|
+
readonly $type: "AliasSpec";
|
|
106
|
+
readonly alias: "alias";
|
|
107
|
+
readonly aliases: "aliases";
|
|
108
|
+
};
|
|
115
109
|
export declare function isAliasSpec(item: unknown): item is AliasSpec;
|
|
116
110
|
export interface ArrayLiteral extends langium.AstNode {
|
|
117
111
|
readonly $container: Literal;
|
|
118
112
|
readonly $type: 'ArrayLiteral';
|
|
119
113
|
vals: Array<Statement>;
|
|
120
114
|
}
|
|
121
|
-
export declare const ArrayLiteral
|
|
115
|
+
export declare const ArrayLiteral: {
|
|
116
|
+
readonly $type: "ArrayLiteral";
|
|
117
|
+
readonly vals: "vals";
|
|
118
|
+
};
|
|
122
119
|
export declare function isArrayLiteral(item: unknown): item is ArrayLiteral;
|
|
123
120
|
export interface AsyncFnCall extends langium.AstNode {
|
|
124
121
|
readonly $container: Literal;
|
|
125
122
|
readonly $type: 'AsyncFnCall';
|
|
126
123
|
fnCall: FnCall;
|
|
127
124
|
}
|
|
128
|
-
export declare const AsyncFnCall
|
|
125
|
+
export declare const AsyncFnCall: {
|
|
126
|
+
readonly $type: "AsyncFnCall";
|
|
127
|
+
readonly fnCall: "fnCall";
|
|
128
|
+
};
|
|
129
129
|
export declare function isAsyncFnCall(item: unknown): item is AsyncFnCall;
|
|
130
130
|
export interface AttributeDefinition extends langium.AstNode {
|
|
131
131
|
readonly $container: RecordSchemaDefinition;
|
|
@@ -139,21 +139,42 @@ export interface AttributeDefinition extends langium.AstNode {
|
|
|
139
139
|
refSpec?: RefSpec;
|
|
140
140
|
type?: QualifiedName;
|
|
141
141
|
}
|
|
142
|
-
export declare const AttributeDefinition
|
|
142
|
+
export declare const AttributeDefinition: {
|
|
143
|
+
readonly $type: "AttributeDefinition";
|
|
144
|
+
readonly arrayType: "arrayType";
|
|
145
|
+
readonly enumSpec: "enumSpec";
|
|
146
|
+
readonly expr: "expr";
|
|
147
|
+
readonly name: "name";
|
|
148
|
+
readonly oneOfSpec: "oneOfSpec";
|
|
149
|
+
readonly properties: "properties";
|
|
150
|
+
readonly refSpec: "refSpec";
|
|
151
|
+
readonly type: "type";
|
|
152
|
+
};
|
|
143
153
|
export declare function isAttributeDefinition(item: unknown): item is AttributeDefinition;
|
|
154
|
+
export type AttributeValueExpression = Expr;
|
|
155
|
+
export declare const AttributeValueExpression: {
|
|
156
|
+
readonly $type: "AttributeValueExpression";
|
|
157
|
+
};
|
|
158
|
+
export declare function isAttributeValueExpression(item: unknown): item is AttributeValueExpression;
|
|
144
159
|
export interface BackoffSpec extends langium.AstNode {
|
|
145
160
|
readonly $container: RetryDefinition;
|
|
146
161
|
readonly $type: 'BackoffSpec';
|
|
147
162
|
attributes: Array<SetAttribute>;
|
|
148
163
|
}
|
|
149
|
-
export declare const BackoffSpec
|
|
164
|
+
export declare const BackoffSpec: {
|
|
165
|
+
readonly $type: "BackoffSpec";
|
|
166
|
+
readonly attributes: "attributes";
|
|
167
|
+
};
|
|
150
168
|
export declare function isBackoffSpec(item: unknown): item is BackoffSpec;
|
|
151
169
|
export interface BeforeTriggerDefinition extends langium.AstNode {
|
|
152
170
|
readonly $container: PrePostTriggerDefinition;
|
|
153
171
|
readonly $type: 'BeforeTriggerDefinition';
|
|
154
172
|
triggers: TriggerDefinition;
|
|
155
173
|
}
|
|
156
|
-
export declare const BeforeTriggerDefinition
|
|
174
|
+
export declare const BeforeTriggerDefinition: {
|
|
175
|
+
readonly $type: "BeforeTriggerDefinition";
|
|
176
|
+
readonly triggers: "triggers";
|
|
177
|
+
};
|
|
157
178
|
export declare function isBeforeTriggerDefinition(item: unknown): item is BeforeTriggerDefinition;
|
|
158
179
|
export interface BinExpr extends langium.AstNode {
|
|
159
180
|
readonly $container: AttributeDefinition | BinExpr | CaseEntry | FnCall | Group | If | MapEntry | NegExpr | NotExpr | Pattern | SetAttribute | ThrowError | WhereSpecClause;
|
|
@@ -162,29 +183,46 @@ export interface BinExpr extends langium.AstNode {
|
|
|
162
183
|
e2: Expr | PrimExpr;
|
|
163
184
|
op: '!=' | '*' | '+' | '-' | '/' | '<' | '<=' | '<>' | '==' | '>' | '>=' | 'and' | 'in' | 'like' | 'or';
|
|
164
185
|
}
|
|
165
|
-
export declare const BinExpr
|
|
186
|
+
export declare const BinExpr: {
|
|
187
|
+
readonly $type: "BinExpr";
|
|
188
|
+
readonly e1: "e1";
|
|
189
|
+
readonly e2: "e2";
|
|
190
|
+
readonly op: "op";
|
|
191
|
+
};
|
|
166
192
|
export declare function isBinExpr(item: unknown): item is BinExpr;
|
|
193
|
+
export type Boolean = 'false' | 'true';
|
|
194
|
+
export declare function isBoolean(item: unknown): item is Boolean;
|
|
167
195
|
export interface CaseEntry extends langium.AstNode {
|
|
168
196
|
readonly $container: DecisionDefBody;
|
|
169
197
|
readonly $type: 'CaseEntry';
|
|
170
198
|
cond: Expr;
|
|
171
199
|
statements: Array<Statement>;
|
|
172
200
|
}
|
|
173
|
-
export declare const CaseEntry
|
|
201
|
+
export declare const CaseEntry: {
|
|
202
|
+
readonly $type: "CaseEntry";
|
|
203
|
+
readonly cond: "cond";
|
|
204
|
+
readonly statements: "statements";
|
|
205
|
+
};
|
|
174
206
|
export declare function isCaseEntry(item: unknown): item is CaseEntry;
|
|
175
207
|
export interface CatchSpec extends langium.AstNode {
|
|
176
208
|
readonly $container: RuntimeHint;
|
|
177
209
|
readonly $type: 'CatchSpec';
|
|
178
210
|
handlers: Array<Handler>;
|
|
179
211
|
}
|
|
180
|
-
export declare const CatchSpec
|
|
212
|
+
export declare const CatchSpec: {
|
|
213
|
+
readonly $type: "CatchSpec";
|
|
214
|
+
readonly handlers: "handlers";
|
|
215
|
+
};
|
|
181
216
|
export declare function isCatchSpec(item: unknown): item is CatchSpec;
|
|
182
217
|
export interface CompositeUniqueDefinition extends langium.AstNode {
|
|
183
218
|
readonly $container: RecordExtraDefinition;
|
|
184
219
|
readonly $type: 'CompositeUniqueDefinition';
|
|
185
220
|
attrs: Array<string>;
|
|
186
221
|
}
|
|
187
|
-
export declare const CompositeUniqueDefinition
|
|
222
|
+
export declare const CompositeUniqueDefinition: {
|
|
223
|
+
readonly $type: "CompositeUniqueDefinition";
|
|
224
|
+
readonly attrs: "attrs";
|
|
225
|
+
};
|
|
188
226
|
export declare function isCompositeUniqueDefinition(item: unknown): item is CompositeUniqueDefinition;
|
|
189
227
|
export interface ConditionalFlowStep extends langium.AstNode {
|
|
190
228
|
readonly $container: FlowEntry;
|
|
@@ -192,7 +230,11 @@ export interface ConditionalFlowStep extends langium.AstNode {
|
|
|
192
230
|
expr: STRING;
|
|
193
231
|
next: FlowStepSpec;
|
|
194
232
|
}
|
|
195
|
-
export declare const ConditionalFlowStep
|
|
233
|
+
export declare const ConditionalFlowStep: {
|
|
234
|
+
readonly $type: "ConditionalFlowStep";
|
|
235
|
+
readonly expr: "expr";
|
|
236
|
+
readonly next: "next";
|
|
237
|
+
};
|
|
196
238
|
export declare function isConditionalFlowStep(item: unknown): item is ConditionalFlowStep;
|
|
197
239
|
export interface CrudMap extends langium.AstNode {
|
|
198
240
|
readonly $container: Pattern;
|
|
@@ -209,7 +251,20 @@ export interface CrudMap extends langium.AstNode {
|
|
|
209
251
|
upsert: Array<'@upsert'>;
|
|
210
252
|
where?: WhereSpec;
|
|
211
253
|
}
|
|
212
|
-
export declare const CrudMap
|
|
254
|
+
export declare const CrudMap: {
|
|
255
|
+
readonly $type: "CrudMap";
|
|
256
|
+
readonly body: "body";
|
|
257
|
+
readonly distinct: "distinct";
|
|
258
|
+
readonly groupByClause: "groupByClause";
|
|
259
|
+
readonly into: "into";
|
|
260
|
+
readonly joins: "joins";
|
|
261
|
+
readonly name: "name";
|
|
262
|
+
readonly orderByClause: "orderByClause";
|
|
263
|
+
readonly relationships: "relationships";
|
|
264
|
+
readonly source: "source";
|
|
265
|
+
readonly upsert: "upsert";
|
|
266
|
+
readonly where: "where";
|
|
267
|
+
};
|
|
213
268
|
export declare function isCrudMap(item: unknown): item is CrudMap;
|
|
214
269
|
export interface CrudMapBody extends langium.AstNode {
|
|
215
270
|
readonly $container: CrudMap;
|
|
@@ -217,14 +272,23 @@ export interface CrudMapBody extends langium.AstNode {
|
|
|
217
272
|
attributes: Array<SetAttribute>;
|
|
218
273
|
properties: Array<PropertyDefinition>;
|
|
219
274
|
}
|
|
220
|
-
export declare const CrudMapBody
|
|
275
|
+
export declare const CrudMapBody: {
|
|
276
|
+
readonly $type: "CrudMapBody";
|
|
277
|
+
readonly attributes: "attributes";
|
|
278
|
+
readonly properties: "properties";
|
|
279
|
+
};
|
|
221
280
|
export declare function isCrudMapBody(item: unknown): item is CrudMapBody;
|
|
281
|
+
export type Decimal = number;
|
|
282
|
+
export declare function isDecimal(item: unknown): item is Decimal;
|
|
222
283
|
export interface DecisionDefBody extends langium.AstNode {
|
|
223
284
|
readonly $container: DecisionDefinition;
|
|
224
285
|
readonly $type: 'DecisionDefBody';
|
|
225
286
|
cases: Array<CaseEntry>;
|
|
226
287
|
}
|
|
227
|
-
export declare const DecisionDefBody
|
|
288
|
+
export declare const DecisionDefBody: {
|
|
289
|
+
readonly $type: "DecisionDefBody";
|
|
290
|
+
readonly cases: "cases";
|
|
291
|
+
};
|
|
228
292
|
export declare function isDecisionDefBody(item: unknown): item is DecisionDefBody;
|
|
229
293
|
export interface DecisionDefinition extends langium.AstNode {
|
|
230
294
|
readonly $container: ModuleDefinition;
|
|
@@ -232,14 +296,26 @@ export interface DecisionDefinition extends langium.AstNode {
|
|
|
232
296
|
body?: DecisionDefBody;
|
|
233
297
|
name: GenericName;
|
|
234
298
|
}
|
|
235
|
-
export declare const DecisionDefinition
|
|
299
|
+
export declare const DecisionDefinition: {
|
|
300
|
+
readonly $type: "DecisionDefinition";
|
|
301
|
+
readonly body: "body";
|
|
302
|
+
readonly name: "name";
|
|
303
|
+
};
|
|
236
304
|
export declare function isDecisionDefinition(item: unknown): item is DecisionDefinition;
|
|
305
|
+
export type Definition = AgentDefinition | AgentEvaluatorDefinition | DecisionDefinition | DirectiveDefinition | FlowDefinition | GlossaryEntryDefinition | PublicAgentDefinition | PublicWorkflowDefinition | RelationshipDefinition | ResolverDefinition | RetryDefinition | ScenarioDefinition | SchemaDefinition | StandaloneStatement | WorkflowDefinition;
|
|
306
|
+
export declare const Definition: {
|
|
307
|
+
readonly $type: "Definition";
|
|
308
|
+
};
|
|
309
|
+
export declare function isDefinition(item: unknown): item is Definition;
|
|
237
310
|
export interface Delete extends langium.AstNode {
|
|
238
311
|
readonly $container: Pattern;
|
|
239
312
|
readonly $type: 'Delete';
|
|
240
313
|
pattern: Pattern;
|
|
241
314
|
}
|
|
242
|
-
export declare const Delete
|
|
315
|
+
export declare const Delete: {
|
|
316
|
+
readonly $type: "Delete";
|
|
317
|
+
readonly pattern: "pattern";
|
|
318
|
+
};
|
|
243
319
|
export declare function isDelete(item: unknown): item is Delete;
|
|
244
320
|
export interface DirectiveDefinition extends langium.AstNode {
|
|
245
321
|
readonly $container: ModuleDefinition;
|
|
@@ -248,21 +324,32 @@ export interface DirectiveDefinition extends langium.AstNode {
|
|
|
248
324
|
dir?: If;
|
|
249
325
|
name: Ref;
|
|
250
326
|
}
|
|
251
|
-
export declare const DirectiveDefinition
|
|
327
|
+
export declare const DirectiveDefinition: {
|
|
328
|
+
readonly $type: "DirectiveDefinition";
|
|
329
|
+
readonly body: "body";
|
|
330
|
+
readonly dir: "dir";
|
|
331
|
+
readonly name: "name";
|
|
332
|
+
};
|
|
252
333
|
export declare function isDirectiveDefinition(item: unknown): item is DirectiveDefinition;
|
|
253
334
|
export interface Else extends langium.AstNode {
|
|
254
335
|
readonly $container: If;
|
|
255
336
|
readonly $type: 'Else';
|
|
256
337
|
statements: Array<Statement>;
|
|
257
338
|
}
|
|
258
|
-
export declare const Else
|
|
339
|
+
export declare const Else: {
|
|
340
|
+
readonly $type: "Else";
|
|
341
|
+
readonly statements: "statements";
|
|
342
|
+
};
|
|
259
343
|
export declare function isElse(item: unknown): item is Else;
|
|
260
344
|
export interface EntityActionsDefinitions extends langium.AstNode {
|
|
261
345
|
readonly $container: RecordExtraDefinition;
|
|
262
346
|
readonly $type: 'EntityActionsDefinitions';
|
|
263
347
|
entries: Array<ActionEntry>;
|
|
264
348
|
}
|
|
265
|
-
export declare const EntityActionsDefinitions
|
|
349
|
+
export declare const EntityActionsDefinitions: {
|
|
350
|
+
readonly $type: "EntityActionsDefinitions";
|
|
351
|
+
readonly entries: "entries";
|
|
352
|
+
};
|
|
266
353
|
export declare function isEntityActionsDefinitions(item: unknown): item is EntityActionsDefinitions;
|
|
267
354
|
export interface EntityDefinition extends langium.AstNode {
|
|
268
355
|
readonly $container: ModuleDefinition;
|
|
@@ -271,7 +358,12 @@ export interface EntityDefinition extends langium.AstNode {
|
|
|
271
358
|
name: QualifiedName;
|
|
272
359
|
schema: RecordSchemaDefinition;
|
|
273
360
|
}
|
|
274
|
-
export declare const EntityDefinition
|
|
361
|
+
export declare const EntityDefinition: {
|
|
362
|
+
readonly $type: "EntityDefinition";
|
|
363
|
+
readonly extends: "extends";
|
|
364
|
+
readonly name: "name";
|
|
365
|
+
readonly schema: "schema";
|
|
366
|
+
};
|
|
275
367
|
export declare function isEntityDefinition(item: unknown): item is EntityDefinition;
|
|
276
368
|
export interface EnumSpec extends langium.AstNode {
|
|
277
369
|
readonly $container: AttributeDefinition;
|
|
@@ -279,7 +371,11 @@ export interface EnumSpec extends langium.AstNode {
|
|
|
279
371
|
type?: QualifiedName;
|
|
280
372
|
values: Array<STRING>;
|
|
281
373
|
}
|
|
282
|
-
export declare const EnumSpec
|
|
374
|
+
export declare const EnumSpec: {
|
|
375
|
+
readonly $type: "EnumSpec";
|
|
376
|
+
readonly type: "type";
|
|
377
|
+
readonly values: "values";
|
|
378
|
+
};
|
|
283
379
|
export declare function isEnumSpec(item: unknown): item is EnumSpec;
|
|
284
380
|
export interface EventDefinition extends langium.AstNode {
|
|
285
381
|
readonly $container: ModuleDefinition | PublicEventDefinition;
|
|
@@ -288,21 +384,37 @@ export interface EventDefinition extends langium.AstNode {
|
|
|
288
384
|
name: QualifiedName;
|
|
289
385
|
schema: RecordSchemaDefinition;
|
|
290
386
|
}
|
|
291
|
-
export declare const EventDefinition
|
|
387
|
+
export declare const EventDefinition: {
|
|
388
|
+
readonly $type: "EventDefinition";
|
|
389
|
+
readonly extends: "extends";
|
|
390
|
+
readonly name: "name";
|
|
391
|
+
readonly schema: "schema";
|
|
392
|
+
};
|
|
292
393
|
export declare function isEventDefinition(item: unknown): item is EventDefinition;
|
|
394
|
+
export type Expr = BinExpr | PrimExpr;
|
|
395
|
+
export declare const Expr: {
|
|
396
|
+
readonly $type: "Expr";
|
|
397
|
+
};
|
|
398
|
+
export declare function isExpr(item: unknown): item is Expr;
|
|
293
399
|
export interface ExtendsClause extends langium.AstNode {
|
|
294
400
|
readonly $container: EntityDefinition | EventDefinition | RecordDefinition;
|
|
295
401
|
readonly $type: 'ExtendsClause';
|
|
296
402
|
parentName: QualifiedName;
|
|
297
403
|
}
|
|
298
|
-
export declare const ExtendsClause
|
|
404
|
+
export declare const ExtendsClause: {
|
|
405
|
+
readonly $type: "ExtendsClause";
|
|
406
|
+
readonly parentName: "parentName";
|
|
407
|
+
};
|
|
299
408
|
export declare function isExtendsClause(item: unknown): item is ExtendsClause;
|
|
300
409
|
export interface FlowDefBody extends langium.AstNode {
|
|
301
410
|
readonly $container: FlowDefinition;
|
|
302
411
|
readonly $type: 'FlowDefBody';
|
|
303
412
|
entries: Array<FlowEntry>;
|
|
304
413
|
}
|
|
305
|
-
export declare const FlowDefBody
|
|
414
|
+
export declare const FlowDefBody: {
|
|
415
|
+
readonly $type: "FlowDefBody";
|
|
416
|
+
readonly entries: "entries";
|
|
417
|
+
};
|
|
306
418
|
export declare function isFlowDefBody(item: unknown): item is FlowDefBody;
|
|
307
419
|
export interface FlowDefinition extends langium.AstNode {
|
|
308
420
|
readonly $container: ModuleDefinition;
|
|
@@ -310,7 +422,11 @@ export interface FlowDefinition extends langium.AstNode {
|
|
|
310
422
|
body?: FlowDefBody;
|
|
311
423
|
name: GenericName;
|
|
312
424
|
}
|
|
313
|
-
export declare const FlowDefinition
|
|
425
|
+
export declare const FlowDefinition: {
|
|
426
|
+
readonly $type: "FlowDefinition";
|
|
427
|
+
readonly body: "body";
|
|
428
|
+
readonly name: "name";
|
|
429
|
+
};
|
|
314
430
|
export declare function isFlowDefinition(item: unknown): item is FlowDefinition;
|
|
315
431
|
export interface FlowEntry extends langium.AstNode {
|
|
316
432
|
readonly $container: FlowDefBody;
|
|
@@ -319,15 +435,29 @@ export interface FlowEntry extends langium.AstNode {
|
|
|
319
435
|
next?: FlowStepSpec;
|
|
320
436
|
root: QueryId;
|
|
321
437
|
}
|
|
322
|
-
export declare const FlowEntry
|
|
438
|
+
export declare const FlowEntry: {
|
|
439
|
+
readonly $type: "FlowEntry";
|
|
440
|
+
readonly cond: "cond";
|
|
441
|
+
readonly next: "next";
|
|
442
|
+
readonly root: "root";
|
|
443
|
+
};
|
|
323
444
|
export declare function isFlowEntry(item: unknown): item is FlowEntry;
|
|
445
|
+
export type FlowStepSpec = Statement;
|
|
446
|
+
export declare const FlowStepSpec: {
|
|
447
|
+
readonly $type: "FlowStepSpec";
|
|
448
|
+
};
|
|
449
|
+
export declare function isFlowStepSpec(item: unknown): item is FlowStepSpec;
|
|
324
450
|
export interface FnCall extends langium.AstNode {
|
|
325
451
|
readonly $container: AsyncFnCall | Literal;
|
|
326
452
|
readonly $type: 'FnCall';
|
|
327
453
|
args: Array<Expr>;
|
|
328
454
|
name: Ref | string;
|
|
329
455
|
}
|
|
330
|
-
export declare const FnCall
|
|
456
|
+
export declare const FnCall: {
|
|
457
|
+
readonly $type: "FnCall";
|
|
458
|
+
readonly args: "args";
|
|
459
|
+
readonly name: "name";
|
|
460
|
+
};
|
|
331
461
|
export declare function isFnCall(item: unknown): item is FnCall;
|
|
332
462
|
export interface ForEach extends langium.AstNode {
|
|
333
463
|
readonly $container: Pattern;
|
|
@@ -336,7 +466,12 @@ export interface ForEach extends langium.AstNode {
|
|
|
336
466
|
statements: Array<Statement>;
|
|
337
467
|
var: string;
|
|
338
468
|
}
|
|
339
|
-
export declare const ForEach
|
|
469
|
+
export declare const ForEach: {
|
|
470
|
+
readonly $type: "ForEach";
|
|
471
|
+
readonly src: "src";
|
|
472
|
+
readonly statements: "statements";
|
|
473
|
+
readonly var: "var";
|
|
474
|
+
};
|
|
340
475
|
export declare function isForEach(item: unknown): item is ForEach;
|
|
341
476
|
export interface FullTextSearch extends langium.AstNode {
|
|
342
477
|
readonly $container: Pattern;
|
|
@@ -345,22 +480,36 @@ export interface FullTextSearch extends langium.AstNode {
|
|
|
345
480
|
options?: MapLiteral;
|
|
346
481
|
query: Literal;
|
|
347
482
|
}
|
|
348
|
-
export declare const FullTextSearch
|
|
483
|
+
export declare const FullTextSearch: {
|
|
484
|
+
readonly $type: "FullTextSearch";
|
|
485
|
+
readonly name: "name";
|
|
486
|
+
readonly options: "options";
|
|
487
|
+
readonly query: "query";
|
|
488
|
+
};
|
|
349
489
|
export declare function isFullTextSearch(item: unknown): item is FullTextSearch;
|
|
350
490
|
export interface GenericDefBody extends langium.AstNode {
|
|
351
491
|
readonly $container: AgentDefinition;
|
|
352
492
|
readonly $type: 'GenericDefBody';
|
|
353
493
|
attributes: Array<GenericPropertyDef>;
|
|
354
494
|
}
|
|
355
|
-
export declare const GenericDefBody
|
|
495
|
+
export declare const GenericDefBody: {
|
|
496
|
+
readonly $type: "GenericDefBody";
|
|
497
|
+
readonly attributes: "attributes";
|
|
498
|
+
};
|
|
356
499
|
export declare function isGenericDefBody(item: unknown): item is GenericDefBody;
|
|
500
|
+
export type GenericName = STRING | string;
|
|
501
|
+
export declare function isGenericName(item: unknown): item is GenericName;
|
|
357
502
|
export interface GenericPropertyDef extends langium.AstNode {
|
|
358
503
|
readonly $container: GenericDefBody;
|
|
359
504
|
readonly $type: 'GenericPropertyDef';
|
|
360
505
|
name: string;
|
|
361
506
|
value: Literal;
|
|
362
507
|
}
|
|
363
|
-
export declare const GenericPropertyDef
|
|
508
|
+
export declare const GenericPropertyDef: {
|
|
509
|
+
readonly $type: "GenericPropertyDef";
|
|
510
|
+
readonly name: "name";
|
|
511
|
+
readonly value: "value";
|
|
512
|
+
};
|
|
364
513
|
export declare function isGenericPropertyDef(item: unknown): item is GenericPropertyDef;
|
|
365
514
|
export interface GlossaryEntryDefinition extends langium.AstNode {
|
|
366
515
|
readonly $container: ModuleDefinition;
|
|
@@ -369,21 +518,32 @@ export interface GlossaryEntryDefinition extends langium.AstNode {
|
|
|
369
518
|
glos?: AgentXtraSpec;
|
|
370
519
|
name: Ref;
|
|
371
520
|
}
|
|
372
|
-
export declare const GlossaryEntryDefinition
|
|
521
|
+
export declare const GlossaryEntryDefinition: {
|
|
522
|
+
readonly $type: "GlossaryEntryDefinition";
|
|
523
|
+
readonly body: "body";
|
|
524
|
+
readonly glos: "glos";
|
|
525
|
+
readonly name: "name";
|
|
526
|
+
};
|
|
373
527
|
export declare function isGlossaryEntryDefinition(item: unknown): item is GlossaryEntryDefinition;
|
|
374
528
|
export interface Group extends langium.AstNode {
|
|
375
529
|
readonly $container: AttributeDefinition | BinExpr | CaseEntry | FnCall | Group | If | MapEntry | NegExpr | NotExpr | Pattern | SetAttribute | ThrowError | WhereSpecClause;
|
|
376
530
|
readonly $type: 'Group';
|
|
377
531
|
ge: Expr;
|
|
378
532
|
}
|
|
379
|
-
export declare const Group
|
|
533
|
+
export declare const Group: {
|
|
534
|
+
readonly $type: "Group";
|
|
535
|
+
readonly ge: "ge";
|
|
536
|
+
};
|
|
380
537
|
export declare function isGroup(item: unknown): item is Group;
|
|
381
538
|
export interface GroupByClause extends langium.AstNode {
|
|
382
539
|
readonly $container: CrudMap;
|
|
383
540
|
readonly $type: 'GroupByClause';
|
|
384
541
|
colNames: Array<QualifiedName>;
|
|
385
542
|
}
|
|
386
|
-
export declare const GroupByClause
|
|
543
|
+
export declare const GroupByClause: {
|
|
544
|
+
readonly $type: "GroupByClause";
|
|
545
|
+
readonly colNames: "colNames";
|
|
546
|
+
};
|
|
387
547
|
export declare function isGroupByClause(item: unknown): item is GroupByClause;
|
|
388
548
|
export interface Handler extends langium.AstNode {
|
|
389
549
|
readonly $container: CatchSpec;
|
|
@@ -391,7 +551,11 @@ export interface Handler extends langium.AstNode {
|
|
|
391
551
|
except: 'error' | 'not_found';
|
|
392
552
|
stmt: Statement;
|
|
393
553
|
}
|
|
394
|
-
export declare const Handler
|
|
554
|
+
export declare const Handler: {
|
|
555
|
+
readonly $type: "Handler";
|
|
556
|
+
readonly except: "except";
|
|
557
|
+
readonly stmt: "stmt";
|
|
558
|
+
};
|
|
395
559
|
export declare function isHandler(item: unknown): item is Handler;
|
|
396
560
|
export interface If extends langium.AstNode {
|
|
397
561
|
readonly $container: DirectiveDefinition | IfWithAlias | Pattern | ScenarioDefinition;
|
|
@@ -400,14 +564,22 @@ export interface If extends langium.AstNode {
|
|
|
400
564
|
else?: Else;
|
|
401
565
|
statements: Array<Statement>;
|
|
402
566
|
}
|
|
403
|
-
export declare const If
|
|
567
|
+
export declare const If: {
|
|
568
|
+
readonly $type: "If";
|
|
569
|
+
readonly cond: "cond";
|
|
570
|
+
readonly else: "else";
|
|
571
|
+
readonly statements: "statements";
|
|
572
|
+
};
|
|
404
573
|
export declare function isIf(item: unknown): item is If;
|
|
405
574
|
export interface IfWithAlias extends langium.AstNode {
|
|
406
575
|
readonly $container: Pattern;
|
|
407
576
|
readonly $type: 'IfWithAlias';
|
|
408
577
|
if: If;
|
|
409
578
|
}
|
|
410
|
-
export declare const IfWithAlias
|
|
579
|
+
export declare const IfWithAlias: {
|
|
580
|
+
readonly $type: "IfWithAlias";
|
|
581
|
+
readonly if: "if";
|
|
582
|
+
};
|
|
411
583
|
export declare function isIfWithAlias(item: unknown): item is IfWithAlias;
|
|
412
584
|
export interface Import extends langium.AstNode {
|
|
413
585
|
readonly $container: ModuleDefinition;
|
|
@@ -415,7 +587,11 @@ export interface Import extends langium.AstNode {
|
|
|
415
587
|
name: string;
|
|
416
588
|
path: STRING;
|
|
417
589
|
}
|
|
418
|
-
export declare const Import
|
|
590
|
+
export declare const Import: {
|
|
591
|
+
readonly $type: "Import";
|
|
592
|
+
readonly name: "name";
|
|
593
|
+
readonly path: "path";
|
|
594
|
+
};
|
|
419
595
|
export declare function isImport(item: unknown): item is Import;
|
|
420
596
|
export interface JoinSpec extends langium.AstNode {
|
|
421
597
|
readonly $container: CrudMap;
|
|
@@ -426,22 +602,38 @@ export interface JoinSpec extends langium.AstNode {
|
|
|
426
602
|
rhs: Ref;
|
|
427
603
|
type: JoinType;
|
|
428
604
|
}
|
|
429
|
-
export declare const JoinSpec
|
|
605
|
+
export declare const JoinSpec: {
|
|
606
|
+
readonly $type: "JoinSpec";
|
|
607
|
+
readonly lhs: "lhs";
|
|
608
|
+
readonly name: "name";
|
|
609
|
+
readonly op: "op";
|
|
610
|
+
readonly rhs: "rhs";
|
|
611
|
+
readonly type: "type";
|
|
612
|
+
};
|
|
430
613
|
export declare function isJoinSpec(item: unknown): item is JoinSpec;
|
|
614
|
+
export type JoinType = '@full_join' | '@inner_join' | '@join' | '@left_join' | '@right_join';
|
|
615
|
+
export declare function isJoinType(item: unknown): item is JoinType;
|
|
431
616
|
export interface KvPair extends langium.AstNode {
|
|
432
617
|
readonly $container: KvPairs;
|
|
433
618
|
readonly $type: 'KvPair';
|
|
434
619
|
key?: string;
|
|
435
620
|
value: Literal;
|
|
436
621
|
}
|
|
437
|
-
export declare const KvPair
|
|
622
|
+
export declare const KvPair: {
|
|
623
|
+
readonly $type: "KvPair";
|
|
624
|
+
readonly key: "key";
|
|
625
|
+
readonly value: "value";
|
|
626
|
+
};
|
|
438
627
|
export declare function isKvPair(item: unknown): item is KvPair;
|
|
439
628
|
export interface KvPairs extends langium.AstNode {
|
|
440
629
|
readonly $container: PropertyDefinition;
|
|
441
630
|
readonly $type: 'KvPairs';
|
|
442
631
|
pairs: Array<KvPair>;
|
|
443
632
|
}
|
|
444
|
-
export declare const KvPairs
|
|
633
|
+
export declare const KvPairs: {
|
|
634
|
+
readonly $type: "KvPairs";
|
|
635
|
+
readonly pairs: "pairs";
|
|
636
|
+
};
|
|
445
637
|
export declare function isKvPairs(item: unknown): item is KvPairs;
|
|
446
638
|
export interface Literal extends langium.AstNode {
|
|
447
639
|
readonly $container: AttributeDefinition | BinExpr | CaseEntry | CrudMap | FnCall | FullTextSearch | GenericPropertyDef | Group | If | KvPair | MapEntry | NegExpr | NotExpr | Pattern | SetAttribute | ThrowError | WhereSpecClause;
|
|
@@ -456,7 +648,18 @@ export interface Literal extends langium.AstNode {
|
|
|
456
648
|
ref?: Ref;
|
|
457
649
|
str?: STRING;
|
|
458
650
|
}
|
|
459
|
-
export declare const Literal
|
|
651
|
+
export declare const Literal: {
|
|
652
|
+
readonly $type: "Literal";
|
|
653
|
+
readonly array: "array";
|
|
654
|
+
readonly asyncFnCall: "asyncFnCall";
|
|
655
|
+
readonly bool: "bool";
|
|
656
|
+
readonly fnCall: "fnCall";
|
|
657
|
+
readonly id: "id";
|
|
658
|
+
readonly map: "map";
|
|
659
|
+
readonly num: "num";
|
|
660
|
+
readonly ref: "ref";
|
|
661
|
+
readonly str: "str";
|
|
662
|
+
};
|
|
460
663
|
export declare function isLiteral(item: unknown): item is Literal;
|
|
461
664
|
export interface MapEntry extends langium.AstNode {
|
|
462
665
|
readonly $container: MapLiteral;
|
|
@@ -464,7 +667,11 @@ export interface MapEntry extends langium.AstNode {
|
|
|
464
667
|
key: MapKey;
|
|
465
668
|
value: Expr;
|
|
466
669
|
}
|
|
467
|
-
export declare const MapEntry
|
|
670
|
+
export declare const MapEntry: {
|
|
671
|
+
readonly $type: "MapEntry";
|
|
672
|
+
readonly key: "key";
|
|
673
|
+
readonly value: "value";
|
|
674
|
+
};
|
|
468
675
|
export declare function isMapEntry(item: unknown): item is MapEntry;
|
|
469
676
|
export interface MapKey extends langium.AstNode {
|
|
470
677
|
readonly $container: MapEntry;
|
|
@@ -473,21 +680,32 @@ export interface MapKey extends langium.AstNode {
|
|
|
473
680
|
num?: Decimal;
|
|
474
681
|
str?: STRING;
|
|
475
682
|
}
|
|
476
|
-
export declare const MapKey
|
|
683
|
+
export declare const MapKey: {
|
|
684
|
+
readonly $type: "MapKey";
|
|
685
|
+
readonly bool: "bool";
|
|
686
|
+
readonly num: "num";
|
|
687
|
+
readonly str: "str";
|
|
688
|
+
};
|
|
477
689
|
export declare function isMapKey(item: unknown): item is MapKey;
|
|
478
690
|
export interface MapLiteral extends langium.AstNode {
|
|
479
691
|
readonly $container: DirectiveDefinition | FullTextSearch | GlossaryEntryDefinition | Literal | MetaDefinition | ScenarioDefinition;
|
|
480
692
|
readonly $type: 'MapLiteral';
|
|
481
693
|
entries: Array<MapEntry>;
|
|
482
694
|
}
|
|
483
|
-
export declare const MapLiteral
|
|
695
|
+
export declare const MapLiteral: {
|
|
696
|
+
readonly $type: "MapLiteral";
|
|
697
|
+
readonly entries: "entries";
|
|
698
|
+
};
|
|
484
699
|
export declare function isMapLiteral(item: unknown): item is MapLiteral;
|
|
485
700
|
export interface MetaDefinition extends langium.AstNode {
|
|
486
701
|
readonly $container: RecordExtraDefinition;
|
|
487
702
|
readonly $type: 'MetaDefinition';
|
|
488
703
|
spec: MapLiteral;
|
|
489
704
|
}
|
|
490
|
-
export declare const MetaDefinition
|
|
705
|
+
export declare const MetaDefinition: {
|
|
706
|
+
readonly $type: "MetaDefinition";
|
|
707
|
+
readonly spec: "spec";
|
|
708
|
+
};
|
|
491
709
|
export declare function isMetaDefinition(item: unknown): item is MetaDefinition;
|
|
492
710
|
export interface ModuleDefinition extends langium.AstNode {
|
|
493
711
|
readonly $type: 'ModuleDefinition';
|
|
@@ -495,14 +713,22 @@ export interface ModuleDefinition extends langium.AstNode {
|
|
|
495
713
|
imports: Array<Import>;
|
|
496
714
|
name: QualifiedName;
|
|
497
715
|
}
|
|
498
|
-
export declare const ModuleDefinition
|
|
716
|
+
export declare const ModuleDefinition: {
|
|
717
|
+
readonly $type: "ModuleDefinition";
|
|
718
|
+
readonly defs: "defs";
|
|
719
|
+
readonly imports: "imports";
|
|
720
|
+
readonly name: "name";
|
|
721
|
+
};
|
|
499
722
|
export declare function isModuleDefinition(item: unknown): item is ModuleDefinition;
|
|
500
723
|
export interface NegExpr extends langium.AstNode {
|
|
501
724
|
readonly $container: AttributeDefinition | BinExpr | CaseEntry | FnCall | Group | If | MapEntry | NegExpr | NotExpr | Pattern | SetAttribute | ThrowError | WhereSpecClause;
|
|
502
725
|
readonly $type: 'NegExpr';
|
|
503
726
|
ne: Expr;
|
|
504
727
|
}
|
|
505
|
-
export declare const NegExpr
|
|
728
|
+
export declare const NegExpr: {
|
|
729
|
+
readonly $type: "NegExpr";
|
|
730
|
+
readonly ne: "ne";
|
|
731
|
+
};
|
|
506
732
|
export declare function isNegExpr(item: unknown): item is NegExpr;
|
|
507
733
|
export interface NodeDefinition extends langium.AstNode {
|
|
508
734
|
readonly $container: RelNodes;
|
|
@@ -510,21 +736,31 @@ export interface NodeDefinition extends langium.AstNode {
|
|
|
510
736
|
alias?: string;
|
|
511
737
|
name: QualifiedName;
|
|
512
738
|
}
|
|
513
|
-
export declare const NodeDefinition
|
|
739
|
+
export declare const NodeDefinition: {
|
|
740
|
+
readonly $type: "NodeDefinition";
|
|
741
|
+
readonly alias: "alias";
|
|
742
|
+
readonly name: "name";
|
|
743
|
+
};
|
|
514
744
|
export declare function isNodeDefinition(item: unknown): item is NodeDefinition;
|
|
515
745
|
export interface NotExpr extends langium.AstNode {
|
|
516
746
|
readonly $container: AttributeDefinition | BinExpr | CaseEntry | FnCall | Group | If | MapEntry | NegExpr | NotExpr | Pattern | SetAttribute | ThrowError | WhereSpecClause;
|
|
517
747
|
readonly $type: 'NotExpr';
|
|
518
748
|
ne: Expr;
|
|
519
749
|
}
|
|
520
|
-
export declare const NotExpr
|
|
750
|
+
export declare const NotExpr: {
|
|
751
|
+
readonly $type: "NotExpr";
|
|
752
|
+
readonly ne: "ne";
|
|
753
|
+
};
|
|
521
754
|
export declare function isNotExpr(item: unknown): item is NotExpr;
|
|
522
755
|
export interface OneOfSpec extends langium.AstNode {
|
|
523
756
|
readonly $container: AttributeDefinition;
|
|
524
757
|
readonly $type: 'OneOfSpec';
|
|
525
758
|
ref: Ref;
|
|
526
759
|
}
|
|
527
|
-
export declare const OneOfSpec
|
|
760
|
+
export declare const OneOfSpec: {
|
|
761
|
+
readonly $type: "OneOfSpec";
|
|
762
|
+
readonly ref: "ref";
|
|
763
|
+
};
|
|
528
764
|
export declare function isOneOfSpec(item: unknown): item is OneOfSpec;
|
|
529
765
|
export interface OrderByClause extends langium.AstNode {
|
|
530
766
|
readonly $container: CrudMap;
|
|
@@ -532,7 +768,11 @@ export interface OrderByClause extends langium.AstNode {
|
|
|
532
768
|
colNames: Array<QualifiedName>;
|
|
533
769
|
order?: '@asc' | '@desc';
|
|
534
770
|
}
|
|
535
|
-
export declare const OrderByClause
|
|
771
|
+
export declare const OrderByClause: {
|
|
772
|
+
readonly $type: "OrderByClause";
|
|
773
|
+
readonly colNames: "colNames";
|
|
774
|
+
readonly order: "order";
|
|
775
|
+
};
|
|
536
776
|
export declare function isOrderByClause(item: unknown): item is OrderByClause;
|
|
537
777
|
export interface Pattern extends langium.AstNode {
|
|
538
778
|
readonly $container: Delete | ForEach | Purge | RelationshipPattern | Return | Statement;
|
|
@@ -548,7 +788,19 @@ export interface Pattern extends langium.AstNode {
|
|
|
548
788
|
return?: Return;
|
|
549
789
|
throwError?: ThrowError;
|
|
550
790
|
}
|
|
551
|
-
export declare const Pattern
|
|
791
|
+
export declare const Pattern: {
|
|
792
|
+
readonly $type: "Pattern";
|
|
793
|
+
readonly crudMap: "crudMap";
|
|
794
|
+
readonly delete: "delete";
|
|
795
|
+
readonly expr: "expr";
|
|
796
|
+
readonly forEach: "forEach";
|
|
797
|
+
readonly fullTextSearch: "fullTextSearch";
|
|
798
|
+
readonly if: "if";
|
|
799
|
+
readonly ifWithAlias: "ifWithAlias";
|
|
800
|
+
readonly purge: "purge";
|
|
801
|
+
readonly return: "return";
|
|
802
|
+
readonly throwError: "throwError";
|
|
803
|
+
};
|
|
552
804
|
export declare function isPattern(item: unknown): item is Pattern;
|
|
553
805
|
export interface PrePostTriggerDefinition extends langium.AstNode {
|
|
554
806
|
readonly $container: RecordExtraDefinition;
|
|
@@ -556,50 +808,82 @@ export interface PrePostTriggerDefinition extends langium.AstNode {
|
|
|
556
808
|
after?: AfterTriggerDefinition;
|
|
557
809
|
before?: BeforeTriggerDefinition;
|
|
558
810
|
}
|
|
559
|
-
export declare const PrePostTriggerDefinition
|
|
811
|
+
export declare const PrePostTriggerDefinition: {
|
|
812
|
+
readonly $type: "PrePostTriggerDefinition";
|
|
813
|
+
readonly after: "after";
|
|
814
|
+
readonly before: "before";
|
|
815
|
+
};
|
|
560
816
|
export declare function isPrePostTriggerDefinition(item: unknown): item is PrePostTriggerDefinition;
|
|
817
|
+
export type PrimExpr = Group | Literal | NegExpr | NotExpr;
|
|
818
|
+
export declare const PrimExpr: {
|
|
819
|
+
readonly $type: "PrimExpr";
|
|
820
|
+
};
|
|
821
|
+
export declare function isPrimExpr(item: unknown): item is PrimExpr;
|
|
561
822
|
export interface PropertyDefinition extends langium.AstNode {
|
|
562
823
|
readonly $container: AttributeDefinition | CrudMapBody | RelationshipDefinition;
|
|
563
824
|
readonly $type: 'PropertyDefinition';
|
|
564
825
|
name: TaggedId;
|
|
565
826
|
value?: KvPairs;
|
|
566
827
|
}
|
|
567
|
-
export declare const PropertyDefinition
|
|
828
|
+
export declare const PropertyDefinition: {
|
|
829
|
+
readonly $type: "PropertyDefinition";
|
|
830
|
+
readonly name: "name";
|
|
831
|
+
readonly value: "value";
|
|
832
|
+
};
|
|
568
833
|
export declare function isPropertyDefinition(item: unknown): item is PropertyDefinition;
|
|
569
834
|
export interface PublicAgentDefinition extends langium.AstNode {
|
|
570
835
|
readonly $container: ModuleDefinition;
|
|
571
836
|
readonly $type: 'PublicAgentDefinition';
|
|
572
837
|
def: AgentDefinition;
|
|
573
838
|
}
|
|
574
|
-
export declare const PublicAgentDefinition
|
|
839
|
+
export declare const PublicAgentDefinition: {
|
|
840
|
+
readonly $type: "PublicAgentDefinition";
|
|
841
|
+
readonly def: "def";
|
|
842
|
+
};
|
|
575
843
|
export declare function isPublicAgentDefinition(item: unknown): item is PublicAgentDefinition;
|
|
576
844
|
export interface PublicEventDefinition extends langium.AstNode {
|
|
577
845
|
readonly $container: ModuleDefinition;
|
|
578
846
|
readonly $type: 'PublicEventDefinition';
|
|
579
847
|
def: EventDefinition;
|
|
580
848
|
}
|
|
581
|
-
export declare const PublicEventDefinition
|
|
849
|
+
export declare const PublicEventDefinition: {
|
|
850
|
+
readonly $type: "PublicEventDefinition";
|
|
851
|
+
readonly def: "def";
|
|
852
|
+
};
|
|
582
853
|
export declare function isPublicEventDefinition(item: unknown): item is PublicEventDefinition;
|
|
583
854
|
export interface PublicWorkflowDefinition extends langium.AstNode {
|
|
584
855
|
readonly $container: ModuleDefinition;
|
|
585
856
|
readonly $type: 'PublicWorkflowDefinition';
|
|
586
857
|
def: WorkflowDefinition;
|
|
587
858
|
}
|
|
588
|
-
export declare const PublicWorkflowDefinition
|
|
859
|
+
export declare const PublicWorkflowDefinition: {
|
|
860
|
+
readonly $type: "PublicWorkflowDefinition";
|
|
861
|
+
readonly def: "def";
|
|
862
|
+
};
|
|
589
863
|
export declare function isPublicWorkflowDefinition(item: unknown): item is PublicWorkflowDefinition;
|
|
590
864
|
export interface Purge extends langium.AstNode {
|
|
591
865
|
readonly $container: Pattern;
|
|
592
866
|
readonly $type: 'Purge';
|
|
593
867
|
pattern: Pattern;
|
|
594
868
|
}
|
|
595
|
-
export declare const Purge
|
|
869
|
+
export declare const Purge: {
|
|
870
|
+
readonly $type: "Purge";
|
|
871
|
+
readonly pattern: "pattern";
|
|
872
|
+
};
|
|
596
873
|
export declare function isPurge(item: unknown): item is Purge;
|
|
874
|
+
export type QualifiedName = Ref | string;
|
|
875
|
+
export declare function isQualifiedName(item: unknown): item is QualifiedName;
|
|
876
|
+
export type QueryId = string;
|
|
877
|
+
export declare function isQueryId(item: unknown): item is QueryId;
|
|
597
878
|
export interface RbacAllowSpec extends langium.AstNode {
|
|
598
879
|
readonly $container: RbacSpecEntry;
|
|
599
880
|
readonly $type: 'RbacAllowSpec';
|
|
600
881
|
oprs: Array<RbacOpr>;
|
|
601
882
|
}
|
|
602
|
-
export declare const RbacAllowSpec
|
|
883
|
+
export declare const RbacAllowSpec: {
|
|
884
|
+
readonly $type: "RbacAllowSpec";
|
|
885
|
+
readonly oprs: "oprs";
|
|
886
|
+
};
|
|
603
887
|
export declare function isRbacAllowSpec(item: unknown): item is RbacAllowSpec;
|
|
604
888
|
export interface RbacExpressionSpec extends langium.AstNode {
|
|
605
889
|
readonly $container: RbacSpecEntry;
|
|
@@ -607,35 +891,51 @@ export interface RbacExpressionSpec extends langium.AstNode {
|
|
|
607
891
|
lhs: Ref;
|
|
608
892
|
rhs: Ref;
|
|
609
893
|
}
|
|
610
|
-
export declare const RbacExpressionSpec
|
|
894
|
+
export declare const RbacExpressionSpec: {
|
|
895
|
+
readonly $type: "RbacExpressionSpec";
|
|
896
|
+
readonly lhs: "lhs";
|
|
897
|
+
readonly rhs: "rhs";
|
|
898
|
+
};
|
|
611
899
|
export declare function isRbacExpressionSpec(item: unknown): item is RbacExpressionSpec;
|
|
612
900
|
export interface RbacOpr extends langium.AstNode {
|
|
613
901
|
readonly $container: RbacAllowSpec;
|
|
614
902
|
readonly $type: 'RbacOpr';
|
|
615
903
|
value: 'create' | 'delete' | 'read' | 'update';
|
|
616
904
|
}
|
|
617
|
-
export declare const RbacOpr
|
|
905
|
+
export declare const RbacOpr: {
|
|
906
|
+
readonly $type: "RbacOpr";
|
|
907
|
+
readonly value: "value";
|
|
908
|
+
};
|
|
618
909
|
export declare function isRbacOpr(item: unknown): item is RbacOpr;
|
|
619
910
|
export interface RbacRolesSpec extends langium.AstNode {
|
|
620
911
|
readonly $container: RbacSpecEntry;
|
|
621
912
|
readonly $type: 'RbacRolesSpec';
|
|
622
913
|
roles: Array<'*' | string>;
|
|
623
914
|
}
|
|
624
|
-
export declare const RbacRolesSpec
|
|
915
|
+
export declare const RbacRolesSpec: {
|
|
916
|
+
readonly $type: "RbacRolesSpec";
|
|
917
|
+
readonly roles: "roles";
|
|
918
|
+
};
|
|
625
919
|
export declare function isRbacRolesSpec(item: unknown): item is RbacRolesSpec;
|
|
626
920
|
export interface RbacSpecDefinition extends langium.AstNode {
|
|
627
921
|
readonly $container: RecordExtraDefinition;
|
|
628
922
|
readonly $type: 'RbacSpecDefinition';
|
|
629
923
|
specEntries: Array<RbacSpecEntries>;
|
|
630
924
|
}
|
|
631
|
-
export declare const RbacSpecDefinition
|
|
925
|
+
export declare const RbacSpecDefinition: {
|
|
926
|
+
readonly $type: "RbacSpecDefinition";
|
|
927
|
+
readonly specEntries: "specEntries";
|
|
928
|
+
};
|
|
632
929
|
export declare function isRbacSpecDefinition(item: unknown): item is RbacSpecDefinition;
|
|
633
930
|
export interface RbacSpecEntries extends langium.AstNode {
|
|
634
931
|
readonly $container: RbacSpecDefinition;
|
|
635
932
|
readonly $type: 'RbacSpecEntries';
|
|
636
933
|
entries: Array<RbacSpecEntry>;
|
|
637
934
|
}
|
|
638
|
-
export declare const RbacSpecEntries
|
|
935
|
+
export declare const RbacSpecEntries: {
|
|
936
|
+
readonly $type: "RbacSpecEntries";
|
|
937
|
+
readonly entries: "entries";
|
|
938
|
+
};
|
|
639
939
|
export declare function isRbacSpecEntries(item: unknown): item is RbacSpecEntries;
|
|
640
940
|
export interface RbacSpecEntry extends langium.AstNode {
|
|
641
941
|
readonly $container: RbacSpecEntries;
|
|
@@ -644,7 +944,12 @@ export interface RbacSpecEntry extends langium.AstNode {
|
|
|
644
944
|
expr?: RbacExpressionSpec;
|
|
645
945
|
role?: RbacRolesSpec;
|
|
646
946
|
}
|
|
647
|
-
export declare const RbacSpecEntry
|
|
947
|
+
export declare const RbacSpecEntry: {
|
|
948
|
+
readonly $type: "RbacSpecEntry";
|
|
949
|
+
readonly allow: "allow";
|
|
950
|
+
readonly expr: "expr";
|
|
951
|
+
readonly role: "role";
|
|
952
|
+
};
|
|
648
953
|
export declare function isRbacSpecEntry(item: unknown): item is RbacSpecEntry;
|
|
649
954
|
export interface RecordDefinition extends langium.AstNode {
|
|
650
955
|
readonly $container: ModuleDefinition;
|
|
@@ -653,7 +958,12 @@ export interface RecordDefinition extends langium.AstNode {
|
|
|
653
958
|
name: QualifiedName;
|
|
654
959
|
schema: RecordSchemaDefinition;
|
|
655
960
|
}
|
|
656
|
-
export declare const RecordDefinition
|
|
961
|
+
export declare const RecordDefinition: {
|
|
962
|
+
readonly $type: "RecordDefinition";
|
|
963
|
+
readonly extends: "extends";
|
|
964
|
+
readonly name: "name";
|
|
965
|
+
readonly schema: "schema";
|
|
966
|
+
};
|
|
657
967
|
export declare function isRecordDefinition(item: unknown): item is RecordDefinition;
|
|
658
968
|
export interface RecordExtraDefinition extends langium.AstNode {
|
|
659
969
|
readonly $container: RecordSchemaDefinition;
|
|
@@ -664,7 +974,14 @@ export interface RecordExtraDefinition extends langium.AstNode {
|
|
|
664
974
|
rbacSpec?: RbacSpecDefinition;
|
|
665
975
|
uq?: CompositeUniqueDefinition;
|
|
666
976
|
}
|
|
667
|
-
export declare const RecordExtraDefinition
|
|
977
|
+
export declare const RecordExtraDefinition: {
|
|
978
|
+
readonly $type: "RecordExtraDefinition";
|
|
979
|
+
readonly actions: "actions";
|
|
980
|
+
readonly meta: "meta";
|
|
981
|
+
readonly prePost: "prePost";
|
|
982
|
+
readonly rbacSpec: "rbacSpec";
|
|
983
|
+
readonly uq: "uq";
|
|
984
|
+
};
|
|
668
985
|
export declare function isRecordExtraDefinition(item: unknown): item is RecordExtraDefinition;
|
|
669
986
|
export interface RecordSchemaDefinition extends langium.AstNode {
|
|
670
987
|
readonly $container: EntityDefinition | EventDefinition | RecordDefinition | RelationshipDefinition;
|
|
@@ -672,15 +989,25 @@ export interface RecordSchemaDefinition extends langium.AstNode {
|
|
|
672
989
|
attributes: Array<AttributeDefinition>;
|
|
673
990
|
extras: Array<RecordExtraDefinition>;
|
|
674
991
|
}
|
|
675
|
-
export declare const RecordSchemaDefinition
|
|
992
|
+
export declare const RecordSchemaDefinition: {
|
|
993
|
+
readonly $type: "RecordSchemaDefinition";
|
|
994
|
+
readonly attributes: "attributes";
|
|
995
|
+
readonly extras: "extras";
|
|
996
|
+
};
|
|
676
997
|
export declare function isRecordSchemaDefinition(item: unknown): item is RecordSchemaDefinition;
|
|
998
|
+
export type Ref = string;
|
|
999
|
+
export declare function isRef(item: unknown): item is Ref;
|
|
677
1000
|
export interface RefSpec extends langium.AstNode {
|
|
678
1001
|
readonly $container: AttributeDefinition;
|
|
679
1002
|
readonly $type: 'RefSpec';
|
|
680
1003
|
ref: QualifiedName;
|
|
681
1004
|
type?: QualifiedName;
|
|
682
1005
|
}
|
|
683
|
-
export declare const RefSpec
|
|
1006
|
+
export declare const RefSpec: {
|
|
1007
|
+
readonly $type: "RefSpec";
|
|
1008
|
+
readonly ref: "ref";
|
|
1009
|
+
readonly type: "type";
|
|
1010
|
+
};
|
|
684
1011
|
export declare function isRefSpec(item: unknown): item is RefSpec;
|
|
685
1012
|
export interface RelationshipDefinition extends langium.AstNode {
|
|
686
1013
|
readonly $container: ModuleDefinition;
|
|
@@ -691,7 +1018,14 @@ export interface RelationshipDefinition extends langium.AstNode {
|
|
|
691
1018
|
schema?: RecordSchemaDefinition;
|
|
692
1019
|
type: 'between' | 'contains';
|
|
693
1020
|
}
|
|
694
|
-
export declare const RelationshipDefinition
|
|
1021
|
+
export declare const RelationshipDefinition: {
|
|
1022
|
+
readonly $type: "RelationshipDefinition";
|
|
1023
|
+
readonly name: "name";
|
|
1024
|
+
readonly nodes: "nodes";
|
|
1025
|
+
readonly properties: "properties";
|
|
1026
|
+
readonly schema: "schema";
|
|
1027
|
+
readonly type: "type";
|
|
1028
|
+
};
|
|
695
1029
|
export declare function isRelationshipDefinition(item: unknown): item is RelationshipDefinition;
|
|
696
1030
|
export interface RelationshipPattern extends langium.AstNode {
|
|
697
1031
|
readonly $container: CrudMap;
|
|
@@ -699,7 +1033,11 @@ export interface RelationshipPattern extends langium.AstNode {
|
|
|
699
1033
|
name: QualifiedName;
|
|
700
1034
|
pattern: Pattern;
|
|
701
1035
|
}
|
|
702
|
-
export declare const RelationshipPattern
|
|
1036
|
+
export declare const RelationshipPattern: {
|
|
1037
|
+
readonly $type: "RelationshipPattern";
|
|
1038
|
+
readonly name: "name";
|
|
1039
|
+
readonly pattern: "pattern";
|
|
1040
|
+
};
|
|
703
1041
|
export declare function isRelationshipPattern(item: unknown): item is RelationshipPattern;
|
|
704
1042
|
export interface RelNodes extends langium.AstNode {
|
|
705
1043
|
readonly $container: RelationshipDefinition;
|
|
@@ -707,7 +1045,11 @@ export interface RelNodes extends langium.AstNode {
|
|
|
707
1045
|
node1: NodeDefinition;
|
|
708
1046
|
node2: NodeDefinition;
|
|
709
1047
|
}
|
|
710
|
-
export declare const RelNodes
|
|
1048
|
+
export declare const RelNodes: {
|
|
1049
|
+
readonly $type: "RelNodes";
|
|
1050
|
+
readonly node1: "node1";
|
|
1051
|
+
readonly node2: "node2";
|
|
1052
|
+
};
|
|
711
1053
|
export declare function isRelNodes(item: unknown): item is RelNodes;
|
|
712
1054
|
export interface ResolverDefinition extends langium.AstNode {
|
|
713
1055
|
readonly $container: ModuleDefinition;
|
|
@@ -716,21 +1058,32 @@ export interface ResolverDefinition extends langium.AstNode {
|
|
|
716
1058
|
name: QualifiedName;
|
|
717
1059
|
paths: Array<ResolverPathEntry>;
|
|
718
1060
|
}
|
|
719
|
-
export declare const ResolverDefinition
|
|
1061
|
+
export declare const ResolverDefinition: {
|
|
1062
|
+
readonly $type: "ResolverDefinition";
|
|
1063
|
+
readonly methods: "methods";
|
|
1064
|
+
readonly name: "name";
|
|
1065
|
+
readonly paths: "paths";
|
|
1066
|
+
};
|
|
720
1067
|
export declare function isResolverDefinition(item: unknown): item is ResolverDefinition;
|
|
721
1068
|
export interface ResolverFnName extends langium.AstNode {
|
|
722
1069
|
readonly $container: ResolverMethodSpec;
|
|
723
1070
|
readonly $type: 'ResolverFnName';
|
|
724
1071
|
name: Ref | STRING | string;
|
|
725
1072
|
}
|
|
726
|
-
export declare const ResolverFnName
|
|
1073
|
+
export declare const ResolverFnName: {
|
|
1074
|
+
readonly $type: "ResolverFnName";
|
|
1075
|
+
readonly name: "name";
|
|
1076
|
+
};
|
|
727
1077
|
export declare function isResolverFnName(item: unknown): item is ResolverFnName;
|
|
728
1078
|
export interface ResolverMethodName extends langium.AstNode {
|
|
729
1079
|
readonly $container: ResolverMethodSpec;
|
|
730
1080
|
readonly $type: 'ResolverMethodName';
|
|
731
1081
|
name: 'commitTransaction' | 'create' | 'delete' | 'onSubscription' | 'query' | 'rollbackTransaction' | 'startTransaction' | 'subscribe' | 'update' | 'upsert';
|
|
732
1082
|
}
|
|
733
|
-
export declare const ResolverMethodName
|
|
1083
|
+
export declare const ResolverMethodName: {
|
|
1084
|
+
readonly $type: "ResolverMethodName";
|
|
1085
|
+
readonly name: "name";
|
|
1086
|
+
};
|
|
734
1087
|
export declare function isResolverMethodName(item: unknown): item is ResolverMethodName;
|
|
735
1088
|
export interface ResolverMethodSpec extends langium.AstNode {
|
|
736
1089
|
readonly $container: ResolverDefinition;
|
|
@@ -738,8 +1091,14 @@ export interface ResolverMethodSpec extends langium.AstNode {
|
|
|
738
1091
|
fn: ResolverFnName;
|
|
739
1092
|
key: ResolverMethodName;
|
|
740
1093
|
}
|
|
741
|
-
export declare const ResolverMethodSpec
|
|
1094
|
+
export declare const ResolverMethodSpec: {
|
|
1095
|
+
readonly $type: "ResolverMethodSpec";
|
|
1096
|
+
readonly fn: "fn";
|
|
1097
|
+
readonly key: "key";
|
|
1098
|
+
};
|
|
742
1099
|
export declare function isResolverMethodSpec(item: unknown): item is ResolverMethodSpec;
|
|
1100
|
+
export type ResolverPathEntry = GenericName | QualifiedName;
|
|
1101
|
+
export declare function isResolverPathEntry(item: unknown): item is ResolverPathEntry;
|
|
743
1102
|
export interface RetryDefinition extends langium.AstNode {
|
|
744
1103
|
readonly $container: ModuleDefinition;
|
|
745
1104
|
readonly $type: 'RetryDefinition';
|
|
@@ -747,14 +1106,22 @@ export interface RetryDefinition extends langium.AstNode {
|
|
|
747
1106
|
backoff?: BackoffSpec;
|
|
748
1107
|
name: string;
|
|
749
1108
|
}
|
|
750
|
-
export declare const RetryDefinition
|
|
1109
|
+
export declare const RetryDefinition: {
|
|
1110
|
+
readonly $type: "RetryDefinition";
|
|
1111
|
+
readonly attempts: "attempts";
|
|
1112
|
+
readonly backoff: "backoff";
|
|
1113
|
+
readonly name: "name";
|
|
1114
|
+
};
|
|
751
1115
|
export declare function isRetryDefinition(item: unknown): item is RetryDefinition;
|
|
752
1116
|
export interface Return extends langium.AstNode {
|
|
753
1117
|
readonly $container: Pattern;
|
|
754
1118
|
readonly $type: 'Return';
|
|
755
1119
|
pattern: Pattern;
|
|
756
1120
|
}
|
|
757
|
-
export declare const Return
|
|
1121
|
+
export declare const Return: {
|
|
1122
|
+
readonly $type: "Return";
|
|
1123
|
+
readonly pattern: "pattern";
|
|
1124
|
+
};
|
|
758
1125
|
export declare function isReturn(item: unknown): item is Return;
|
|
759
1126
|
export interface RuntimeHint extends langium.AstNode {
|
|
760
1127
|
readonly $container: Statement;
|
|
@@ -763,7 +1130,12 @@ export interface RuntimeHint extends langium.AstNode {
|
|
|
763
1130
|
catchSpec?: CatchSpec;
|
|
764
1131
|
thenSpec?: ThenSpec;
|
|
765
1132
|
}
|
|
766
|
-
export declare const RuntimeHint
|
|
1133
|
+
export declare const RuntimeHint: {
|
|
1134
|
+
readonly $type: "RuntimeHint";
|
|
1135
|
+
readonly aliasSpec: "aliasSpec";
|
|
1136
|
+
readonly catchSpec: "catchSpec";
|
|
1137
|
+
readonly thenSpec: "thenSpec";
|
|
1138
|
+
};
|
|
767
1139
|
export declare function isRuntimeHint(item: unknown): item is RuntimeHint;
|
|
768
1140
|
export interface ScenarioDefinition extends langium.AstNode {
|
|
769
1141
|
readonly $container: ModuleDefinition;
|
|
@@ -772,8 +1144,18 @@ export interface ScenarioDefinition extends langium.AstNode {
|
|
|
772
1144
|
name: Ref;
|
|
773
1145
|
scn?: If;
|
|
774
1146
|
}
|
|
775
|
-
export declare const ScenarioDefinition
|
|
1147
|
+
export declare const ScenarioDefinition: {
|
|
1148
|
+
readonly $type: "ScenarioDefinition";
|
|
1149
|
+
readonly body: "body";
|
|
1150
|
+
readonly name: "name";
|
|
1151
|
+
readonly scn: "scn";
|
|
1152
|
+
};
|
|
776
1153
|
export declare function isScenarioDefinition(item: unknown): item is ScenarioDefinition;
|
|
1154
|
+
export type SchemaDefinition = EntityDefinition | EventDefinition | PublicEventDefinition | RecordDefinition;
|
|
1155
|
+
export declare const SchemaDefinition: {
|
|
1156
|
+
readonly $type: "SchemaDefinition";
|
|
1157
|
+
};
|
|
1158
|
+
export declare function isSchemaDefinition(item: unknown): item is SchemaDefinition;
|
|
777
1159
|
export interface SelectIntoEntry extends langium.AstNode {
|
|
778
1160
|
readonly $container: SelectIntoSpec;
|
|
779
1161
|
readonly $type: 'SelectIntoEntry';
|
|
@@ -781,31 +1163,50 @@ export interface SelectIntoEntry extends langium.AstNode {
|
|
|
781
1163
|
alias: string;
|
|
782
1164
|
attribute?: Ref;
|
|
783
1165
|
}
|
|
784
|
-
export declare const SelectIntoEntry
|
|
1166
|
+
export declare const SelectIntoEntry: {
|
|
1167
|
+
readonly $type: "SelectIntoEntry";
|
|
1168
|
+
readonly aggregate: "aggregate";
|
|
1169
|
+
readonly alias: "alias";
|
|
1170
|
+
readonly attribute: "attribute";
|
|
1171
|
+
};
|
|
785
1172
|
export declare function isSelectIntoEntry(item: unknown): item is SelectIntoEntry;
|
|
786
1173
|
export interface SelectIntoSpec extends langium.AstNode {
|
|
787
1174
|
readonly $container: CrudMap;
|
|
788
1175
|
readonly $type: 'SelectIntoSpec';
|
|
789
1176
|
entries: Array<SelectIntoEntry>;
|
|
790
1177
|
}
|
|
791
|
-
export declare const SelectIntoSpec
|
|
1178
|
+
export declare const SelectIntoSpec: {
|
|
1179
|
+
readonly $type: "SelectIntoSpec";
|
|
1180
|
+
readonly entries: "entries";
|
|
1181
|
+
};
|
|
792
1182
|
export declare function isSelectIntoSpec(item: unknown): item is SelectIntoSpec;
|
|
793
1183
|
export interface SetAttribute extends langium.AstNode {
|
|
794
|
-
readonly $container: BackoffSpec | CrudMapBody;
|
|
1184
|
+
readonly $container: AgentEvaluatorDefinition | BackoffSpec | CrudMapBody;
|
|
795
1185
|
readonly $type: 'SetAttribute';
|
|
796
1186
|
aggregate?: AggregateFunctionSpec;
|
|
797
1187
|
name: QueryId;
|
|
798
1188
|
op?: SqlComparisonOpr;
|
|
799
1189
|
value?: AttributeValueExpression;
|
|
800
1190
|
}
|
|
801
|
-
export declare const SetAttribute
|
|
1191
|
+
export declare const SetAttribute: {
|
|
1192
|
+
readonly $type: "SetAttribute";
|
|
1193
|
+
readonly aggregate: "aggregate";
|
|
1194
|
+
readonly name: "name";
|
|
1195
|
+
readonly op: "op";
|
|
1196
|
+
readonly value: "value";
|
|
1197
|
+
};
|
|
802
1198
|
export declare function isSetAttribute(item: unknown): item is SetAttribute;
|
|
1199
|
+
export type SqlComparisonOpr = '!=' | '<' | '<=' | '<>' | '=' | '>' | '>=' | 'between' | 'in' | 'like';
|
|
1200
|
+
export declare function isSqlComparisonOpr(item: unknown): item is SqlComparisonOpr;
|
|
803
1201
|
export interface StandaloneStatement extends langium.AstNode {
|
|
804
1202
|
readonly $container: ModuleDefinition;
|
|
805
1203
|
readonly $type: 'StandaloneStatement';
|
|
806
1204
|
stmt: Statement;
|
|
807
1205
|
}
|
|
808
|
-
export declare const StandaloneStatement
|
|
1206
|
+
export declare const StandaloneStatement: {
|
|
1207
|
+
readonly $type: "StandaloneStatement";
|
|
1208
|
+
readonly stmt: "stmt";
|
|
1209
|
+
};
|
|
809
1210
|
export declare function isStandaloneStatement(item: unknown): item is StandaloneStatement;
|
|
810
1211
|
export interface Statement extends langium.AstNode {
|
|
811
1212
|
readonly $container: ArrayLiteral | CaseEntry | ConditionalFlowStep | Else | FlowEntry | ForEach | Handler | If | StandaloneStatement | ThenSpec | WorkflowDefinition;
|
|
@@ -813,28 +1214,45 @@ export interface Statement extends langium.AstNode {
|
|
|
813
1214
|
hints: Array<RuntimeHint>;
|
|
814
1215
|
pattern: Pattern;
|
|
815
1216
|
}
|
|
816
|
-
export declare const Statement
|
|
1217
|
+
export declare const Statement: {
|
|
1218
|
+
readonly $type: "Statement";
|
|
1219
|
+
readonly hints: "hints";
|
|
1220
|
+
readonly pattern: "pattern";
|
|
1221
|
+
};
|
|
817
1222
|
export declare function isStatement(item: unknown): item is Statement;
|
|
1223
|
+
export type STRING = string;
|
|
1224
|
+
export declare function isSTRING(item: unknown): item is STRING;
|
|
1225
|
+
export type TaggedId = string;
|
|
1226
|
+
export declare function isTaggedId(item: unknown): item is TaggedId;
|
|
818
1227
|
export interface ThenSpec extends langium.AstNode {
|
|
819
1228
|
readonly $container: RuntimeHint;
|
|
820
1229
|
readonly $type: 'ThenSpec';
|
|
821
1230
|
statements: Array<Statement>;
|
|
822
1231
|
}
|
|
823
|
-
export declare const ThenSpec
|
|
1232
|
+
export declare const ThenSpec: {
|
|
1233
|
+
readonly $type: "ThenSpec";
|
|
1234
|
+
readonly statements: "statements";
|
|
1235
|
+
};
|
|
824
1236
|
export declare function isThenSpec(item: unknown): item is ThenSpec;
|
|
825
1237
|
export interface ThrowError extends langium.AstNode {
|
|
826
1238
|
readonly $container: Pattern;
|
|
827
1239
|
readonly $type: 'ThrowError';
|
|
828
1240
|
reason: Expr;
|
|
829
1241
|
}
|
|
830
|
-
export declare const ThrowError
|
|
1242
|
+
export declare const ThrowError: {
|
|
1243
|
+
readonly $type: "ThrowError";
|
|
1244
|
+
readonly reason: "reason";
|
|
1245
|
+
};
|
|
831
1246
|
export declare function isThrowError(item: unknown): item is ThrowError;
|
|
832
1247
|
export interface TriggerDefinition extends langium.AstNode {
|
|
833
1248
|
readonly $container: AfterTriggerDefinition | BeforeTriggerDefinition;
|
|
834
1249
|
readonly $type: 'TriggerDefinition';
|
|
835
1250
|
entries: Array<TriggerEntry>;
|
|
836
1251
|
}
|
|
837
|
-
export declare const TriggerDefinition
|
|
1252
|
+
export declare const TriggerDefinition: {
|
|
1253
|
+
readonly $type: "TriggerDefinition";
|
|
1254
|
+
readonly entries: "entries";
|
|
1255
|
+
};
|
|
838
1256
|
export declare function isTriggerDefinition(item: unknown): item is TriggerDefinition;
|
|
839
1257
|
export interface TriggerEntry extends langium.AstNode {
|
|
840
1258
|
readonly $container: TriggerDefinition;
|
|
@@ -843,14 +1261,22 @@ export interface TriggerEntry extends langium.AstNode {
|
|
|
843
1261
|
event: string;
|
|
844
1262
|
on: 'create' | 'delete' | 'update';
|
|
845
1263
|
}
|
|
846
|
-
export declare const TriggerEntry
|
|
1264
|
+
export declare const TriggerEntry: {
|
|
1265
|
+
readonly $type: "TriggerEntry";
|
|
1266
|
+
readonly async: "async";
|
|
1267
|
+
readonly event: "event";
|
|
1268
|
+
readonly on: "on";
|
|
1269
|
+
};
|
|
847
1270
|
export declare function isTriggerEntry(item: unknown): item is TriggerEntry;
|
|
848
1271
|
export interface WhereSpec extends langium.AstNode {
|
|
849
1272
|
readonly $container: CrudMap;
|
|
850
1273
|
readonly $type: 'WhereSpec';
|
|
851
1274
|
clauses: Array<WhereSpecClause>;
|
|
852
1275
|
}
|
|
853
|
-
export declare const WhereSpec
|
|
1276
|
+
export declare const WhereSpec: {
|
|
1277
|
+
readonly $type: "WhereSpec";
|
|
1278
|
+
readonly clauses: "clauses";
|
|
1279
|
+
};
|
|
854
1280
|
export declare function isWhereSpec(item: unknown): item is WhereSpec;
|
|
855
1281
|
export interface WhereSpecClause extends langium.AstNode {
|
|
856
1282
|
readonly $container: WhereSpec;
|
|
@@ -859,17 +1285,51 @@ export interface WhereSpecClause extends langium.AstNode {
|
|
|
859
1285
|
op?: SqlComparisonOpr;
|
|
860
1286
|
rhs: Expr;
|
|
861
1287
|
}
|
|
862
|
-
export declare const WhereSpecClause
|
|
1288
|
+
export declare const WhereSpecClause: {
|
|
1289
|
+
readonly $type: "WhereSpecClause";
|
|
1290
|
+
readonly lhs: "lhs";
|
|
1291
|
+
readonly op: "op";
|
|
1292
|
+
readonly rhs: "rhs";
|
|
1293
|
+
};
|
|
863
1294
|
export declare function isWhereSpecClause(item: unknown): item is WhereSpecClause;
|
|
864
1295
|
export interface WorkflowDefinition extends langium.AstNode {
|
|
865
1296
|
readonly $container: ModuleDefinition | PublicWorkflowDefinition;
|
|
866
1297
|
readonly $type: 'WorkflowDefinition';
|
|
1298
|
+
directives?: WorkflowDirectives;
|
|
867
1299
|
header?: WorkflowHeader;
|
|
868
1300
|
name?: string;
|
|
869
1301
|
statements: Array<Statement>;
|
|
870
1302
|
}
|
|
871
|
-
export declare const WorkflowDefinition
|
|
1303
|
+
export declare const WorkflowDefinition: {
|
|
1304
|
+
readonly $type: "WorkflowDefinition";
|
|
1305
|
+
readonly directives: "directives";
|
|
1306
|
+
readonly header: "header";
|
|
1307
|
+
readonly name: "name";
|
|
1308
|
+
readonly statements: "statements";
|
|
1309
|
+
};
|
|
872
1310
|
export declare function isWorkflowDefinition(item: unknown): item is WorkflowDefinition;
|
|
1311
|
+
export interface WorkflowDirectiveEntry extends langium.AstNode {
|
|
1312
|
+
readonly $container: WorkflowDirectives;
|
|
1313
|
+
readonly $type: 'WorkflowDirectiveEntry';
|
|
1314
|
+
tag: '@withRole';
|
|
1315
|
+
value: STRING | string;
|
|
1316
|
+
}
|
|
1317
|
+
export declare const WorkflowDirectiveEntry: {
|
|
1318
|
+
readonly $type: "WorkflowDirectiveEntry";
|
|
1319
|
+
readonly tag: "tag";
|
|
1320
|
+
readonly value: "value";
|
|
1321
|
+
};
|
|
1322
|
+
export declare function isWorkflowDirectiveEntry(item: unknown): item is WorkflowDirectiveEntry;
|
|
1323
|
+
export interface WorkflowDirectives extends langium.AstNode {
|
|
1324
|
+
readonly $container: WorkflowDefinition;
|
|
1325
|
+
readonly $type: 'WorkflowDirectives';
|
|
1326
|
+
entries: Array<WorkflowDirectiveEntry>;
|
|
1327
|
+
}
|
|
1328
|
+
export declare const WorkflowDirectives: {
|
|
1329
|
+
readonly $type: "WorkflowDirectives";
|
|
1330
|
+
readonly entries: "entries";
|
|
1331
|
+
};
|
|
1332
|
+
export declare function isWorkflowDirectives(item: unknown): item is WorkflowDirectives;
|
|
873
1333
|
export interface WorkflowHeader extends langium.AstNode {
|
|
874
1334
|
readonly $container: WorkflowDefinition;
|
|
875
1335
|
readonly $type: 'WorkflowHeader';
|
|
@@ -877,12 +1337,22 @@ export interface WorkflowHeader extends langium.AstNode {
|
|
|
877
1337
|
prefix: WorkflowHeaderPrefix;
|
|
878
1338
|
tag: WorkflowHeaderTag;
|
|
879
1339
|
}
|
|
880
|
-
export declare const WorkflowHeader
|
|
1340
|
+
export declare const WorkflowHeader: {
|
|
1341
|
+
readonly $type: "WorkflowHeader";
|
|
1342
|
+
readonly name: "name";
|
|
1343
|
+
readonly prefix: "prefix";
|
|
1344
|
+
readonly tag: "tag";
|
|
1345
|
+
};
|
|
881
1346
|
export declare function isWorkflowHeader(item: unknown): item is WorkflowHeader;
|
|
1347
|
+
export type WorkflowHeaderPrefix = 'create' | 'delete' | 'update';
|
|
1348
|
+
export declare function isWorkflowHeaderPrefix(item: unknown): item is WorkflowHeaderPrefix;
|
|
1349
|
+
export type WorkflowHeaderTag = '@after' | '@before';
|
|
1350
|
+
export declare function isWorkflowHeaderTag(item: unknown): item is WorkflowHeaderTag;
|
|
882
1351
|
export type AgentlangAstType = {
|
|
883
1352
|
ActionEntry: ActionEntry;
|
|
884
1353
|
AfterTriggerDefinition: AfterTriggerDefinition;
|
|
885
1354
|
AgentDefinition: AgentDefinition;
|
|
1355
|
+
AgentEvaluatorDefinition: AgentEvaluatorDefinition;
|
|
886
1356
|
AgentXtraAttribute: AgentXtraAttribute;
|
|
887
1357
|
AgentXtraSpec: AgentXtraSpec;
|
|
888
1358
|
AggregateFunctionSpec: AggregateFunctionSpec;
|
|
@@ -985,13 +1455,1389 @@ export type AgentlangAstType = {
|
|
|
985
1455
|
WhereSpec: WhereSpec;
|
|
986
1456
|
WhereSpecClause: WhereSpecClause;
|
|
987
1457
|
WorkflowDefinition: WorkflowDefinition;
|
|
1458
|
+
WorkflowDirectiveEntry: WorkflowDirectiveEntry;
|
|
1459
|
+
WorkflowDirectives: WorkflowDirectives;
|
|
988
1460
|
WorkflowHeader: WorkflowHeader;
|
|
989
1461
|
};
|
|
990
1462
|
export declare class AgentlangAstReflection extends langium.AbstractAstReflection {
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
1463
|
+
readonly types: {
|
|
1464
|
+
readonly ActionEntry: {
|
|
1465
|
+
readonly name: "ActionEntry";
|
|
1466
|
+
readonly properties: {
|
|
1467
|
+
readonly event: {
|
|
1468
|
+
readonly name: "event";
|
|
1469
|
+
};
|
|
1470
|
+
readonly name: {
|
|
1471
|
+
readonly name: "name";
|
|
1472
|
+
};
|
|
1473
|
+
};
|
|
1474
|
+
readonly superTypes: [];
|
|
1475
|
+
};
|
|
1476
|
+
readonly AfterTriggerDefinition: {
|
|
1477
|
+
readonly name: "AfterTriggerDefinition";
|
|
1478
|
+
readonly properties: {
|
|
1479
|
+
readonly triggers: {
|
|
1480
|
+
readonly name: "triggers";
|
|
1481
|
+
};
|
|
1482
|
+
};
|
|
1483
|
+
readonly superTypes: [];
|
|
1484
|
+
};
|
|
1485
|
+
readonly AgentDefinition: {
|
|
1486
|
+
readonly name: "AgentDefinition";
|
|
1487
|
+
readonly properties: {
|
|
1488
|
+
readonly body: {
|
|
1489
|
+
readonly name: "body";
|
|
1490
|
+
};
|
|
1491
|
+
readonly name: {
|
|
1492
|
+
readonly name: "name";
|
|
1493
|
+
};
|
|
1494
|
+
};
|
|
1495
|
+
readonly superTypes: ["Definition"];
|
|
1496
|
+
};
|
|
1497
|
+
readonly AgentEvaluatorDefinition: {
|
|
1498
|
+
readonly name: "AgentEvaluatorDefinition";
|
|
1499
|
+
readonly properties: {
|
|
1500
|
+
readonly attributes: {
|
|
1501
|
+
readonly name: "attributes";
|
|
1502
|
+
readonly defaultValue: [];
|
|
1503
|
+
};
|
|
1504
|
+
readonly name: {
|
|
1505
|
+
readonly name: "name";
|
|
1506
|
+
};
|
|
1507
|
+
};
|
|
1508
|
+
readonly superTypes: ["Definition"];
|
|
1509
|
+
};
|
|
1510
|
+
readonly AgentXtraAttribute: {
|
|
1511
|
+
readonly name: "AgentXtraAttribute";
|
|
1512
|
+
readonly properties: {
|
|
1513
|
+
readonly name: {
|
|
1514
|
+
readonly name: "name";
|
|
1515
|
+
};
|
|
1516
|
+
readonly value: {
|
|
1517
|
+
readonly name: "value";
|
|
1518
|
+
};
|
|
1519
|
+
};
|
|
1520
|
+
readonly superTypes: [];
|
|
1521
|
+
};
|
|
1522
|
+
readonly AgentXtraSpec: {
|
|
1523
|
+
readonly name: "AgentXtraSpec";
|
|
1524
|
+
readonly properties: {
|
|
1525
|
+
readonly attributes: {
|
|
1526
|
+
readonly name: "attributes";
|
|
1527
|
+
readonly defaultValue: [];
|
|
1528
|
+
};
|
|
1529
|
+
};
|
|
1530
|
+
readonly superTypes: [];
|
|
1531
|
+
};
|
|
1532
|
+
readonly AggregateFunctionSpec: {
|
|
1533
|
+
readonly name: "AggregateFunctionSpec";
|
|
1534
|
+
readonly properties: {
|
|
1535
|
+
readonly args: {
|
|
1536
|
+
readonly name: "args";
|
|
1537
|
+
readonly defaultValue: [];
|
|
1538
|
+
};
|
|
1539
|
+
readonly name: {
|
|
1540
|
+
readonly name: "name";
|
|
1541
|
+
};
|
|
1542
|
+
};
|
|
1543
|
+
readonly superTypes: [];
|
|
1544
|
+
};
|
|
1545
|
+
readonly AliasSpec: {
|
|
1546
|
+
readonly name: "AliasSpec";
|
|
1547
|
+
readonly properties: {
|
|
1548
|
+
readonly alias: {
|
|
1549
|
+
readonly name: "alias";
|
|
1550
|
+
};
|
|
1551
|
+
readonly aliases: {
|
|
1552
|
+
readonly name: "aliases";
|
|
1553
|
+
readonly defaultValue: [];
|
|
1554
|
+
};
|
|
1555
|
+
};
|
|
1556
|
+
readonly superTypes: [];
|
|
1557
|
+
};
|
|
1558
|
+
readonly ArrayLiteral: {
|
|
1559
|
+
readonly name: "ArrayLiteral";
|
|
1560
|
+
readonly properties: {
|
|
1561
|
+
readonly vals: {
|
|
1562
|
+
readonly name: "vals";
|
|
1563
|
+
readonly defaultValue: [];
|
|
1564
|
+
};
|
|
1565
|
+
};
|
|
1566
|
+
readonly superTypes: [];
|
|
1567
|
+
};
|
|
1568
|
+
readonly AsyncFnCall: {
|
|
1569
|
+
readonly name: "AsyncFnCall";
|
|
1570
|
+
readonly properties: {
|
|
1571
|
+
readonly fnCall: {
|
|
1572
|
+
readonly name: "fnCall";
|
|
1573
|
+
};
|
|
1574
|
+
};
|
|
1575
|
+
readonly superTypes: [];
|
|
1576
|
+
};
|
|
1577
|
+
readonly AttributeDefinition: {
|
|
1578
|
+
readonly name: "AttributeDefinition";
|
|
1579
|
+
readonly properties: {
|
|
1580
|
+
readonly arrayType: {
|
|
1581
|
+
readonly name: "arrayType";
|
|
1582
|
+
};
|
|
1583
|
+
readonly enumSpec: {
|
|
1584
|
+
readonly name: "enumSpec";
|
|
1585
|
+
};
|
|
1586
|
+
readonly expr: {
|
|
1587
|
+
readonly name: "expr";
|
|
1588
|
+
};
|
|
1589
|
+
readonly name: {
|
|
1590
|
+
readonly name: "name";
|
|
1591
|
+
};
|
|
1592
|
+
readonly oneOfSpec: {
|
|
1593
|
+
readonly name: "oneOfSpec";
|
|
1594
|
+
};
|
|
1595
|
+
readonly properties: {
|
|
1596
|
+
readonly name: "properties";
|
|
1597
|
+
readonly defaultValue: [];
|
|
1598
|
+
};
|
|
1599
|
+
readonly refSpec: {
|
|
1600
|
+
readonly name: "refSpec";
|
|
1601
|
+
};
|
|
1602
|
+
readonly type: {
|
|
1603
|
+
readonly name: "type";
|
|
1604
|
+
};
|
|
1605
|
+
};
|
|
1606
|
+
readonly superTypes: [];
|
|
1607
|
+
};
|
|
1608
|
+
readonly AttributeValueExpression: {
|
|
1609
|
+
readonly name: "AttributeValueExpression";
|
|
1610
|
+
readonly properties: {};
|
|
1611
|
+
readonly superTypes: [];
|
|
1612
|
+
};
|
|
1613
|
+
readonly BackoffSpec: {
|
|
1614
|
+
readonly name: "BackoffSpec";
|
|
1615
|
+
readonly properties: {
|
|
1616
|
+
readonly attributes: {
|
|
1617
|
+
readonly name: "attributes";
|
|
1618
|
+
readonly defaultValue: [];
|
|
1619
|
+
};
|
|
1620
|
+
};
|
|
1621
|
+
readonly superTypes: [];
|
|
1622
|
+
};
|
|
1623
|
+
readonly BeforeTriggerDefinition: {
|
|
1624
|
+
readonly name: "BeforeTriggerDefinition";
|
|
1625
|
+
readonly properties: {
|
|
1626
|
+
readonly triggers: {
|
|
1627
|
+
readonly name: "triggers";
|
|
1628
|
+
};
|
|
1629
|
+
};
|
|
1630
|
+
readonly superTypes: [];
|
|
1631
|
+
};
|
|
1632
|
+
readonly BinExpr: {
|
|
1633
|
+
readonly name: "BinExpr";
|
|
1634
|
+
readonly properties: {
|
|
1635
|
+
readonly e1: {
|
|
1636
|
+
readonly name: "e1";
|
|
1637
|
+
};
|
|
1638
|
+
readonly e2: {
|
|
1639
|
+
readonly name: "e2";
|
|
1640
|
+
};
|
|
1641
|
+
readonly op: {
|
|
1642
|
+
readonly name: "op";
|
|
1643
|
+
};
|
|
1644
|
+
};
|
|
1645
|
+
readonly superTypes: ["Expr"];
|
|
1646
|
+
};
|
|
1647
|
+
readonly CaseEntry: {
|
|
1648
|
+
readonly name: "CaseEntry";
|
|
1649
|
+
readonly properties: {
|
|
1650
|
+
readonly cond: {
|
|
1651
|
+
readonly name: "cond";
|
|
1652
|
+
};
|
|
1653
|
+
readonly statements: {
|
|
1654
|
+
readonly name: "statements";
|
|
1655
|
+
readonly defaultValue: [];
|
|
1656
|
+
};
|
|
1657
|
+
};
|
|
1658
|
+
readonly superTypes: [];
|
|
1659
|
+
};
|
|
1660
|
+
readonly CatchSpec: {
|
|
1661
|
+
readonly name: "CatchSpec";
|
|
1662
|
+
readonly properties: {
|
|
1663
|
+
readonly handlers: {
|
|
1664
|
+
readonly name: "handlers";
|
|
1665
|
+
readonly defaultValue: [];
|
|
1666
|
+
};
|
|
1667
|
+
};
|
|
1668
|
+
readonly superTypes: [];
|
|
1669
|
+
};
|
|
1670
|
+
readonly CompositeUniqueDefinition: {
|
|
1671
|
+
readonly name: "CompositeUniqueDefinition";
|
|
1672
|
+
readonly properties: {
|
|
1673
|
+
readonly attrs: {
|
|
1674
|
+
readonly name: "attrs";
|
|
1675
|
+
readonly defaultValue: [];
|
|
1676
|
+
};
|
|
1677
|
+
};
|
|
1678
|
+
readonly superTypes: [];
|
|
1679
|
+
};
|
|
1680
|
+
readonly ConditionalFlowStep: {
|
|
1681
|
+
readonly name: "ConditionalFlowStep";
|
|
1682
|
+
readonly properties: {
|
|
1683
|
+
readonly expr: {
|
|
1684
|
+
readonly name: "expr";
|
|
1685
|
+
};
|
|
1686
|
+
readonly next: {
|
|
1687
|
+
readonly name: "next";
|
|
1688
|
+
};
|
|
1689
|
+
};
|
|
1690
|
+
readonly superTypes: [];
|
|
1691
|
+
};
|
|
1692
|
+
readonly CrudMap: {
|
|
1693
|
+
readonly name: "CrudMap";
|
|
1694
|
+
readonly properties: {
|
|
1695
|
+
readonly body: {
|
|
1696
|
+
readonly name: "body";
|
|
1697
|
+
};
|
|
1698
|
+
readonly distinct: {
|
|
1699
|
+
readonly name: "distinct";
|
|
1700
|
+
readonly defaultValue: [];
|
|
1701
|
+
};
|
|
1702
|
+
readonly groupByClause: {
|
|
1703
|
+
readonly name: "groupByClause";
|
|
1704
|
+
};
|
|
1705
|
+
readonly into: {
|
|
1706
|
+
readonly name: "into";
|
|
1707
|
+
};
|
|
1708
|
+
readonly joins: {
|
|
1709
|
+
readonly name: "joins";
|
|
1710
|
+
readonly defaultValue: [];
|
|
1711
|
+
};
|
|
1712
|
+
readonly name: {
|
|
1713
|
+
readonly name: "name";
|
|
1714
|
+
};
|
|
1715
|
+
readonly orderByClause: {
|
|
1716
|
+
readonly name: "orderByClause";
|
|
1717
|
+
};
|
|
1718
|
+
readonly relationships: {
|
|
1719
|
+
readonly name: "relationships";
|
|
1720
|
+
readonly defaultValue: [];
|
|
1721
|
+
};
|
|
1722
|
+
readonly source: {
|
|
1723
|
+
readonly name: "source";
|
|
1724
|
+
};
|
|
1725
|
+
readonly upsert: {
|
|
1726
|
+
readonly name: "upsert";
|
|
1727
|
+
readonly defaultValue: [];
|
|
1728
|
+
};
|
|
1729
|
+
readonly where: {
|
|
1730
|
+
readonly name: "where";
|
|
1731
|
+
};
|
|
1732
|
+
};
|
|
1733
|
+
readonly superTypes: [];
|
|
1734
|
+
};
|
|
1735
|
+
readonly CrudMapBody: {
|
|
1736
|
+
readonly name: "CrudMapBody";
|
|
1737
|
+
readonly properties: {
|
|
1738
|
+
readonly attributes: {
|
|
1739
|
+
readonly name: "attributes";
|
|
1740
|
+
readonly defaultValue: [];
|
|
1741
|
+
};
|
|
1742
|
+
readonly properties: {
|
|
1743
|
+
readonly name: "properties";
|
|
1744
|
+
readonly defaultValue: [];
|
|
1745
|
+
};
|
|
1746
|
+
};
|
|
1747
|
+
readonly superTypes: [];
|
|
1748
|
+
};
|
|
1749
|
+
readonly DecisionDefBody: {
|
|
1750
|
+
readonly name: "DecisionDefBody";
|
|
1751
|
+
readonly properties: {
|
|
1752
|
+
readonly cases: {
|
|
1753
|
+
readonly name: "cases";
|
|
1754
|
+
readonly defaultValue: [];
|
|
1755
|
+
};
|
|
1756
|
+
};
|
|
1757
|
+
readonly superTypes: [];
|
|
1758
|
+
};
|
|
1759
|
+
readonly DecisionDefinition: {
|
|
1760
|
+
readonly name: "DecisionDefinition";
|
|
1761
|
+
readonly properties: {
|
|
1762
|
+
readonly body: {
|
|
1763
|
+
readonly name: "body";
|
|
1764
|
+
};
|
|
1765
|
+
readonly name: {
|
|
1766
|
+
readonly name: "name";
|
|
1767
|
+
};
|
|
1768
|
+
};
|
|
1769
|
+
readonly superTypes: ["Definition"];
|
|
1770
|
+
};
|
|
1771
|
+
readonly Definition: {
|
|
1772
|
+
readonly name: "Definition";
|
|
1773
|
+
readonly properties: {};
|
|
1774
|
+
readonly superTypes: [];
|
|
1775
|
+
};
|
|
1776
|
+
readonly Delete: {
|
|
1777
|
+
readonly name: "Delete";
|
|
1778
|
+
readonly properties: {
|
|
1779
|
+
readonly pattern: {
|
|
1780
|
+
readonly name: "pattern";
|
|
1781
|
+
};
|
|
1782
|
+
};
|
|
1783
|
+
readonly superTypes: [];
|
|
1784
|
+
};
|
|
1785
|
+
readonly DirectiveDefinition: {
|
|
1786
|
+
readonly name: "DirectiveDefinition";
|
|
1787
|
+
readonly properties: {
|
|
1788
|
+
readonly body: {
|
|
1789
|
+
readonly name: "body";
|
|
1790
|
+
};
|
|
1791
|
+
readonly dir: {
|
|
1792
|
+
readonly name: "dir";
|
|
1793
|
+
};
|
|
1794
|
+
readonly name: {
|
|
1795
|
+
readonly name: "name";
|
|
1796
|
+
};
|
|
1797
|
+
};
|
|
1798
|
+
readonly superTypes: ["Definition"];
|
|
1799
|
+
};
|
|
1800
|
+
readonly Else: {
|
|
1801
|
+
readonly name: "Else";
|
|
1802
|
+
readonly properties: {
|
|
1803
|
+
readonly statements: {
|
|
1804
|
+
readonly name: "statements";
|
|
1805
|
+
readonly defaultValue: [];
|
|
1806
|
+
};
|
|
1807
|
+
};
|
|
1808
|
+
readonly superTypes: [];
|
|
1809
|
+
};
|
|
1810
|
+
readonly EntityActionsDefinitions: {
|
|
1811
|
+
readonly name: "EntityActionsDefinitions";
|
|
1812
|
+
readonly properties: {
|
|
1813
|
+
readonly entries: {
|
|
1814
|
+
readonly name: "entries";
|
|
1815
|
+
readonly defaultValue: [];
|
|
1816
|
+
};
|
|
1817
|
+
};
|
|
1818
|
+
readonly superTypes: [];
|
|
1819
|
+
};
|
|
1820
|
+
readonly EntityDefinition: {
|
|
1821
|
+
readonly name: "EntityDefinition";
|
|
1822
|
+
readonly properties: {
|
|
1823
|
+
readonly extends: {
|
|
1824
|
+
readonly name: "extends";
|
|
1825
|
+
};
|
|
1826
|
+
readonly name: {
|
|
1827
|
+
readonly name: "name";
|
|
1828
|
+
};
|
|
1829
|
+
readonly schema: {
|
|
1830
|
+
readonly name: "schema";
|
|
1831
|
+
};
|
|
1832
|
+
};
|
|
1833
|
+
readonly superTypes: ["SchemaDefinition"];
|
|
1834
|
+
};
|
|
1835
|
+
readonly EnumSpec: {
|
|
1836
|
+
readonly name: "EnumSpec";
|
|
1837
|
+
readonly properties: {
|
|
1838
|
+
readonly type: {
|
|
1839
|
+
readonly name: "type";
|
|
1840
|
+
};
|
|
1841
|
+
readonly values: {
|
|
1842
|
+
readonly name: "values";
|
|
1843
|
+
readonly defaultValue: [];
|
|
1844
|
+
};
|
|
1845
|
+
};
|
|
1846
|
+
readonly superTypes: [];
|
|
1847
|
+
};
|
|
1848
|
+
readonly EventDefinition: {
|
|
1849
|
+
readonly name: "EventDefinition";
|
|
1850
|
+
readonly properties: {
|
|
1851
|
+
readonly extends: {
|
|
1852
|
+
readonly name: "extends";
|
|
1853
|
+
};
|
|
1854
|
+
readonly name: {
|
|
1855
|
+
readonly name: "name";
|
|
1856
|
+
};
|
|
1857
|
+
readonly schema: {
|
|
1858
|
+
readonly name: "schema";
|
|
1859
|
+
};
|
|
1860
|
+
};
|
|
1861
|
+
readonly superTypes: ["SchemaDefinition"];
|
|
1862
|
+
};
|
|
1863
|
+
readonly Expr: {
|
|
1864
|
+
readonly name: "Expr";
|
|
1865
|
+
readonly properties: {};
|
|
1866
|
+
readonly superTypes: ["AttributeValueExpression"];
|
|
1867
|
+
};
|
|
1868
|
+
readonly ExtendsClause: {
|
|
1869
|
+
readonly name: "ExtendsClause";
|
|
1870
|
+
readonly properties: {
|
|
1871
|
+
readonly parentName: {
|
|
1872
|
+
readonly name: "parentName";
|
|
1873
|
+
};
|
|
1874
|
+
};
|
|
1875
|
+
readonly superTypes: [];
|
|
1876
|
+
};
|
|
1877
|
+
readonly FlowDefBody: {
|
|
1878
|
+
readonly name: "FlowDefBody";
|
|
1879
|
+
readonly properties: {
|
|
1880
|
+
readonly entries: {
|
|
1881
|
+
readonly name: "entries";
|
|
1882
|
+
readonly defaultValue: [];
|
|
1883
|
+
};
|
|
1884
|
+
};
|
|
1885
|
+
readonly superTypes: [];
|
|
1886
|
+
};
|
|
1887
|
+
readonly FlowDefinition: {
|
|
1888
|
+
readonly name: "FlowDefinition";
|
|
1889
|
+
readonly properties: {
|
|
1890
|
+
readonly body: {
|
|
1891
|
+
readonly name: "body";
|
|
1892
|
+
};
|
|
1893
|
+
readonly name: {
|
|
1894
|
+
readonly name: "name";
|
|
1895
|
+
};
|
|
1896
|
+
};
|
|
1897
|
+
readonly superTypes: ["Definition"];
|
|
1898
|
+
};
|
|
1899
|
+
readonly FlowEntry: {
|
|
1900
|
+
readonly name: "FlowEntry";
|
|
1901
|
+
readonly properties: {
|
|
1902
|
+
readonly cond: {
|
|
1903
|
+
readonly name: "cond";
|
|
1904
|
+
};
|
|
1905
|
+
readonly next: {
|
|
1906
|
+
readonly name: "next";
|
|
1907
|
+
};
|
|
1908
|
+
readonly root: {
|
|
1909
|
+
readonly name: "root";
|
|
1910
|
+
};
|
|
1911
|
+
};
|
|
1912
|
+
readonly superTypes: [];
|
|
1913
|
+
};
|
|
1914
|
+
readonly FlowStepSpec: {
|
|
1915
|
+
readonly name: "FlowStepSpec";
|
|
1916
|
+
readonly properties: {};
|
|
1917
|
+
readonly superTypes: [];
|
|
1918
|
+
};
|
|
1919
|
+
readonly FnCall: {
|
|
1920
|
+
readonly name: "FnCall";
|
|
1921
|
+
readonly properties: {
|
|
1922
|
+
readonly args: {
|
|
1923
|
+
readonly name: "args";
|
|
1924
|
+
readonly defaultValue: [];
|
|
1925
|
+
};
|
|
1926
|
+
readonly name: {
|
|
1927
|
+
readonly name: "name";
|
|
1928
|
+
};
|
|
1929
|
+
};
|
|
1930
|
+
readonly superTypes: [];
|
|
1931
|
+
};
|
|
1932
|
+
readonly ForEach: {
|
|
1933
|
+
readonly name: "ForEach";
|
|
1934
|
+
readonly properties: {
|
|
1935
|
+
readonly src: {
|
|
1936
|
+
readonly name: "src";
|
|
1937
|
+
};
|
|
1938
|
+
readonly statements: {
|
|
1939
|
+
readonly name: "statements";
|
|
1940
|
+
readonly defaultValue: [];
|
|
1941
|
+
};
|
|
1942
|
+
readonly var: {
|
|
1943
|
+
readonly name: "var";
|
|
1944
|
+
};
|
|
1945
|
+
};
|
|
1946
|
+
readonly superTypes: [];
|
|
1947
|
+
};
|
|
1948
|
+
readonly FullTextSearch: {
|
|
1949
|
+
readonly name: "FullTextSearch";
|
|
1950
|
+
readonly properties: {
|
|
1951
|
+
readonly name: {
|
|
1952
|
+
readonly name: "name";
|
|
1953
|
+
};
|
|
1954
|
+
readonly options: {
|
|
1955
|
+
readonly name: "options";
|
|
1956
|
+
};
|
|
1957
|
+
readonly query: {
|
|
1958
|
+
readonly name: "query";
|
|
1959
|
+
};
|
|
1960
|
+
};
|
|
1961
|
+
readonly superTypes: [];
|
|
1962
|
+
};
|
|
1963
|
+
readonly GenericDefBody: {
|
|
1964
|
+
readonly name: "GenericDefBody";
|
|
1965
|
+
readonly properties: {
|
|
1966
|
+
readonly attributes: {
|
|
1967
|
+
readonly name: "attributes";
|
|
1968
|
+
readonly defaultValue: [];
|
|
1969
|
+
};
|
|
1970
|
+
};
|
|
1971
|
+
readonly superTypes: [];
|
|
1972
|
+
};
|
|
1973
|
+
readonly GenericPropertyDef: {
|
|
1974
|
+
readonly name: "GenericPropertyDef";
|
|
1975
|
+
readonly properties: {
|
|
1976
|
+
readonly name: {
|
|
1977
|
+
readonly name: "name";
|
|
1978
|
+
};
|
|
1979
|
+
readonly value: {
|
|
1980
|
+
readonly name: "value";
|
|
1981
|
+
};
|
|
1982
|
+
};
|
|
1983
|
+
readonly superTypes: [];
|
|
1984
|
+
};
|
|
1985
|
+
readonly GlossaryEntryDefinition: {
|
|
1986
|
+
readonly name: "GlossaryEntryDefinition";
|
|
1987
|
+
readonly properties: {
|
|
1988
|
+
readonly body: {
|
|
1989
|
+
readonly name: "body";
|
|
1990
|
+
};
|
|
1991
|
+
readonly glos: {
|
|
1992
|
+
readonly name: "glos";
|
|
1993
|
+
};
|
|
1994
|
+
readonly name: {
|
|
1995
|
+
readonly name: "name";
|
|
1996
|
+
};
|
|
1997
|
+
};
|
|
1998
|
+
readonly superTypes: ["Definition"];
|
|
1999
|
+
};
|
|
2000
|
+
readonly Group: {
|
|
2001
|
+
readonly name: "Group";
|
|
2002
|
+
readonly properties: {
|
|
2003
|
+
readonly ge: {
|
|
2004
|
+
readonly name: "ge";
|
|
2005
|
+
};
|
|
2006
|
+
};
|
|
2007
|
+
readonly superTypes: ["PrimExpr"];
|
|
2008
|
+
};
|
|
2009
|
+
readonly GroupByClause: {
|
|
2010
|
+
readonly name: "GroupByClause";
|
|
2011
|
+
readonly properties: {
|
|
2012
|
+
readonly colNames: {
|
|
2013
|
+
readonly name: "colNames";
|
|
2014
|
+
readonly defaultValue: [];
|
|
2015
|
+
};
|
|
2016
|
+
};
|
|
2017
|
+
readonly superTypes: [];
|
|
2018
|
+
};
|
|
2019
|
+
readonly Handler: {
|
|
2020
|
+
readonly name: "Handler";
|
|
2021
|
+
readonly properties: {
|
|
2022
|
+
readonly except: {
|
|
2023
|
+
readonly name: "except";
|
|
2024
|
+
};
|
|
2025
|
+
readonly stmt: {
|
|
2026
|
+
readonly name: "stmt";
|
|
2027
|
+
};
|
|
2028
|
+
};
|
|
2029
|
+
readonly superTypes: [];
|
|
2030
|
+
};
|
|
2031
|
+
readonly If: {
|
|
2032
|
+
readonly name: "If";
|
|
2033
|
+
readonly properties: {
|
|
2034
|
+
readonly cond: {
|
|
2035
|
+
readonly name: "cond";
|
|
2036
|
+
};
|
|
2037
|
+
readonly else: {
|
|
2038
|
+
readonly name: "else";
|
|
2039
|
+
};
|
|
2040
|
+
readonly statements: {
|
|
2041
|
+
readonly name: "statements";
|
|
2042
|
+
readonly defaultValue: [];
|
|
2043
|
+
};
|
|
2044
|
+
};
|
|
2045
|
+
readonly superTypes: [];
|
|
2046
|
+
};
|
|
2047
|
+
readonly IfWithAlias: {
|
|
2048
|
+
readonly name: "IfWithAlias";
|
|
2049
|
+
readonly properties: {
|
|
2050
|
+
readonly if: {
|
|
2051
|
+
readonly name: "if";
|
|
2052
|
+
};
|
|
2053
|
+
};
|
|
2054
|
+
readonly superTypes: [];
|
|
2055
|
+
};
|
|
2056
|
+
readonly Import: {
|
|
2057
|
+
readonly name: "Import";
|
|
2058
|
+
readonly properties: {
|
|
2059
|
+
readonly name: {
|
|
2060
|
+
readonly name: "name";
|
|
2061
|
+
};
|
|
2062
|
+
readonly path: {
|
|
2063
|
+
readonly name: "path";
|
|
2064
|
+
};
|
|
2065
|
+
};
|
|
2066
|
+
readonly superTypes: [];
|
|
2067
|
+
};
|
|
2068
|
+
readonly JoinSpec: {
|
|
2069
|
+
readonly name: "JoinSpec";
|
|
2070
|
+
readonly properties: {
|
|
2071
|
+
readonly lhs: {
|
|
2072
|
+
readonly name: "lhs";
|
|
2073
|
+
};
|
|
2074
|
+
readonly name: {
|
|
2075
|
+
readonly name: "name";
|
|
2076
|
+
};
|
|
2077
|
+
readonly op: {
|
|
2078
|
+
readonly name: "op";
|
|
2079
|
+
};
|
|
2080
|
+
readonly rhs: {
|
|
2081
|
+
readonly name: "rhs";
|
|
2082
|
+
};
|
|
2083
|
+
readonly type: {
|
|
2084
|
+
readonly name: "type";
|
|
2085
|
+
};
|
|
2086
|
+
};
|
|
2087
|
+
readonly superTypes: [];
|
|
2088
|
+
};
|
|
2089
|
+
readonly KvPair: {
|
|
2090
|
+
readonly name: "KvPair";
|
|
2091
|
+
readonly properties: {
|
|
2092
|
+
readonly key: {
|
|
2093
|
+
readonly name: "key";
|
|
2094
|
+
};
|
|
2095
|
+
readonly value: {
|
|
2096
|
+
readonly name: "value";
|
|
2097
|
+
};
|
|
2098
|
+
};
|
|
2099
|
+
readonly superTypes: [];
|
|
2100
|
+
};
|
|
2101
|
+
readonly KvPairs: {
|
|
2102
|
+
readonly name: "KvPairs";
|
|
2103
|
+
readonly properties: {
|
|
2104
|
+
readonly pairs: {
|
|
2105
|
+
readonly name: "pairs";
|
|
2106
|
+
readonly defaultValue: [];
|
|
2107
|
+
};
|
|
2108
|
+
};
|
|
2109
|
+
readonly superTypes: [];
|
|
2110
|
+
};
|
|
2111
|
+
readonly Literal: {
|
|
2112
|
+
readonly name: "Literal";
|
|
2113
|
+
readonly properties: {
|
|
2114
|
+
readonly array: {
|
|
2115
|
+
readonly name: "array";
|
|
2116
|
+
};
|
|
2117
|
+
readonly asyncFnCall: {
|
|
2118
|
+
readonly name: "asyncFnCall";
|
|
2119
|
+
};
|
|
2120
|
+
readonly bool: {
|
|
2121
|
+
readonly name: "bool";
|
|
2122
|
+
};
|
|
2123
|
+
readonly fnCall: {
|
|
2124
|
+
readonly name: "fnCall";
|
|
2125
|
+
};
|
|
2126
|
+
readonly id: {
|
|
2127
|
+
readonly name: "id";
|
|
2128
|
+
};
|
|
2129
|
+
readonly map: {
|
|
2130
|
+
readonly name: "map";
|
|
2131
|
+
};
|
|
2132
|
+
readonly num: {
|
|
2133
|
+
readonly name: "num";
|
|
2134
|
+
};
|
|
2135
|
+
readonly ref: {
|
|
2136
|
+
readonly name: "ref";
|
|
2137
|
+
};
|
|
2138
|
+
readonly str: {
|
|
2139
|
+
readonly name: "str";
|
|
2140
|
+
};
|
|
2141
|
+
};
|
|
2142
|
+
readonly superTypes: ["PrimExpr"];
|
|
2143
|
+
};
|
|
2144
|
+
readonly MapEntry: {
|
|
2145
|
+
readonly name: "MapEntry";
|
|
2146
|
+
readonly properties: {
|
|
2147
|
+
readonly key: {
|
|
2148
|
+
readonly name: "key";
|
|
2149
|
+
};
|
|
2150
|
+
readonly value: {
|
|
2151
|
+
readonly name: "value";
|
|
2152
|
+
};
|
|
2153
|
+
};
|
|
2154
|
+
readonly superTypes: [];
|
|
2155
|
+
};
|
|
2156
|
+
readonly MapKey: {
|
|
2157
|
+
readonly name: "MapKey";
|
|
2158
|
+
readonly properties: {
|
|
2159
|
+
readonly bool: {
|
|
2160
|
+
readonly name: "bool";
|
|
2161
|
+
};
|
|
2162
|
+
readonly num: {
|
|
2163
|
+
readonly name: "num";
|
|
2164
|
+
};
|
|
2165
|
+
readonly str: {
|
|
2166
|
+
readonly name: "str";
|
|
2167
|
+
};
|
|
2168
|
+
};
|
|
2169
|
+
readonly superTypes: [];
|
|
2170
|
+
};
|
|
2171
|
+
readonly MapLiteral: {
|
|
2172
|
+
readonly name: "MapLiteral";
|
|
2173
|
+
readonly properties: {
|
|
2174
|
+
readonly entries: {
|
|
2175
|
+
readonly name: "entries";
|
|
2176
|
+
readonly defaultValue: [];
|
|
2177
|
+
};
|
|
2178
|
+
};
|
|
2179
|
+
readonly superTypes: [];
|
|
2180
|
+
};
|
|
2181
|
+
readonly MetaDefinition: {
|
|
2182
|
+
readonly name: "MetaDefinition";
|
|
2183
|
+
readonly properties: {
|
|
2184
|
+
readonly spec: {
|
|
2185
|
+
readonly name: "spec";
|
|
2186
|
+
};
|
|
2187
|
+
};
|
|
2188
|
+
readonly superTypes: [];
|
|
2189
|
+
};
|
|
2190
|
+
readonly ModuleDefinition: {
|
|
2191
|
+
readonly name: "ModuleDefinition";
|
|
2192
|
+
readonly properties: {
|
|
2193
|
+
readonly defs: {
|
|
2194
|
+
readonly name: "defs";
|
|
2195
|
+
readonly defaultValue: [];
|
|
2196
|
+
};
|
|
2197
|
+
readonly imports: {
|
|
2198
|
+
readonly name: "imports";
|
|
2199
|
+
readonly defaultValue: [];
|
|
2200
|
+
};
|
|
2201
|
+
readonly name: {
|
|
2202
|
+
readonly name: "name";
|
|
2203
|
+
};
|
|
2204
|
+
};
|
|
2205
|
+
readonly superTypes: [];
|
|
2206
|
+
};
|
|
2207
|
+
readonly NegExpr: {
|
|
2208
|
+
readonly name: "NegExpr";
|
|
2209
|
+
readonly properties: {
|
|
2210
|
+
readonly ne: {
|
|
2211
|
+
readonly name: "ne";
|
|
2212
|
+
};
|
|
2213
|
+
};
|
|
2214
|
+
readonly superTypes: ["PrimExpr"];
|
|
2215
|
+
};
|
|
2216
|
+
readonly NodeDefinition: {
|
|
2217
|
+
readonly name: "NodeDefinition";
|
|
2218
|
+
readonly properties: {
|
|
2219
|
+
readonly alias: {
|
|
2220
|
+
readonly name: "alias";
|
|
2221
|
+
};
|
|
2222
|
+
readonly name: {
|
|
2223
|
+
readonly name: "name";
|
|
2224
|
+
};
|
|
2225
|
+
};
|
|
2226
|
+
readonly superTypes: [];
|
|
2227
|
+
};
|
|
2228
|
+
readonly NotExpr: {
|
|
2229
|
+
readonly name: "NotExpr";
|
|
2230
|
+
readonly properties: {
|
|
2231
|
+
readonly ne: {
|
|
2232
|
+
readonly name: "ne";
|
|
2233
|
+
};
|
|
2234
|
+
};
|
|
2235
|
+
readonly superTypes: ["PrimExpr"];
|
|
2236
|
+
};
|
|
2237
|
+
readonly OneOfSpec: {
|
|
2238
|
+
readonly name: "OneOfSpec";
|
|
2239
|
+
readonly properties: {
|
|
2240
|
+
readonly ref: {
|
|
2241
|
+
readonly name: "ref";
|
|
2242
|
+
};
|
|
2243
|
+
};
|
|
2244
|
+
readonly superTypes: [];
|
|
2245
|
+
};
|
|
2246
|
+
readonly OrderByClause: {
|
|
2247
|
+
readonly name: "OrderByClause";
|
|
2248
|
+
readonly properties: {
|
|
2249
|
+
readonly colNames: {
|
|
2250
|
+
readonly name: "colNames";
|
|
2251
|
+
readonly defaultValue: [];
|
|
2252
|
+
};
|
|
2253
|
+
readonly order: {
|
|
2254
|
+
readonly name: "order";
|
|
2255
|
+
};
|
|
2256
|
+
};
|
|
2257
|
+
readonly superTypes: [];
|
|
2258
|
+
};
|
|
2259
|
+
readonly Pattern: {
|
|
2260
|
+
readonly name: "Pattern";
|
|
2261
|
+
readonly properties: {
|
|
2262
|
+
readonly crudMap: {
|
|
2263
|
+
readonly name: "crudMap";
|
|
2264
|
+
};
|
|
2265
|
+
readonly delete: {
|
|
2266
|
+
readonly name: "delete";
|
|
2267
|
+
};
|
|
2268
|
+
readonly expr: {
|
|
2269
|
+
readonly name: "expr";
|
|
2270
|
+
};
|
|
2271
|
+
readonly forEach: {
|
|
2272
|
+
readonly name: "forEach";
|
|
2273
|
+
};
|
|
2274
|
+
readonly fullTextSearch: {
|
|
2275
|
+
readonly name: "fullTextSearch";
|
|
2276
|
+
};
|
|
2277
|
+
readonly if: {
|
|
2278
|
+
readonly name: "if";
|
|
2279
|
+
};
|
|
2280
|
+
readonly ifWithAlias: {
|
|
2281
|
+
readonly name: "ifWithAlias";
|
|
2282
|
+
};
|
|
2283
|
+
readonly purge: {
|
|
2284
|
+
readonly name: "purge";
|
|
2285
|
+
};
|
|
2286
|
+
readonly return: {
|
|
2287
|
+
readonly name: "return";
|
|
2288
|
+
};
|
|
2289
|
+
readonly throwError: {
|
|
2290
|
+
readonly name: "throwError";
|
|
2291
|
+
};
|
|
2292
|
+
};
|
|
2293
|
+
readonly superTypes: [];
|
|
2294
|
+
};
|
|
2295
|
+
readonly PrePostTriggerDefinition: {
|
|
2296
|
+
readonly name: "PrePostTriggerDefinition";
|
|
2297
|
+
readonly properties: {
|
|
2298
|
+
readonly after: {
|
|
2299
|
+
readonly name: "after";
|
|
2300
|
+
};
|
|
2301
|
+
readonly before: {
|
|
2302
|
+
readonly name: "before";
|
|
2303
|
+
};
|
|
2304
|
+
};
|
|
2305
|
+
readonly superTypes: [];
|
|
2306
|
+
};
|
|
2307
|
+
readonly PrimExpr: {
|
|
2308
|
+
readonly name: "PrimExpr";
|
|
2309
|
+
readonly properties: {};
|
|
2310
|
+
readonly superTypes: ["Expr"];
|
|
2311
|
+
};
|
|
2312
|
+
readonly PropertyDefinition: {
|
|
2313
|
+
readonly name: "PropertyDefinition";
|
|
2314
|
+
readonly properties: {
|
|
2315
|
+
readonly name: {
|
|
2316
|
+
readonly name: "name";
|
|
2317
|
+
};
|
|
2318
|
+
readonly value: {
|
|
2319
|
+
readonly name: "value";
|
|
2320
|
+
};
|
|
2321
|
+
};
|
|
2322
|
+
readonly superTypes: [];
|
|
2323
|
+
};
|
|
2324
|
+
readonly PublicAgentDefinition: {
|
|
2325
|
+
readonly name: "PublicAgentDefinition";
|
|
2326
|
+
readonly properties: {
|
|
2327
|
+
readonly def: {
|
|
2328
|
+
readonly name: "def";
|
|
2329
|
+
};
|
|
2330
|
+
};
|
|
2331
|
+
readonly superTypes: ["Definition"];
|
|
2332
|
+
};
|
|
2333
|
+
readonly PublicEventDefinition: {
|
|
2334
|
+
readonly name: "PublicEventDefinition";
|
|
2335
|
+
readonly properties: {
|
|
2336
|
+
readonly def: {
|
|
2337
|
+
readonly name: "def";
|
|
2338
|
+
};
|
|
2339
|
+
};
|
|
2340
|
+
readonly superTypes: ["SchemaDefinition"];
|
|
2341
|
+
};
|
|
2342
|
+
readonly PublicWorkflowDefinition: {
|
|
2343
|
+
readonly name: "PublicWorkflowDefinition";
|
|
2344
|
+
readonly properties: {
|
|
2345
|
+
readonly def: {
|
|
2346
|
+
readonly name: "def";
|
|
2347
|
+
};
|
|
2348
|
+
};
|
|
2349
|
+
readonly superTypes: ["Definition"];
|
|
2350
|
+
};
|
|
2351
|
+
readonly Purge: {
|
|
2352
|
+
readonly name: "Purge";
|
|
2353
|
+
readonly properties: {
|
|
2354
|
+
readonly pattern: {
|
|
2355
|
+
readonly name: "pattern";
|
|
2356
|
+
};
|
|
2357
|
+
};
|
|
2358
|
+
readonly superTypes: [];
|
|
2359
|
+
};
|
|
2360
|
+
readonly RbacAllowSpec: {
|
|
2361
|
+
readonly name: "RbacAllowSpec";
|
|
2362
|
+
readonly properties: {
|
|
2363
|
+
readonly oprs: {
|
|
2364
|
+
readonly name: "oprs";
|
|
2365
|
+
readonly defaultValue: [];
|
|
2366
|
+
};
|
|
2367
|
+
};
|
|
2368
|
+
readonly superTypes: [];
|
|
2369
|
+
};
|
|
2370
|
+
readonly RbacExpressionSpec: {
|
|
2371
|
+
readonly name: "RbacExpressionSpec";
|
|
2372
|
+
readonly properties: {
|
|
2373
|
+
readonly lhs: {
|
|
2374
|
+
readonly name: "lhs";
|
|
2375
|
+
};
|
|
2376
|
+
readonly rhs: {
|
|
2377
|
+
readonly name: "rhs";
|
|
2378
|
+
};
|
|
2379
|
+
};
|
|
2380
|
+
readonly superTypes: [];
|
|
2381
|
+
};
|
|
2382
|
+
readonly RbacOpr: {
|
|
2383
|
+
readonly name: "RbacOpr";
|
|
2384
|
+
readonly properties: {
|
|
2385
|
+
readonly value: {
|
|
2386
|
+
readonly name: "value";
|
|
2387
|
+
};
|
|
2388
|
+
};
|
|
2389
|
+
readonly superTypes: [];
|
|
2390
|
+
};
|
|
2391
|
+
readonly RbacRolesSpec: {
|
|
2392
|
+
readonly name: "RbacRolesSpec";
|
|
2393
|
+
readonly properties: {
|
|
2394
|
+
readonly roles: {
|
|
2395
|
+
readonly name: "roles";
|
|
2396
|
+
readonly defaultValue: [];
|
|
2397
|
+
};
|
|
2398
|
+
};
|
|
2399
|
+
readonly superTypes: [];
|
|
2400
|
+
};
|
|
2401
|
+
readonly RbacSpecDefinition: {
|
|
2402
|
+
readonly name: "RbacSpecDefinition";
|
|
2403
|
+
readonly properties: {
|
|
2404
|
+
readonly specEntries: {
|
|
2405
|
+
readonly name: "specEntries";
|
|
2406
|
+
readonly defaultValue: [];
|
|
2407
|
+
};
|
|
2408
|
+
};
|
|
2409
|
+
readonly superTypes: [];
|
|
2410
|
+
};
|
|
2411
|
+
readonly RbacSpecEntries: {
|
|
2412
|
+
readonly name: "RbacSpecEntries";
|
|
2413
|
+
readonly properties: {
|
|
2414
|
+
readonly entries: {
|
|
2415
|
+
readonly name: "entries";
|
|
2416
|
+
readonly defaultValue: [];
|
|
2417
|
+
};
|
|
2418
|
+
};
|
|
2419
|
+
readonly superTypes: [];
|
|
2420
|
+
};
|
|
2421
|
+
readonly RbacSpecEntry: {
|
|
2422
|
+
readonly name: "RbacSpecEntry";
|
|
2423
|
+
readonly properties: {
|
|
2424
|
+
readonly allow: {
|
|
2425
|
+
readonly name: "allow";
|
|
2426
|
+
};
|
|
2427
|
+
readonly expr: {
|
|
2428
|
+
readonly name: "expr";
|
|
2429
|
+
};
|
|
2430
|
+
readonly role: {
|
|
2431
|
+
readonly name: "role";
|
|
2432
|
+
};
|
|
2433
|
+
};
|
|
2434
|
+
readonly superTypes: [];
|
|
2435
|
+
};
|
|
2436
|
+
readonly RecordDefinition: {
|
|
2437
|
+
readonly name: "RecordDefinition";
|
|
2438
|
+
readonly properties: {
|
|
2439
|
+
readonly extends: {
|
|
2440
|
+
readonly name: "extends";
|
|
2441
|
+
};
|
|
2442
|
+
readonly name: {
|
|
2443
|
+
readonly name: "name";
|
|
2444
|
+
};
|
|
2445
|
+
readonly schema: {
|
|
2446
|
+
readonly name: "schema";
|
|
2447
|
+
};
|
|
2448
|
+
};
|
|
2449
|
+
readonly superTypes: ["SchemaDefinition"];
|
|
2450
|
+
};
|
|
2451
|
+
readonly RecordExtraDefinition: {
|
|
2452
|
+
readonly name: "RecordExtraDefinition";
|
|
2453
|
+
readonly properties: {
|
|
2454
|
+
readonly actions: {
|
|
2455
|
+
readonly name: "actions";
|
|
2456
|
+
};
|
|
2457
|
+
readonly meta: {
|
|
2458
|
+
readonly name: "meta";
|
|
2459
|
+
};
|
|
2460
|
+
readonly prePost: {
|
|
2461
|
+
readonly name: "prePost";
|
|
2462
|
+
};
|
|
2463
|
+
readonly rbacSpec: {
|
|
2464
|
+
readonly name: "rbacSpec";
|
|
2465
|
+
};
|
|
2466
|
+
readonly uq: {
|
|
2467
|
+
readonly name: "uq";
|
|
2468
|
+
};
|
|
2469
|
+
};
|
|
2470
|
+
readonly superTypes: [];
|
|
2471
|
+
};
|
|
2472
|
+
readonly RecordSchemaDefinition: {
|
|
2473
|
+
readonly name: "RecordSchemaDefinition";
|
|
2474
|
+
readonly properties: {
|
|
2475
|
+
readonly attributes: {
|
|
2476
|
+
readonly name: "attributes";
|
|
2477
|
+
readonly defaultValue: [];
|
|
2478
|
+
};
|
|
2479
|
+
readonly extras: {
|
|
2480
|
+
readonly name: "extras";
|
|
2481
|
+
readonly defaultValue: [];
|
|
2482
|
+
};
|
|
2483
|
+
};
|
|
2484
|
+
readonly superTypes: [];
|
|
2485
|
+
};
|
|
2486
|
+
readonly RefSpec: {
|
|
2487
|
+
readonly name: "RefSpec";
|
|
2488
|
+
readonly properties: {
|
|
2489
|
+
readonly ref: {
|
|
2490
|
+
readonly name: "ref";
|
|
2491
|
+
};
|
|
2492
|
+
readonly type: {
|
|
2493
|
+
readonly name: "type";
|
|
2494
|
+
};
|
|
2495
|
+
};
|
|
2496
|
+
readonly superTypes: [];
|
|
2497
|
+
};
|
|
2498
|
+
readonly RelNodes: {
|
|
2499
|
+
readonly name: "RelNodes";
|
|
2500
|
+
readonly properties: {
|
|
2501
|
+
readonly node1: {
|
|
2502
|
+
readonly name: "node1";
|
|
2503
|
+
};
|
|
2504
|
+
readonly node2: {
|
|
2505
|
+
readonly name: "node2";
|
|
2506
|
+
};
|
|
2507
|
+
};
|
|
2508
|
+
readonly superTypes: [];
|
|
2509
|
+
};
|
|
2510
|
+
readonly RelationshipDefinition: {
|
|
2511
|
+
readonly name: "RelationshipDefinition";
|
|
2512
|
+
readonly properties: {
|
|
2513
|
+
readonly name: {
|
|
2514
|
+
readonly name: "name";
|
|
2515
|
+
};
|
|
2516
|
+
readonly nodes: {
|
|
2517
|
+
readonly name: "nodes";
|
|
2518
|
+
};
|
|
2519
|
+
readonly properties: {
|
|
2520
|
+
readonly name: "properties";
|
|
2521
|
+
readonly defaultValue: [];
|
|
2522
|
+
};
|
|
2523
|
+
readonly schema: {
|
|
2524
|
+
readonly name: "schema";
|
|
2525
|
+
};
|
|
2526
|
+
readonly type: {
|
|
2527
|
+
readonly name: "type";
|
|
2528
|
+
};
|
|
2529
|
+
};
|
|
2530
|
+
readonly superTypes: ["Definition"];
|
|
2531
|
+
};
|
|
2532
|
+
readonly RelationshipPattern: {
|
|
2533
|
+
readonly name: "RelationshipPattern";
|
|
2534
|
+
readonly properties: {
|
|
2535
|
+
readonly name: {
|
|
2536
|
+
readonly name: "name";
|
|
2537
|
+
};
|
|
2538
|
+
readonly pattern: {
|
|
2539
|
+
readonly name: "pattern";
|
|
2540
|
+
};
|
|
2541
|
+
};
|
|
2542
|
+
readonly superTypes: [];
|
|
2543
|
+
};
|
|
2544
|
+
readonly ResolverDefinition: {
|
|
2545
|
+
readonly name: "ResolverDefinition";
|
|
2546
|
+
readonly properties: {
|
|
2547
|
+
readonly methods: {
|
|
2548
|
+
readonly name: "methods";
|
|
2549
|
+
readonly defaultValue: [];
|
|
2550
|
+
};
|
|
2551
|
+
readonly name: {
|
|
2552
|
+
readonly name: "name";
|
|
2553
|
+
};
|
|
2554
|
+
readonly paths: {
|
|
2555
|
+
readonly name: "paths";
|
|
2556
|
+
readonly defaultValue: [];
|
|
2557
|
+
};
|
|
2558
|
+
};
|
|
2559
|
+
readonly superTypes: ["Definition"];
|
|
2560
|
+
};
|
|
2561
|
+
readonly ResolverFnName: {
|
|
2562
|
+
readonly name: "ResolverFnName";
|
|
2563
|
+
readonly properties: {
|
|
2564
|
+
readonly name: {
|
|
2565
|
+
readonly name: "name";
|
|
2566
|
+
};
|
|
2567
|
+
};
|
|
2568
|
+
readonly superTypes: [];
|
|
2569
|
+
};
|
|
2570
|
+
readonly ResolverMethodName: {
|
|
2571
|
+
readonly name: "ResolverMethodName";
|
|
2572
|
+
readonly properties: {
|
|
2573
|
+
readonly name: {
|
|
2574
|
+
readonly name: "name";
|
|
2575
|
+
};
|
|
2576
|
+
};
|
|
2577
|
+
readonly superTypes: [];
|
|
2578
|
+
};
|
|
2579
|
+
readonly ResolverMethodSpec: {
|
|
2580
|
+
readonly name: "ResolverMethodSpec";
|
|
2581
|
+
readonly properties: {
|
|
2582
|
+
readonly fn: {
|
|
2583
|
+
readonly name: "fn";
|
|
2584
|
+
};
|
|
2585
|
+
readonly key: {
|
|
2586
|
+
readonly name: "key";
|
|
2587
|
+
};
|
|
2588
|
+
};
|
|
2589
|
+
readonly superTypes: [];
|
|
2590
|
+
};
|
|
2591
|
+
readonly RetryDefinition: {
|
|
2592
|
+
readonly name: "RetryDefinition";
|
|
2593
|
+
readonly properties: {
|
|
2594
|
+
readonly attempts: {
|
|
2595
|
+
readonly name: "attempts";
|
|
2596
|
+
};
|
|
2597
|
+
readonly backoff: {
|
|
2598
|
+
readonly name: "backoff";
|
|
2599
|
+
};
|
|
2600
|
+
readonly name: {
|
|
2601
|
+
readonly name: "name";
|
|
2602
|
+
};
|
|
2603
|
+
};
|
|
2604
|
+
readonly superTypes: ["Definition"];
|
|
2605
|
+
};
|
|
2606
|
+
readonly Return: {
|
|
2607
|
+
readonly name: "Return";
|
|
2608
|
+
readonly properties: {
|
|
2609
|
+
readonly pattern: {
|
|
2610
|
+
readonly name: "pattern";
|
|
2611
|
+
};
|
|
2612
|
+
};
|
|
2613
|
+
readonly superTypes: [];
|
|
2614
|
+
};
|
|
2615
|
+
readonly RuntimeHint: {
|
|
2616
|
+
readonly name: "RuntimeHint";
|
|
2617
|
+
readonly properties: {
|
|
2618
|
+
readonly aliasSpec: {
|
|
2619
|
+
readonly name: "aliasSpec";
|
|
2620
|
+
};
|
|
2621
|
+
readonly catchSpec: {
|
|
2622
|
+
readonly name: "catchSpec";
|
|
2623
|
+
};
|
|
2624
|
+
readonly thenSpec: {
|
|
2625
|
+
readonly name: "thenSpec";
|
|
2626
|
+
};
|
|
2627
|
+
};
|
|
2628
|
+
readonly superTypes: [];
|
|
2629
|
+
};
|
|
2630
|
+
readonly ScenarioDefinition: {
|
|
2631
|
+
readonly name: "ScenarioDefinition";
|
|
2632
|
+
readonly properties: {
|
|
2633
|
+
readonly body: {
|
|
2634
|
+
readonly name: "body";
|
|
2635
|
+
};
|
|
2636
|
+
readonly name: {
|
|
2637
|
+
readonly name: "name";
|
|
2638
|
+
};
|
|
2639
|
+
readonly scn: {
|
|
2640
|
+
readonly name: "scn";
|
|
2641
|
+
};
|
|
2642
|
+
};
|
|
2643
|
+
readonly superTypes: ["Definition"];
|
|
2644
|
+
};
|
|
2645
|
+
readonly SchemaDefinition: {
|
|
2646
|
+
readonly name: "SchemaDefinition";
|
|
2647
|
+
readonly properties: {};
|
|
2648
|
+
readonly superTypes: ["Definition"];
|
|
2649
|
+
};
|
|
2650
|
+
readonly SelectIntoEntry: {
|
|
2651
|
+
readonly name: "SelectIntoEntry";
|
|
2652
|
+
readonly properties: {
|
|
2653
|
+
readonly aggregate: {
|
|
2654
|
+
readonly name: "aggregate";
|
|
2655
|
+
};
|
|
2656
|
+
readonly alias: {
|
|
2657
|
+
readonly name: "alias";
|
|
2658
|
+
};
|
|
2659
|
+
readonly attribute: {
|
|
2660
|
+
readonly name: "attribute";
|
|
2661
|
+
};
|
|
2662
|
+
};
|
|
2663
|
+
readonly superTypes: [];
|
|
2664
|
+
};
|
|
2665
|
+
readonly SelectIntoSpec: {
|
|
2666
|
+
readonly name: "SelectIntoSpec";
|
|
2667
|
+
readonly properties: {
|
|
2668
|
+
readonly entries: {
|
|
2669
|
+
readonly name: "entries";
|
|
2670
|
+
readonly defaultValue: [];
|
|
2671
|
+
};
|
|
2672
|
+
};
|
|
2673
|
+
readonly superTypes: [];
|
|
2674
|
+
};
|
|
2675
|
+
readonly SetAttribute: {
|
|
2676
|
+
readonly name: "SetAttribute";
|
|
2677
|
+
readonly properties: {
|
|
2678
|
+
readonly aggregate: {
|
|
2679
|
+
readonly name: "aggregate";
|
|
2680
|
+
};
|
|
2681
|
+
readonly name: {
|
|
2682
|
+
readonly name: "name";
|
|
2683
|
+
};
|
|
2684
|
+
readonly op: {
|
|
2685
|
+
readonly name: "op";
|
|
2686
|
+
};
|
|
2687
|
+
readonly value: {
|
|
2688
|
+
readonly name: "value";
|
|
2689
|
+
};
|
|
2690
|
+
};
|
|
2691
|
+
readonly superTypes: [];
|
|
2692
|
+
};
|
|
2693
|
+
readonly StandaloneStatement: {
|
|
2694
|
+
readonly name: "StandaloneStatement";
|
|
2695
|
+
readonly properties: {
|
|
2696
|
+
readonly stmt: {
|
|
2697
|
+
readonly name: "stmt";
|
|
2698
|
+
};
|
|
2699
|
+
};
|
|
2700
|
+
readonly superTypes: ["Definition"];
|
|
2701
|
+
};
|
|
2702
|
+
readonly Statement: {
|
|
2703
|
+
readonly name: "Statement";
|
|
2704
|
+
readonly properties: {
|
|
2705
|
+
readonly hints: {
|
|
2706
|
+
readonly name: "hints";
|
|
2707
|
+
readonly defaultValue: [];
|
|
2708
|
+
};
|
|
2709
|
+
readonly pattern: {
|
|
2710
|
+
readonly name: "pattern";
|
|
2711
|
+
};
|
|
2712
|
+
};
|
|
2713
|
+
readonly superTypes: ["FlowStepSpec"];
|
|
2714
|
+
};
|
|
2715
|
+
readonly ThenSpec: {
|
|
2716
|
+
readonly name: "ThenSpec";
|
|
2717
|
+
readonly properties: {
|
|
2718
|
+
readonly statements: {
|
|
2719
|
+
readonly name: "statements";
|
|
2720
|
+
readonly defaultValue: [];
|
|
2721
|
+
};
|
|
2722
|
+
};
|
|
2723
|
+
readonly superTypes: [];
|
|
2724
|
+
};
|
|
2725
|
+
readonly ThrowError: {
|
|
2726
|
+
readonly name: "ThrowError";
|
|
2727
|
+
readonly properties: {
|
|
2728
|
+
readonly reason: {
|
|
2729
|
+
readonly name: "reason";
|
|
2730
|
+
};
|
|
2731
|
+
};
|
|
2732
|
+
readonly superTypes: [];
|
|
2733
|
+
};
|
|
2734
|
+
readonly TriggerDefinition: {
|
|
2735
|
+
readonly name: "TriggerDefinition";
|
|
2736
|
+
readonly properties: {
|
|
2737
|
+
readonly entries: {
|
|
2738
|
+
readonly name: "entries";
|
|
2739
|
+
readonly defaultValue: [];
|
|
2740
|
+
};
|
|
2741
|
+
};
|
|
2742
|
+
readonly superTypes: [];
|
|
2743
|
+
};
|
|
2744
|
+
readonly TriggerEntry: {
|
|
2745
|
+
readonly name: "TriggerEntry";
|
|
2746
|
+
readonly properties: {
|
|
2747
|
+
readonly async: {
|
|
2748
|
+
readonly name: "async";
|
|
2749
|
+
};
|
|
2750
|
+
readonly event: {
|
|
2751
|
+
readonly name: "event";
|
|
2752
|
+
};
|
|
2753
|
+
readonly on: {
|
|
2754
|
+
readonly name: "on";
|
|
2755
|
+
};
|
|
2756
|
+
};
|
|
2757
|
+
readonly superTypes: [];
|
|
2758
|
+
};
|
|
2759
|
+
readonly WhereSpec: {
|
|
2760
|
+
readonly name: "WhereSpec";
|
|
2761
|
+
readonly properties: {
|
|
2762
|
+
readonly clauses: {
|
|
2763
|
+
readonly name: "clauses";
|
|
2764
|
+
readonly defaultValue: [];
|
|
2765
|
+
};
|
|
2766
|
+
};
|
|
2767
|
+
readonly superTypes: [];
|
|
2768
|
+
};
|
|
2769
|
+
readonly WhereSpecClause: {
|
|
2770
|
+
readonly name: "WhereSpecClause";
|
|
2771
|
+
readonly properties: {
|
|
2772
|
+
readonly lhs: {
|
|
2773
|
+
readonly name: "lhs";
|
|
2774
|
+
};
|
|
2775
|
+
readonly op: {
|
|
2776
|
+
readonly name: "op";
|
|
2777
|
+
};
|
|
2778
|
+
readonly rhs: {
|
|
2779
|
+
readonly name: "rhs";
|
|
2780
|
+
};
|
|
2781
|
+
};
|
|
2782
|
+
readonly superTypes: [];
|
|
2783
|
+
};
|
|
2784
|
+
readonly WorkflowDefinition: {
|
|
2785
|
+
readonly name: "WorkflowDefinition";
|
|
2786
|
+
readonly properties: {
|
|
2787
|
+
readonly directives: {
|
|
2788
|
+
readonly name: "directives";
|
|
2789
|
+
};
|
|
2790
|
+
readonly header: {
|
|
2791
|
+
readonly name: "header";
|
|
2792
|
+
};
|
|
2793
|
+
readonly name: {
|
|
2794
|
+
readonly name: "name";
|
|
2795
|
+
};
|
|
2796
|
+
readonly statements: {
|
|
2797
|
+
readonly name: "statements";
|
|
2798
|
+
readonly defaultValue: [];
|
|
2799
|
+
};
|
|
2800
|
+
};
|
|
2801
|
+
readonly superTypes: ["Definition"];
|
|
2802
|
+
};
|
|
2803
|
+
readonly WorkflowDirectiveEntry: {
|
|
2804
|
+
readonly name: "WorkflowDirectiveEntry";
|
|
2805
|
+
readonly properties: {
|
|
2806
|
+
readonly tag: {
|
|
2807
|
+
readonly name: "tag";
|
|
2808
|
+
};
|
|
2809
|
+
readonly value: {
|
|
2810
|
+
readonly name: "value";
|
|
2811
|
+
};
|
|
2812
|
+
};
|
|
2813
|
+
readonly superTypes: [];
|
|
2814
|
+
};
|
|
2815
|
+
readonly WorkflowDirectives: {
|
|
2816
|
+
readonly name: "WorkflowDirectives";
|
|
2817
|
+
readonly properties: {
|
|
2818
|
+
readonly entries: {
|
|
2819
|
+
readonly name: "entries";
|
|
2820
|
+
readonly defaultValue: [];
|
|
2821
|
+
};
|
|
2822
|
+
};
|
|
2823
|
+
readonly superTypes: [];
|
|
2824
|
+
};
|
|
2825
|
+
readonly WorkflowHeader: {
|
|
2826
|
+
readonly name: "WorkflowHeader";
|
|
2827
|
+
readonly properties: {
|
|
2828
|
+
readonly name: {
|
|
2829
|
+
readonly name: "name";
|
|
2830
|
+
};
|
|
2831
|
+
readonly prefix: {
|
|
2832
|
+
readonly name: "prefix";
|
|
2833
|
+
};
|
|
2834
|
+
readonly tag: {
|
|
2835
|
+
readonly name: "tag";
|
|
2836
|
+
};
|
|
2837
|
+
};
|
|
2838
|
+
readonly superTypes: [];
|
|
2839
|
+
};
|
|
2840
|
+
};
|
|
995
2841
|
}
|
|
996
2842
|
export declare const reflection: AgentlangAstReflection;
|
|
997
2843
|
//# sourceMappingURL=ast.d.ts.map
|