@domainlang/language 0.1.81
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/README.md +32 -0
- package/out/ast-augmentation.d.ts +6 -0
- package/out/ast-augmentation.js +2 -0
- package/out/ast-augmentation.js.map +1 -0
- package/out/domain-lang-module.d.ts +55 -0
- package/out/domain-lang-module.js +59 -0
- package/out/domain-lang-module.js.map +1 -0
- package/out/generated/ast.d.ts +770 -0
- package/out/generated/ast.js +565 -0
- package/out/generated/ast.js.map +1 -0
- package/out/generated/grammar.d.ts +6 -0
- package/out/generated/grammar.js +2502 -0
- package/out/generated/grammar.js.map +1 -0
- package/out/generated/module.d.ts +13 -0
- package/out/generated/module.js +21 -0
- package/out/generated/module.js.map +1 -0
- package/out/index.d.ts +13 -0
- package/out/index.js +17 -0
- package/out/index.js.map +1 -0
- package/out/lsp/domain-lang-completion.d.ts +37 -0
- package/out/lsp/domain-lang-completion.js +452 -0
- package/out/lsp/domain-lang-completion.js.map +1 -0
- package/out/lsp/domain-lang-formatter.d.ts +15 -0
- package/out/lsp/domain-lang-formatter.js +43 -0
- package/out/lsp/domain-lang-formatter.js.map +1 -0
- package/out/lsp/domain-lang-naming.d.ts +34 -0
- package/out/lsp/domain-lang-naming.js +49 -0
- package/out/lsp/domain-lang-naming.js.map +1 -0
- package/out/lsp/domain-lang-scope.d.ts +59 -0
- package/out/lsp/domain-lang-scope.js +102 -0
- package/out/lsp/domain-lang-scope.js.map +1 -0
- package/out/lsp/hover/ddd-pattern-explanations.d.ts +50 -0
- package/out/lsp/hover/ddd-pattern-explanations.js +196 -0
- package/out/lsp/hover/ddd-pattern-explanations.js.map +1 -0
- package/out/lsp/hover/domain-lang-hover.d.ts +19 -0
- package/out/lsp/hover/domain-lang-hover.js +306 -0
- package/out/lsp/hover/domain-lang-hover.js.map +1 -0
- package/out/lsp/hover/domain-lang-keywords.d.ts +13 -0
- package/out/lsp/hover/domain-lang-keywords.js +47 -0
- package/out/lsp/hover/domain-lang-keywords.js.map +1 -0
- package/out/main-browser.d.ts +1 -0
- package/out/main-browser.js +11 -0
- package/out/main-browser.js.map +1 -0
- package/out/main.d.ts +1 -0
- package/out/main.js +74 -0
- package/out/main.js.map +1 -0
- package/out/sdk/ast-augmentation.d.ts +136 -0
- package/out/sdk/ast-augmentation.js +62 -0
- package/out/sdk/ast-augmentation.js.map +1 -0
- package/out/sdk/index.d.ts +94 -0
- package/out/sdk/index.js +97 -0
- package/out/sdk/index.js.map +1 -0
- package/out/sdk/indexes.d.ts +16 -0
- package/out/sdk/indexes.js +97 -0
- package/out/sdk/indexes.js.map +1 -0
- package/out/sdk/loader-node.d.ts +47 -0
- package/out/sdk/loader-node.js +104 -0
- package/out/sdk/loader-node.js.map +1 -0
- package/out/sdk/loader.d.ts +49 -0
- package/out/sdk/loader.js +85 -0
- package/out/sdk/loader.js.map +1 -0
- package/out/sdk/patterns.d.ts +93 -0
- package/out/sdk/patterns.js +123 -0
- package/out/sdk/patterns.js.map +1 -0
- package/out/sdk/query.d.ts +90 -0
- package/out/sdk/query.js +679 -0
- package/out/sdk/query.js.map +1 -0
- package/out/sdk/resolution.d.ts +52 -0
- package/out/sdk/resolution.js +68 -0
- package/out/sdk/resolution.js.map +1 -0
- package/out/sdk/types.d.ts +301 -0
- package/out/sdk/types.js +8 -0
- package/out/sdk/types.js.map +1 -0
- package/out/services/dependency-analyzer.d.ts +94 -0
- package/out/services/dependency-analyzer.js +279 -0
- package/out/services/dependency-analyzer.js.map +1 -0
- package/out/services/dependency-resolver.d.ts +123 -0
- package/out/services/dependency-resolver.js +252 -0
- package/out/services/dependency-resolver.js.map +1 -0
- package/out/services/git-url-resolver.browser.d.ts +18 -0
- package/out/services/git-url-resolver.browser.js +15 -0
- package/out/services/git-url-resolver.browser.js.map +1 -0
- package/out/services/git-url-resolver.d.ts +192 -0
- package/out/services/git-url-resolver.js +382 -0
- package/out/services/git-url-resolver.js.map +1 -0
- package/out/services/governance-validator.d.ts +80 -0
- package/out/services/governance-validator.js +159 -0
- package/out/services/governance-validator.js.map +1 -0
- package/out/services/import-resolver.d.ts +18 -0
- package/out/services/import-resolver.js +22 -0
- package/out/services/import-resolver.js.map +1 -0
- package/out/services/performance-optimizer.d.ts +60 -0
- package/out/services/performance-optimizer.js +140 -0
- package/out/services/performance-optimizer.js.map +1 -0
- package/out/services/relationship-inference.d.ts +11 -0
- package/out/services/relationship-inference.js +98 -0
- package/out/services/relationship-inference.js.map +1 -0
- package/out/services/workspace-manager.d.ts +76 -0
- package/out/services/workspace-manager.js +323 -0
- package/out/services/workspace-manager.js.map +1 -0
- package/out/syntaxes/domain-lang.monarch.d.ts +76 -0
- package/out/syntaxes/domain-lang.monarch.js +29 -0
- package/out/syntaxes/domain-lang.monarch.js.map +1 -0
- package/out/utils/import-utils.d.ts +57 -0
- package/out/utils/import-utils.js +228 -0
- package/out/utils/import-utils.js.map +1 -0
- package/out/validation/bounded-context.d.ts +11 -0
- package/out/validation/bounded-context.js +79 -0
- package/out/validation/bounded-context.js.map +1 -0
- package/out/validation/classification.d.ts +3 -0
- package/out/validation/classification.js +3 -0
- package/out/validation/classification.js.map +1 -0
- package/out/validation/constants.d.ts +77 -0
- package/out/validation/constants.js +96 -0
- package/out/validation/constants.js.map +1 -0
- package/out/validation/domain-lang-validator.d.ts +2 -0
- package/out/validation/domain-lang-validator.js +27 -0
- package/out/validation/domain-lang-validator.js.map +1 -0
- package/out/validation/domain.d.ts +11 -0
- package/out/validation/domain.js +18 -0
- package/out/validation/domain.js.map +1 -0
- package/out/validation/import.d.ts +44 -0
- package/out/validation/import.js +135 -0
- package/out/validation/import.js.map +1 -0
- package/out/validation/maps.d.ts +21 -0
- package/out/validation/maps.js +56 -0
- package/out/validation/maps.js.map +1 -0
- package/out/validation/metadata.d.ts +7 -0
- package/out/validation/metadata.js +12 -0
- package/out/validation/metadata.js.map +1 -0
- package/out/validation/model.d.ts +12 -0
- package/out/validation/model.js +29 -0
- package/out/validation/model.js.map +1 -0
- package/out/validation/relationships.d.ts +12 -0
- package/out/validation/relationships.js +94 -0
- package/out/validation/relationships.js.map +1 -0
- package/out/validation/shared.d.ts +6 -0
- package/out/validation/shared.js +12 -0
- package/out/validation/shared.js.map +1 -0
- package/package.json +97 -0
- package/src/ast-augmentation.ts +5 -0
- package/src/domain-lang-module.ts +100 -0
- package/src/domain-lang.langium +356 -0
- package/src/generated/ast.ts +999 -0
- package/src/generated/grammar.ts +2504 -0
- package/src/generated/module.ts +25 -0
- package/src/index.ts +17 -0
- package/src/lsp/domain-lang-completion.ts +514 -0
- package/src/lsp/domain-lang-formatter.ts +51 -0
- package/src/lsp/domain-lang-naming.ts +56 -0
- package/src/lsp/domain-lang-scope.ts +137 -0
- package/src/lsp/hover/ddd-pattern-explanations.ts +237 -0
- package/src/lsp/hover/domain-lang-hover.ts +340 -0
- package/src/lsp/hover/domain-lang-keywords.ts +50 -0
- package/src/main-browser.ts +15 -0
- package/src/main.ts +85 -0
- package/src/sdk/README.md +297 -0
- package/src/sdk/ast-augmentation.ts +157 -0
- package/src/sdk/index.ts +128 -0
- package/src/sdk/indexes.ts +155 -0
- package/src/sdk/loader-node.ts +126 -0
- package/src/sdk/loader.ts +99 -0
- package/src/sdk/patterns.ts +147 -0
- package/src/sdk/query.ts +802 -0
- package/src/sdk/resolution.ts +78 -0
- package/src/sdk/types.ts +346 -0
- package/src/services/dependency-analyzer.ts +381 -0
- package/src/services/dependency-resolver.ts +334 -0
- package/src/services/git-url-resolver.browser.ts +31 -0
- package/src/services/git-url-resolver.ts +524 -0
- package/src/services/governance-validator.ts +219 -0
- package/src/services/import-resolver.ts +30 -0
- package/src/services/performance-optimizer.ts +170 -0
- package/src/services/relationship-inference.ts +121 -0
- package/src/services/workspace-manager.ts +416 -0
- package/src/syntaxes/domain-lang.monarch.ts +29 -0
- package/src/utils/import-utils.ts +274 -0
- package/src/validation/bounded-context.ts +99 -0
- package/src/validation/classification.ts +5 -0
- package/src/validation/constants.ts +124 -0
- package/src/validation/domain-lang-validator.ts +33 -0
- package/src/validation/domain.ts +24 -0
- package/src/validation/import.ts +171 -0
- package/src/validation/maps.ts +72 -0
- package/src/validation/metadata.ts +14 -0
- package/src/validation/model.ts +37 -0
- package/src/validation/relationships.ts +154 -0
- package/src/validation/shared.ts +14 -0
|
@@ -0,0 +1,770 @@
|
|
|
1
|
+
/******************************************************************************
|
|
2
|
+
* This file was generated by langium-cli 4.1.0.
|
|
3
|
+
* DO NOT EDIT MANUALLY!
|
|
4
|
+
******************************************************************************/
|
|
5
|
+
import * as langium from 'langium';
|
|
6
|
+
export declare const DomainLangTerminals: {
|
|
7
|
+
WS: RegExp;
|
|
8
|
+
ID: RegExp;
|
|
9
|
+
STRING: RegExp;
|
|
10
|
+
ML_COMMENT: RegExp;
|
|
11
|
+
SL_COMMENT: RegExp;
|
|
12
|
+
};
|
|
13
|
+
export type DomainLangTerminalNames = keyof typeof DomainLangTerminals;
|
|
14
|
+
export type DomainLangKeywordNames = "," | "->" | "." | ":" | "<-" | "<->" | "=" | "><" | "ACL" | "AntiCorruptionLayer" | "BBoM" | "BigBallOfMud" | "BoundedContext" | "CF" | "Classification" | "Conformist" | "ContextMap" | "CustomerSupplier" | "Decision" | "Domain" | "DomainMap" | "Import" | "Metadata" | "Namespace" | "OHS" | "OpenHostService" | "P" | "PL" | "Partnership" | "Policy" | "PublishedLanguage" | "Rule" | "SK" | "SeparateWays" | "SharedKernel" | "Team" | "Term" | "UpstreamDownstream" | "[" | "]" | "aka" | "archetype" | "as" | "bc" | "businessModel" | "by" | "classification" | "cmap" | "contains" | "decision" | "decisions" | "description" | "dmap" | "dom" | "evolution" | "examples" | "for" | "from" | "glossary" | "import" | "in" | "integrations" | "integrity" | "is" | "meta" | "metadata" | "ns" | "policy" | "relationships" | "rule" | "rules" | "synonyms" | "team" | "term" | "terminology" | "this" | "type" | "vision" | "{" | "}";
|
|
15
|
+
export type DomainLangTokenNames = DomainLangTerminalNames | DomainLangKeywordNames;
|
|
16
|
+
/**
|
|
17
|
+
* Decisions, Policies, and Business Rules.
|
|
18
|
+
* All types are interchangeable - use what reads best for your domain.
|
|
19
|
+
*/
|
|
20
|
+
export type AbstractDecision = BusinessRule | Decision | Policy;
|
|
21
|
+
export declare const AbstractDecision: {
|
|
22
|
+
readonly $type: "AbstractDecision";
|
|
23
|
+
};
|
|
24
|
+
export declare function isAbstractDecision(item: unknown): item is AbstractDecision;
|
|
25
|
+
/**
|
|
26
|
+
* Assignment operators - flexible syntax.
|
|
27
|
+
*/
|
|
28
|
+
export type Assignment = ':' | '=' | 'is';
|
|
29
|
+
export declare function isAssignment(item: unknown): item is Assignment;
|
|
30
|
+
/**
|
|
31
|
+
* Bounded Context - A boundary within which a domain model is defined.
|
|
32
|
+
* Central pattern in DDD for managing complexity and team boundaries.
|
|
33
|
+
* Belongs to exactly ONE domain (fundamental DDD principle).
|
|
34
|
+
* Body properties can appear in any order. Validation enforces at-most-once constraint.
|
|
35
|
+
* The `classification` property indicates strategic importance per Bounded Context Canvas.
|
|
36
|
+
* The `evolution` property indicates maturity stage per Wardley Maps/BC Canvas.
|
|
37
|
+
* The `archetype` property indicates behavioral role per DDD archetypes (Gateway, Execution, etc).
|
|
38
|
+
*/
|
|
39
|
+
export interface BoundedContext extends langium.AstNode {
|
|
40
|
+
readonly $container: Model | NamespaceDeclaration;
|
|
41
|
+
readonly $type: 'Assignment' | 'BoundedContext';
|
|
42
|
+
archetype?: langium.Reference<Classification>;
|
|
43
|
+
businessModel?: langium.Reference<Classification>;
|
|
44
|
+
classification: Array<langium.Reference<Classification>>;
|
|
45
|
+
decisions: Array<AbstractDecision>;
|
|
46
|
+
description?: string;
|
|
47
|
+
domain?: langium.Reference<Domain>;
|
|
48
|
+
evolution?: langium.Reference<Classification>;
|
|
49
|
+
metadata: Array<MetadataEntry>;
|
|
50
|
+
name: string;
|
|
51
|
+
relationships: Array<Relationship>;
|
|
52
|
+
team: Array<langium.Reference<Team>>;
|
|
53
|
+
terminology: Array<DomainTerm>;
|
|
54
|
+
}
|
|
55
|
+
export declare const BoundedContext: {
|
|
56
|
+
readonly $type: "BoundedContext";
|
|
57
|
+
readonly archetype: "archetype";
|
|
58
|
+
readonly businessModel: "businessModel";
|
|
59
|
+
readonly classification: "classification";
|
|
60
|
+
readonly decisions: "decisions";
|
|
61
|
+
readonly description: "description";
|
|
62
|
+
readonly domain: "domain";
|
|
63
|
+
readonly evolution: "evolution";
|
|
64
|
+
readonly metadata: "metadata";
|
|
65
|
+
readonly name: "name";
|
|
66
|
+
readonly relationships: "relationships";
|
|
67
|
+
readonly team: "team";
|
|
68
|
+
readonly terminology: "terminology";
|
|
69
|
+
};
|
|
70
|
+
export declare function isBoundedContext(item: unknown): item is BoundedContext;
|
|
71
|
+
/**
|
|
72
|
+
* Context reference - can be 'this' (self-reference) or a qualified name.
|
|
73
|
+
*/
|
|
74
|
+
export interface BoundedContextRef extends langium.AstNode {
|
|
75
|
+
readonly $type: 'BoundedContextRef' | 'ThisRef';
|
|
76
|
+
link?: langium.Reference<BoundedContext>;
|
|
77
|
+
}
|
|
78
|
+
export declare const BoundedContextRef: {
|
|
79
|
+
readonly $type: "BoundedContextRef";
|
|
80
|
+
readonly link: "link";
|
|
81
|
+
};
|
|
82
|
+
export declare function isBoundedContextRef(item: unknown): item is BoundedContextRef;
|
|
83
|
+
export interface BusinessRule extends langium.AstNode {
|
|
84
|
+
readonly $container: BoundedContext;
|
|
85
|
+
readonly $type: 'Assignment' | 'BusinessRule';
|
|
86
|
+
classification: langium.Reference<Classification>;
|
|
87
|
+
name: string;
|
|
88
|
+
value: string;
|
|
89
|
+
}
|
|
90
|
+
export declare const BusinessRule: {
|
|
91
|
+
readonly $type: "BusinessRule";
|
|
92
|
+
readonly classification: "classification";
|
|
93
|
+
readonly name: "name";
|
|
94
|
+
readonly value: "value";
|
|
95
|
+
};
|
|
96
|
+
export declare function isBusinessRule(item: unknown): item is BusinessRule;
|
|
97
|
+
/**
|
|
98
|
+
* Classification - Reusable label for categorizing elements.
|
|
99
|
+
* Examples: Core, Supporting, Generic, Strategic, Commodity, Architectural, Business, Technical.
|
|
100
|
+
*/
|
|
101
|
+
export interface Classification extends langium.AstNode {
|
|
102
|
+
readonly $container: Model | NamespaceDeclaration;
|
|
103
|
+
readonly $type: 'Classification';
|
|
104
|
+
name: string;
|
|
105
|
+
}
|
|
106
|
+
export declare const Classification: {
|
|
107
|
+
readonly $type: "Classification";
|
|
108
|
+
readonly name: "name";
|
|
109
|
+
};
|
|
110
|
+
export declare function isClassification(item: unknown): item is Classification;
|
|
111
|
+
export type Container = Model | NamespaceDeclaration;
|
|
112
|
+
export declare const Container: {
|
|
113
|
+
readonly $type: "Container";
|
|
114
|
+
};
|
|
115
|
+
export declare function isContainer(item: unknown): item is Container;
|
|
116
|
+
/**
|
|
117
|
+
* Context Map - Visualizes relationships between Bounded Contexts.
|
|
118
|
+
* Shows integration patterns and team interactions.
|
|
119
|
+
*/
|
|
120
|
+
export interface ContextMap extends langium.AstNode {
|
|
121
|
+
readonly $container: Model | NamespaceDeclaration;
|
|
122
|
+
readonly $type: 'ContextMap';
|
|
123
|
+
boundedContexts: Array<langium.MultiReference<BoundedContext>>;
|
|
124
|
+
name: string;
|
|
125
|
+
relationships: Array<Relationship>;
|
|
126
|
+
}
|
|
127
|
+
export declare const ContextMap: {
|
|
128
|
+
readonly $type: "ContextMap";
|
|
129
|
+
readonly boundedContexts: "boundedContexts";
|
|
130
|
+
readonly name: "name";
|
|
131
|
+
readonly relationships: "relationships";
|
|
132
|
+
};
|
|
133
|
+
export declare function isContextMap(item: unknown): item is ContextMap;
|
|
134
|
+
export interface Decision extends langium.AstNode {
|
|
135
|
+
readonly $container: BoundedContext;
|
|
136
|
+
readonly $type: 'Assignment' | 'Decision';
|
|
137
|
+
classification: langium.Reference<Classification>;
|
|
138
|
+
name: string;
|
|
139
|
+
value: string;
|
|
140
|
+
}
|
|
141
|
+
export declare const Decision: {
|
|
142
|
+
readonly $type: "Decision";
|
|
143
|
+
readonly classification: "classification";
|
|
144
|
+
readonly name: "name";
|
|
145
|
+
readonly value: "value";
|
|
146
|
+
};
|
|
147
|
+
export declare function isDecision(item: unknown): item is Decision;
|
|
148
|
+
/**
|
|
149
|
+
* Domain - A sphere of knowledge or activity in DDD.
|
|
150
|
+
* Can be nested via `in` to show subdomain hierarchy.
|
|
151
|
+
* The `type` property indicates strategic importance (Core, Supporting, Generic) per Bounded Context Canvas.
|
|
152
|
+
* Body is optional - allows header-only Domain definitions.
|
|
153
|
+
*/
|
|
154
|
+
export interface Domain extends langium.AstNode {
|
|
155
|
+
readonly $container: Model | NamespaceDeclaration;
|
|
156
|
+
readonly $type: 'Assignment' | 'Domain';
|
|
157
|
+
description?: string;
|
|
158
|
+
name: string;
|
|
159
|
+
parent?: langium.Reference<Domain>;
|
|
160
|
+
type?: langium.Reference<Classification>;
|
|
161
|
+
vision?: string;
|
|
162
|
+
}
|
|
163
|
+
export declare const Domain: {
|
|
164
|
+
readonly $type: "Domain";
|
|
165
|
+
readonly description: "description";
|
|
166
|
+
readonly name: "name";
|
|
167
|
+
readonly parent: "parent";
|
|
168
|
+
readonly type: "type";
|
|
169
|
+
readonly vision: "vision";
|
|
170
|
+
};
|
|
171
|
+
export declare function isDomain(item: unknown): item is Domain;
|
|
172
|
+
/**
|
|
173
|
+
* Domain Map - Visualizes relationships between Domains.
|
|
174
|
+
* Shows high-level domain organization and subdomain structure.
|
|
175
|
+
*/
|
|
176
|
+
export interface DomainMap extends langium.AstNode {
|
|
177
|
+
readonly $container: Model | NamespaceDeclaration;
|
|
178
|
+
readonly $type: 'DomainMap';
|
|
179
|
+
domains: Array<langium.MultiReference<Domain>>;
|
|
180
|
+
name: string;
|
|
181
|
+
}
|
|
182
|
+
export declare const DomainMap: {
|
|
183
|
+
readonly $type: "DomainMap";
|
|
184
|
+
readonly domains: "domains";
|
|
185
|
+
readonly name: "name";
|
|
186
|
+
};
|
|
187
|
+
export declare function isDomainMap(item: unknown): item is DomainMap;
|
|
188
|
+
/**
|
|
189
|
+
* Domain Terminology - Ubiquitous language terms with definitions.
|
|
190
|
+
* Supports synonyms and examples for richer glossaries.
|
|
191
|
+
*/
|
|
192
|
+
export interface DomainTerm extends langium.AstNode {
|
|
193
|
+
readonly $container: BoundedContext;
|
|
194
|
+
readonly $type: 'Assignment' | 'DomainTerm';
|
|
195
|
+
examples: Array<string>;
|
|
196
|
+
meaning?: string;
|
|
197
|
+
name: string;
|
|
198
|
+
synonyms: Array<string>;
|
|
199
|
+
}
|
|
200
|
+
export declare const DomainTerm: {
|
|
201
|
+
readonly $type: "DomainTerm";
|
|
202
|
+
readonly examples: "examples";
|
|
203
|
+
readonly meaning: "meaning";
|
|
204
|
+
readonly name: "name";
|
|
205
|
+
readonly synonyms: "synonyms";
|
|
206
|
+
};
|
|
207
|
+
export declare function isDomainTerm(item: unknown): item is DomainTerm;
|
|
208
|
+
/**
|
|
209
|
+
* Import Statement - Git-native import system inspired by Go modules and Deno.
|
|
210
|
+
*
|
|
211
|
+
* Supported formats:
|
|
212
|
+
* - Local files: import "./shared/types.dlang"
|
|
213
|
+
* - Workspace-relative: import "~/contexts/sales.dlang"
|
|
214
|
+
* - GitHub packages: import "owner/repo@v1.0.0"
|
|
215
|
+
* - GitLab/Git URLs: import "https://gitlab.com/owner/repo@v1.0.0"
|
|
216
|
+
* - With aliases: import "ddd-patterns/core@v2.1.0" as DDD
|
|
217
|
+
* - Named imports: import { OrderContext } from "./contexts.dlang"
|
|
218
|
+
*/
|
|
219
|
+
export interface ImportStatement extends langium.AstNode {
|
|
220
|
+
readonly $container: Model;
|
|
221
|
+
readonly $type: 'ImportStatement';
|
|
222
|
+
alias?: string;
|
|
223
|
+
integrity?: string;
|
|
224
|
+
symbols: Array<string>;
|
|
225
|
+
uri: string;
|
|
226
|
+
}
|
|
227
|
+
export declare const ImportStatement: {
|
|
228
|
+
readonly $type: "ImportStatement";
|
|
229
|
+
readonly alias: "alias";
|
|
230
|
+
readonly integrity: "integrity";
|
|
231
|
+
readonly symbols: "symbols";
|
|
232
|
+
readonly uri: "uri";
|
|
233
|
+
};
|
|
234
|
+
export declare function isImportStatement(item: unknown): item is ImportStatement;
|
|
235
|
+
/**
|
|
236
|
+
* DDD Integration Patterns (used in relationships).
|
|
237
|
+
*/
|
|
238
|
+
export type IntegrationPattern = 'ACL' | 'AntiCorruptionLayer' | 'BBoM' | 'BigBallOfMud' | 'CF' | 'Conformist' | 'OHS' | 'OpenHostService' | 'P' | 'PL' | 'Partnership' | 'PublishedLanguage' | 'SK' | 'SharedKernel';
|
|
239
|
+
export declare function isIntegrationPattern(item: unknown): item is IntegrationPattern;
|
|
240
|
+
/**
|
|
241
|
+
* Metadata - Defines a key that can be used in metadata blocks.
|
|
242
|
+
* Examples: Language, Framework, Database, Repository.
|
|
243
|
+
* Can be defined locally or imported from stdlib.
|
|
244
|
+
*/
|
|
245
|
+
export interface Metadata extends langium.AstNode {
|
|
246
|
+
readonly $container: Model | NamespaceDeclaration;
|
|
247
|
+
readonly $type: 'Metadata';
|
|
248
|
+
name: string;
|
|
249
|
+
}
|
|
250
|
+
export declare const Metadata: {
|
|
251
|
+
readonly $type: "Metadata";
|
|
252
|
+
readonly name: "name";
|
|
253
|
+
};
|
|
254
|
+
export declare function isMetadata(item: unknown): item is Metadata;
|
|
255
|
+
export interface MetadataEntry extends langium.AstNode {
|
|
256
|
+
readonly $container: BoundedContext;
|
|
257
|
+
readonly $type: 'Assignment' | 'MetadataEntry';
|
|
258
|
+
key: langium.Reference<Metadata>;
|
|
259
|
+
value: string;
|
|
260
|
+
}
|
|
261
|
+
export declare const MetadataEntry: {
|
|
262
|
+
readonly $type: "MetadataEntry";
|
|
263
|
+
readonly key: "key";
|
|
264
|
+
readonly value: "value";
|
|
265
|
+
};
|
|
266
|
+
export declare function isMetadataEntry(item: unknown): item is MetadataEntry;
|
|
267
|
+
/**
|
|
268
|
+
* Root AST node - aggregates all top-level DDD elements.
|
|
269
|
+
* Produces the entry point for parsing .dlang files.
|
|
270
|
+
*/
|
|
271
|
+
export interface Model extends langium.AstNode {
|
|
272
|
+
readonly $type: 'Model';
|
|
273
|
+
children: Array<StructureElement>;
|
|
274
|
+
imports: Array<ImportStatement>;
|
|
275
|
+
}
|
|
276
|
+
export declare const Model: {
|
|
277
|
+
readonly $type: "Model";
|
|
278
|
+
readonly children: "children";
|
|
279
|
+
readonly imports: "imports";
|
|
280
|
+
};
|
|
281
|
+
export declare function isModel(item: unknown): item is Model;
|
|
282
|
+
/**
|
|
283
|
+
* Namespace Declaration - Hierarchical namespacing for organizing models.
|
|
284
|
+
* Combines package modularity with group-style nesting.
|
|
285
|
+
*/
|
|
286
|
+
export interface NamespaceDeclaration extends langium.AstNode {
|
|
287
|
+
readonly $container: Model | NamespaceDeclaration;
|
|
288
|
+
readonly $type: 'NamespaceDeclaration';
|
|
289
|
+
children: Array<StructureElement>;
|
|
290
|
+
name: QualifiedName;
|
|
291
|
+
}
|
|
292
|
+
export declare const NamespaceDeclaration: {
|
|
293
|
+
readonly $type: "NamespaceDeclaration";
|
|
294
|
+
readonly children: "children";
|
|
295
|
+
readonly name: "name";
|
|
296
|
+
};
|
|
297
|
+
export declare function isNamespaceDeclaration(item: unknown): item is NamespaceDeclaration;
|
|
298
|
+
/**
|
|
299
|
+
* Union of mapping constructs for visualizing architecture.
|
|
300
|
+
*/
|
|
301
|
+
export type ObjectMap = ContextMap | DomainMap;
|
|
302
|
+
export declare const ObjectMap: {
|
|
303
|
+
readonly $type: "ObjectMap";
|
|
304
|
+
};
|
|
305
|
+
export declare function isObjectMap(item: unknown): item is ObjectMap;
|
|
306
|
+
export interface Policy extends langium.AstNode {
|
|
307
|
+
readonly $container: BoundedContext;
|
|
308
|
+
readonly $type: 'Assignment' | 'Policy';
|
|
309
|
+
classification: langium.Reference<Classification>;
|
|
310
|
+
name: string;
|
|
311
|
+
value: string;
|
|
312
|
+
}
|
|
313
|
+
export declare const Policy: {
|
|
314
|
+
readonly $type: "Policy";
|
|
315
|
+
readonly classification: "classification";
|
|
316
|
+
readonly name: "name";
|
|
317
|
+
readonly value: "value";
|
|
318
|
+
};
|
|
319
|
+
export declare function isPolicy(item: unknown): item is Policy;
|
|
320
|
+
/**
|
|
321
|
+
* Qualified Name - Hierarchical namespacing with dots.
|
|
322
|
+
*/
|
|
323
|
+
export type QualifiedName = string;
|
|
324
|
+
export declare function isQualifiedName(item: unknown): item is QualifiedName;
|
|
325
|
+
/**
|
|
326
|
+
* Relationship - Connection between two Bounded Contexts.
|
|
327
|
+
* Supports DDD integration patterns (ACL, OHS, PL, etc.) and relationship types.
|
|
328
|
+
*/
|
|
329
|
+
export interface Relationship extends langium.AstNode {
|
|
330
|
+
readonly $container: BoundedContext | ContextMap;
|
|
331
|
+
readonly $type: 'Assignment' | 'Relationship';
|
|
332
|
+
arrow: RelationshipArrow;
|
|
333
|
+
left: BoundedContextRef;
|
|
334
|
+
leftPatterns: Array<IntegrationPattern>;
|
|
335
|
+
right: BoundedContextRef;
|
|
336
|
+
rightPatterns: Array<IntegrationPattern>;
|
|
337
|
+
type?: RelationshipType;
|
|
338
|
+
}
|
|
339
|
+
export declare const Relationship: {
|
|
340
|
+
readonly $type: "Relationship";
|
|
341
|
+
readonly arrow: "arrow";
|
|
342
|
+
readonly left: "left";
|
|
343
|
+
readonly leftPatterns: "leftPatterns";
|
|
344
|
+
readonly right: "right";
|
|
345
|
+
readonly rightPatterns: "rightPatterns";
|
|
346
|
+
readonly type: "type";
|
|
347
|
+
};
|
|
348
|
+
export declare function isRelationship(item: unknown): item is Relationship;
|
|
349
|
+
/**
|
|
350
|
+
* Relationship arrows - symbolic and named types.
|
|
351
|
+
*
|
|
352
|
+
* Arrow semantics:
|
|
353
|
+
* -> Upstream to downstream (left provides, right consumes)
|
|
354
|
+
* <- Downstream to upstream (right provides, left consumes)
|
|
355
|
+
* <-> Bidirectional/Partnership (mutual dependency)
|
|
356
|
+
* >< Separate Ways (no integration, teams go their own way)
|
|
357
|
+
*/
|
|
358
|
+
export type RelationshipArrow = '->' | '<-' | '<->' | '><';
|
|
359
|
+
export declare function isRelationshipArrow(item: unknown): item is RelationshipArrow;
|
|
360
|
+
/**
|
|
361
|
+
* DDD Relationship Types.
|
|
362
|
+
*/
|
|
363
|
+
export type RelationshipType = 'CustomerSupplier' | 'Partnership' | 'SeparateWays' | 'SharedKernel' | 'UpstreamDownstream';
|
|
364
|
+
export declare function isRelationshipType(item: unknown): item is RelationshipType;
|
|
365
|
+
/**
|
|
366
|
+
* Top-level elements that can appear in the model.
|
|
367
|
+
* Unifies all major DDD constructs for flexible ordering.
|
|
368
|
+
*/
|
|
369
|
+
export type StructureElement = NamespaceDeclaration | ObjectMap | Type;
|
|
370
|
+
export declare const StructureElement: {
|
|
371
|
+
readonly $type: "StructureElement";
|
|
372
|
+
};
|
|
373
|
+
export declare function isStructureElement(item: unknown): item is StructureElement;
|
|
374
|
+
/**
|
|
375
|
+
* Team - People responsible for a Bounded Context or Domain.
|
|
376
|
+
* Represents organizational boundaries in DDD.
|
|
377
|
+
*/
|
|
378
|
+
export interface Team extends langium.AstNode {
|
|
379
|
+
readonly $container: Model | NamespaceDeclaration;
|
|
380
|
+
readonly $type: 'Team';
|
|
381
|
+
name: string;
|
|
382
|
+
}
|
|
383
|
+
export declare const Team: {
|
|
384
|
+
readonly $type: "Team";
|
|
385
|
+
readonly name: "name";
|
|
386
|
+
};
|
|
387
|
+
export declare function isTeam(item: unknown): item is Team;
|
|
388
|
+
/**
|
|
389
|
+
* Context reference - can be 'this' (self-reference) or a qualified name.
|
|
390
|
+
*/
|
|
391
|
+
export interface ThisRef extends BoundedContextRef {
|
|
392
|
+
readonly $type: 'ThisRef';
|
|
393
|
+
}
|
|
394
|
+
export declare const ThisRef: {
|
|
395
|
+
readonly $type: "ThisRef";
|
|
396
|
+
readonly link: "link";
|
|
397
|
+
};
|
|
398
|
+
export declare function isThisRef(item: unknown): item is ThisRef;
|
|
399
|
+
/**
|
|
400
|
+
* Union of all main DDD type constructs.
|
|
401
|
+
*/
|
|
402
|
+
export type Type = BoundedContext | Classification | Domain | Metadata | Team;
|
|
403
|
+
export declare const Type: {
|
|
404
|
+
readonly $type: "Type";
|
|
405
|
+
};
|
|
406
|
+
export declare function isType(item: unknown): item is Type;
|
|
407
|
+
export type DomainLangAstType = {
|
|
408
|
+
AbstractDecision: AbstractDecision;
|
|
409
|
+
BoundedContext: BoundedContext;
|
|
410
|
+
BoundedContextRef: BoundedContextRef;
|
|
411
|
+
BusinessRule: BusinessRule;
|
|
412
|
+
Classification: Classification;
|
|
413
|
+
Container: Container;
|
|
414
|
+
ContextMap: ContextMap;
|
|
415
|
+
Decision: Decision;
|
|
416
|
+
Domain: Domain;
|
|
417
|
+
DomainMap: DomainMap;
|
|
418
|
+
DomainTerm: DomainTerm;
|
|
419
|
+
ImportStatement: ImportStatement;
|
|
420
|
+
Metadata: Metadata;
|
|
421
|
+
MetadataEntry: MetadataEntry;
|
|
422
|
+
Model: Model;
|
|
423
|
+
NamespaceDeclaration: NamespaceDeclaration;
|
|
424
|
+
ObjectMap: ObjectMap;
|
|
425
|
+
Policy: Policy;
|
|
426
|
+
Relationship: Relationship;
|
|
427
|
+
StructureElement: StructureElement;
|
|
428
|
+
Team: Team;
|
|
429
|
+
ThisRef: ThisRef;
|
|
430
|
+
Type: Type;
|
|
431
|
+
};
|
|
432
|
+
export declare class DomainLangAstReflection extends langium.AbstractAstReflection {
|
|
433
|
+
readonly types: {
|
|
434
|
+
readonly AbstractDecision: {
|
|
435
|
+
readonly name: "AbstractDecision";
|
|
436
|
+
readonly properties: {};
|
|
437
|
+
readonly superTypes: [];
|
|
438
|
+
};
|
|
439
|
+
readonly BoundedContext: {
|
|
440
|
+
readonly name: "BoundedContext";
|
|
441
|
+
readonly properties: {
|
|
442
|
+
readonly archetype: {
|
|
443
|
+
readonly name: "archetype";
|
|
444
|
+
readonly referenceType: "Classification";
|
|
445
|
+
};
|
|
446
|
+
readonly businessModel: {
|
|
447
|
+
readonly name: "businessModel";
|
|
448
|
+
readonly referenceType: "Classification";
|
|
449
|
+
};
|
|
450
|
+
readonly classification: {
|
|
451
|
+
readonly name: "classification";
|
|
452
|
+
readonly defaultValue: [];
|
|
453
|
+
readonly referenceType: "Classification";
|
|
454
|
+
};
|
|
455
|
+
readonly decisions: {
|
|
456
|
+
readonly name: "decisions";
|
|
457
|
+
readonly defaultValue: [];
|
|
458
|
+
};
|
|
459
|
+
readonly description: {
|
|
460
|
+
readonly name: "description";
|
|
461
|
+
};
|
|
462
|
+
readonly domain: {
|
|
463
|
+
readonly name: "domain";
|
|
464
|
+
readonly referenceType: "Domain";
|
|
465
|
+
};
|
|
466
|
+
readonly evolution: {
|
|
467
|
+
readonly name: "evolution";
|
|
468
|
+
readonly referenceType: "Classification";
|
|
469
|
+
};
|
|
470
|
+
readonly metadata: {
|
|
471
|
+
readonly name: "metadata";
|
|
472
|
+
readonly defaultValue: [];
|
|
473
|
+
};
|
|
474
|
+
readonly name: {
|
|
475
|
+
readonly name: "name";
|
|
476
|
+
};
|
|
477
|
+
readonly relationships: {
|
|
478
|
+
readonly name: "relationships";
|
|
479
|
+
readonly defaultValue: [];
|
|
480
|
+
};
|
|
481
|
+
readonly team: {
|
|
482
|
+
readonly name: "team";
|
|
483
|
+
readonly defaultValue: [];
|
|
484
|
+
readonly referenceType: "Team";
|
|
485
|
+
};
|
|
486
|
+
readonly terminology: {
|
|
487
|
+
readonly name: "terminology";
|
|
488
|
+
readonly defaultValue: [];
|
|
489
|
+
};
|
|
490
|
+
};
|
|
491
|
+
readonly superTypes: ["Type"];
|
|
492
|
+
};
|
|
493
|
+
readonly BoundedContextRef: {
|
|
494
|
+
readonly name: "BoundedContextRef";
|
|
495
|
+
readonly properties: {
|
|
496
|
+
readonly link: {
|
|
497
|
+
readonly name: "link";
|
|
498
|
+
readonly referenceType: "BoundedContext";
|
|
499
|
+
};
|
|
500
|
+
};
|
|
501
|
+
readonly superTypes: [];
|
|
502
|
+
};
|
|
503
|
+
readonly BusinessRule: {
|
|
504
|
+
readonly name: "BusinessRule";
|
|
505
|
+
readonly properties: {
|
|
506
|
+
readonly classification: {
|
|
507
|
+
readonly name: "classification";
|
|
508
|
+
readonly referenceType: "Classification";
|
|
509
|
+
};
|
|
510
|
+
readonly name: {
|
|
511
|
+
readonly name: "name";
|
|
512
|
+
};
|
|
513
|
+
readonly value: {
|
|
514
|
+
readonly name: "value";
|
|
515
|
+
};
|
|
516
|
+
};
|
|
517
|
+
readonly superTypes: ["AbstractDecision"];
|
|
518
|
+
};
|
|
519
|
+
readonly Classification: {
|
|
520
|
+
readonly name: "Classification";
|
|
521
|
+
readonly properties: {
|
|
522
|
+
readonly name: {
|
|
523
|
+
readonly name: "name";
|
|
524
|
+
};
|
|
525
|
+
};
|
|
526
|
+
readonly superTypes: ["Type"];
|
|
527
|
+
};
|
|
528
|
+
readonly Container: {
|
|
529
|
+
readonly name: "Container";
|
|
530
|
+
readonly properties: {};
|
|
531
|
+
readonly superTypes: [];
|
|
532
|
+
};
|
|
533
|
+
readonly ContextMap: {
|
|
534
|
+
readonly name: "ContextMap";
|
|
535
|
+
readonly properties: {
|
|
536
|
+
readonly boundedContexts: {
|
|
537
|
+
readonly name: "boundedContexts";
|
|
538
|
+
readonly defaultValue: [];
|
|
539
|
+
readonly referenceType: "BoundedContext";
|
|
540
|
+
};
|
|
541
|
+
readonly name: {
|
|
542
|
+
readonly name: "name";
|
|
543
|
+
};
|
|
544
|
+
readonly relationships: {
|
|
545
|
+
readonly name: "relationships";
|
|
546
|
+
readonly defaultValue: [];
|
|
547
|
+
};
|
|
548
|
+
};
|
|
549
|
+
readonly superTypes: ["ObjectMap"];
|
|
550
|
+
};
|
|
551
|
+
readonly Decision: {
|
|
552
|
+
readonly name: "Decision";
|
|
553
|
+
readonly properties: {
|
|
554
|
+
readonly classification: {
|
|
555
|
+
readonly name: "classification";
|
|
556
|
+
readonly referenceType: "Classification";
|
|
557
|
+
};
|
|
558
|
+
readonly name: {
|
|
559
|
+
readonly name: "name";
|
|
560
|
+
};
|
|
561
|
+
readonly value: {
|
|
562
|
+
readonly name: "value";
|
|
563
|
+
};
|
|
564
|
+
};
|
|
565
|
+
readonly superTypes: ["AbstractDecision"];
|
|
566
|
+
};
|
|
567
|
+
readonly Domain: {
|
|
568
|
+
readonly name: "Domain";
|
|
569
|
+
readonly properties: {
|
|
570
|
+
readonly description: {
|
|
571
|
+
readonly name: "description";
|
|
572
|
+
};
|
|
573
|
+
readonly name: {
|
|
574
|
+
readonly name: "name";
|
|
575
|
+
};
|
|
576
|
+
readonly parent: {
|
|
577
|
+
readonly name: "parent";
|
|
578
|
+
readonly referenceType: "Domain";
|
|
579
|
+
};
|
|
580
|
+
readonly type: {
|
|
581
|
+
readonly name: "type";
|
|
582
|
+
readonly referenceType: "Classification";
|
|
583
|
+
};
|
|
584
|
+
readonly vision: {
|
|
585
|
+
readonly name: "vision";
|
|
586
|
+
};
|
|
587
|
+
};
|
|
588
|
+
readonly superTypes: ["Type"];
|
|
589
|
+
};
|
|
590
|
+
readonly DomainMap: {
|
|
591
|
+
readonly name: "DomainMap";
|
|
592
|
+
readonly properties: {
|
|
593
|
+
readonly domains: {
|
|
594
|
+
readonly name: "domains";
|
|
595
|
+
readonly defaultValue: [];
|
|
596
|
+
readonly referenceType: "Domain";
|
|
597
|
+
};
|
|
598
|
+
readonly name: {
|
|
599
|
+
readonly name: "name";
|
|
600
|
+
};
|
|
601
|
+
};
|
|
602
|
+
readonly superTypes: ["ObjectMap"];
|
|
603
|
+
};
|
|
604
|
+
readonly DomainTerm: {
|
|
605
|
+
readonly name: "DomainTerm";
|
|
606
|
+
readonly properties: {
|
|
607
|
+
readonly examples: {
|
|
608
|
+
readonly name: "examples";
|
|
609
|
+
readonly defaultValue: [];
|
|
610
|
+
};
|
|
611
|
+
readonly meaning: {
|
|
612
|
+
readonly name: "meaning";
|
|
613
|
+
};
|
|
614
|
+
readonly name: {
|
|
615
|
+
readonly name: "name";
|
|
616
|
+
};
|
|
617
|
+
readonly synonyms: {
|
|
618
|
+
readonly name: "synonyms";
|
|
619
|
+
readonly defaultValue: [];
|
|
620
|
+
};
|
|
621
|
+
};
|
|
622
|
+
readonly superTypes: [];
|
|
623
|
+
};
|
|
624
|
+
readonly ImportStatement: {
|
|
625
|
+
readonly name: "ImportStatement";
|
|
626
|
+
readonly properties: {
|
|
627
|
+
readonly alias: {
|
|
628
|
+
readonly name: "alias";
|
|
629
|
+
};
|
|
630
|
+
readonly integrity: {
|
|
631
|
+
readonly name: "integrity";
|
|
632
|
+
};
|
|
633
|
+
readonly symbols: {
|
|
634
|
+
readonly name: "symbols";
|
|
635
|
+
readonly defaultValue: [];
|
|
636
|
+
};
|
|
637
|
+
readonly uri: {
|
|
638
|
+
readonly name: "uri";
|
|
639
|
+
};
|
|
640
|
+
};
|
|
641
|
+
readonly superTypes: [];
|
|
642
|
+
};
|
|
643
|
+
readonly Metadata: {
|
|
644
|
+
readonly name: "Metadata";
|
|
645
|
+
readonly properties: {
|
|
646
|
+
readonly name: {
|
|
647
|
+
readonly name: "name";
|
|
648
|
+
};
|
|
649
|
+
};
|
|
650
|
+
readonly superTypes: ["Type"];
|
|
651
|
+
};
|
|
652
|
+
readonly MetadataEntry: {
|
|
653
|
+
readonly name: "MetadataEntry";
|
|
654
|
+
readonly properties: {
|
|
655
|
+
readonly key: {
|
|
656
|
+
readonly name: "key";
|
|
657
|
+
readonly referenceType: "Metadata";
|
|
658
|
+
};
|
|
659
|
+
readonly value: {
|
|
660
|
+
readonly name: "value";
|
|
661
|
+
};
|
|
662
|
+
};
|
|
663
|
+
readonly superTypes: [];
|
|
664
|
+
};
|
|
665
|
+
readonly Model: {
|
|
666
|
+
readonly name: "Model";
|
|
667
|
+
readonly properties: {
|
|
668
|
+
readonly children: {
|
|
669
|
+
readonly name: "children";
|
|
670
|
+
readonly defaultValue: [];
|
|
671
|
+
};
|
|
672
|
+
readonly imports: {
|
|
673
|
+
readonly name: "imports";
|
|
674
|
+
readonly defaultValue: [];
|
|
675
|
+
};
|
|
676
|
+
};
|
|
677
|
+
readonly superTypes: ["Container"];
|
|
678
|
+
};
|
|
679
|
+
readonly NamespaceDeclaration: {
|
|
680
|
+
readonly name: "NamespaceDeclaration";
|
|
681
|
+
readonly properties: {
|
|
682
|
+
readonly children: {
|
|
683
|
+
readonly name: "children";
|
|
684
|
+
readonly defaultValue: [];
|
|
685
|
+
};
|
|
686
|
+
readonly name: {
|
|
687
|
+
readonly name: "name";
|
|
688
|
+
};
|
|
689
|
+
};
|
|
690
|
+
readonly superTypes: ["Container", "StructureElement"];
|
|
691
|
+
};
|
|
692
|
+
readonly ObjectMap: {
|
|
693
|
+
readonly name: "ObjectMap";
|
|
694
|
+
readonly properties: {};
|
|
695
|
+
readonly superTypes: ["StructureElement"];
|
|
696
|
+
};
|
|
697
|
+
readonly Policy: {
|
|
698
|
+
readonly name: "Policy";
|
|
699
|
+
readonly properties: {
|
|
700
|
+
readonly classification: {
|
|
701
|
+
readonly name: "classification";
|
|
702
|
+
readonly referenceType: "Classification";
|
|
703
|
+
};
|
|
704
|
+
readonly name: {
|
|
705
|
+
readonly name: "name";
|
|
706
|
+
};
|
|
707
|
+
readonly value: {
|
|
708
|
+
readonly name: "value";
|
|
709
|
+
};
|
|
710
|
+
};
|
|
711
|
+
readonly superTypes: ["AbstractDecision"];
|
|
712
|
+
};
|
|
713
|
+
readonly Relationship: {
|
|
714
|
+
readonly name: "Relationship";
|
|
715
|
+
readonly properties: {
|
|
716
|
+
readonly arrow: {
|
|
717
|
+
readonly name: "arrow";
|
|
718
|
+
};
|
|
719
|
+
readonly left: {
|
|
720
|
+
readonly name: "left";
|
|
721
|
+
};
|
|
722
|
+
readonly leftPatterns: {
|
|
723
|
+
readonly name: "leftPatterns";
|
|
724
|
+
readonly defaultValue: [];
|
|
725
|
+
};
|
|
726
|
+
readonly right: {
|
|
727
|
+
readonly name: "right";
|
|
728
|
+
};
|
|
729
|
+
readonly rightPatterns: {
|
|
730
|
+
readonly name: "rightPatterns";
|
|
731
|
+
readonly defaultValue: [];
|
|
732
|
+
};
|
|
733
|
+
readonly type: {
|
|
734
|
+
readonly name: "type";
|
|
735
|
+
};
|
|
736
|
+
};
|
|
737
|
+
readonly superTypes: [];
|
|
738
|
+
};
|
|
739
|
+
readonly StructureElement: {
|
|
740
|
+
readonly name: "StructureElement";
|
|
741
|
+
readonly properties: {};
|
|
742
|
+
readonly superTypes: [];
|
|
743
|
+
};
|
|
744
|
+
readonly Team: {
|
|
745
|
+
readonly name: "Team";
|
|
746
|
+
readonly properties: {
|
|
747
|
+
readonly name: {
|
|
748
|
+
readonly name: "name";
|
|
749
|
+
};
|
|
750
|
+
};
|
|
751
|
+
readonly superTypes: ["Type"];
|
|
752
|
+
};
|
|
753
|
+
readonly ThisRef: {
|
|
754
|
+
readonly name: "ThisRef";
|
|
755
|
+
readonly properties: {
|
|
756
|
+
readonly link: {
|
|
757
|
+
readonly name: "link";
|
|
758
|
+
readonly referenceType: "BoundedContext";
|
|
759
|
+
};
|
|
760
|
+
};
|
|
761
|
+
readonly superTypes: ["BoundedContextRef"];
|
|
762
|
+
};
|
|
763
|
+
readonly Type: {
|
|
764
|
+
readonly name: "Type";
|
|
765
|
+
readonly properties: {};
|
|
766
|
+
readonly superTypes: ["StructureElement"];
|
|
767
|
+
};
|
|
768
|
+
};
|
|
769
|
+
}
|
|
770
|
+
export declare const reflection: DomainLangAstReflection;
|