@api-client/core 0.14.0 → 0.14.1

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.
Files changed (140) hide show
  1. package/build/src/amf/AmfTypes.d.ts +1 -1
  2. package/build/src/amf/AmfTypes.js +1 -1
  3. package/build/src/amf/AmfTypes.js.map +1 -1
  4. package/build/src/amf/Utils.d.ts +0 -6
  5. package/build/src/amf/Utils.d.ts.map +1 -1
  6. package/build/src/amf/Utils.js +0 -14
  7. package/build/src/amf/Utils.js.map +1 -1
  8. package/build/src/browser.d.ts +1 -0
  9. package/build/src/browser.d.ts.map +1 -1
  10. package/build/src/browser.js +1 -0
  11. package/build/src/browser.js.map +1 -1
  12. package/build/src/index.d.ts +1 -0
  13. package/build/src/index.d.ts.map +1 -1
  14. package/build/src/index.js +1 -0
  15. package/build/src/index.js.map +1 -1
  16. package/build/src/legacy.d.ts +0 -8
  17. package/build/src/legacy.d.ts.map +1 -1
  18. package/build/src/legacy.js +0 -9
  19. package/build/src/legacy.js.map +1 -1
  20. package/build/src/modeling/Bindings.d.ts +1 -1
  21. package/build/src/modeling/Bindings.js.map +1 -1
  22. package/build/src/modeling/DataDomain.js +2 -2
  23. package/build/src/modeling/DataDomain.js.map +1 -1
  24. package/build/src/modeling/DataFormat.d.ts +0 -40
  25. package/build/src/modeling/DataFormat.d.ts.map +1 -1
  26. package/build/src/modeling/DataFormat.js +0 -27
  27. package/build/src/modeling/DataFormat.js.map +1 -1
  28. package/build/src/modeling/DomainAssociation.d.ts +28 -0
  29. package/build/src/modeling/DomainAssociation.d.ts.map +1 -1
  30. package/build/src/modeling/DomainAssociation.js +73 -4
  31. package/build/src/modeling/DomainAssociation.js.map +1 -1
  32. package/build/src/modeling/DomainEntity.d.ts +25 -9
  33. package/build/src/modeling/DomainEntity.d.ts.map +1 -1
  34. package/build/src/modeling/DomainEntity.js +65 -21
  35. package/build/src/modeling/DomainEntity.js.map +1 -1
  36. package/build/src/modeling/DomainFile.d.ts +1 -1
  37. package/build/src/modeling/DomainFile.js +1 -1
  38. package/build/src/modeling/DomainFile.js.map +1 -1
  39. package/build/src/modeling/DomainImpactAnalysis.d.ts +1 -1
  40. package/build/src/modeling/DomainImpactAnalysis.d.ts.map +1 -1
  41. package/build/src/modeling/DomainImpactAnalysis.js +3 -3
  42. package/build/src/modeling/DomainImpactAnalysis.js.map +1 -1
  43. package/build/src/modeling/DomainModel.d.ts +2 -2
  44. package/build/src/modeling/DomainModel.js +2 -2
  45. package/build/src/modeling/DomainModel.js.map +1 -1
  46. package/build/src/modeling/DomainProperty.d.ts +28 -12
  47. package/build/src/modeling/DomainProperty.d.ts.map +1 -1
  48. package/build/src/modeling/DomainProperty.js +61 -26
  49. package/build/src/modeling/DomainProperty.js.map +1 -1
  50. package/build/src/modeling/Semantics.d.ts +109 -0
  51. package/build/src/modeling/Semantics.d.ts.map +1 -0
  52. package/build/src/modeling/Semantics.js +97 -0
  53. package/build/src/modeling/Semantics.js.map +1 -0
  54. package/build/src/models/kinds.d.ts +0 -24
  55. package/build/src/models/kinds.d.ts.map +1 -1
  56. package/build/src/models/kinds.js +0 -24
  57. package/build/src/models/kinds.js.map +1 -1
  58. package/build/src/models/store/data_catalog.d.ts +1 -1
  59. package/build/src/models/store/data_catalog.js.map +1 -1
  60. package/build/tsconfig.tsbuildinfo +1 -1
  61. package/data/models/example-generator-api.json +11 -11
  62. package/package.json +1 -1
  63. package/src/amf/AmfTypes.ts +1 -1
  64. package/src/amf/Utils.ts +0 -15
  65. package/src/modeling/Bindings.ts +1 -1
  66. package/src/modeling/DataDomain.ts +2 -2
  67. package/src/modeling/DataFormat.ts +0 -48
  68. package/src/modeling/DomainAssociation.ts +66 -3
  69. package/src/modeling/DomainEntity.ts +56 -17
  70. package/src/modeling/DomainFile.ts +1 -1
  71. package/src/modeling/DomainImpactAnalysis.ts +3 -3
  72. package/src/modeling/DomainModel.ts +2 -2
  73. package/src/modeling/DomainProperty.ts +60 -21
  74. package/src/modeling/Semantics.ts +178 -0
  75. package/src/modeling/graph.md +14 -14
  76. package/src/modeling/readme.md +29 -29
  77. package/src/models/kinds.ts +0 -25
  78. package/src/models/store/data_catalog.ts +1 -1
  79. package/tests/unit/modeling/data_domain_change_observers.spec.ts +11 -10
  80. package/tests/unit/modeling/data_domain_entities.spec.ts +129 -1
  81. package/tests/unit/modeling/data_domain_property.spec.ts +1 -1
  82. package/tests/unit/modeling/domain_asociation.spec.ts +177 -0
  83. package/tests/unit/modeling/domain_entity.spec.ts +27 -26
  84. package/tests/unit/modeling/domain_entity_example_generator_json.spec.ts +11 -11
  85. package/tests/unit/modeling/domain_entity_example_generator_xml.spec.ts +10 -10
  86. package/tests/unit/modeling/{domain.property.spec.ts → domain_property.spec.ts} +139 -23
  87. package/build/src/amf/AmfShapeGenerator.d.ts +0 -103
  88. package/build/src/amf/AmfShapeGenerator.d.ts.map +0 -1
  89. package/build/src/amf/AmfShapeGenerator.js +0 -416
  90. package/build/src/amf/AmfShapeGenerator.js.map +0 -1
  91. package/build/src/modeling/legacy/DataAssociation.d.ts +0 -284
  92. package/build/src/modeling/legacy/DataAssociation.d.ts.map +0 -1
  93. package/build/src/modeling/legacy/DataAssociation.js +0 -443
  94. package/build/src/modeling/legacy/DataAssociation.js.map +0 -1
  95. package/build/src/modeling/legacy/DataEntity.d.ts +0 -358
  96. package/build/src/modeling/legacy/DataEntity.d.ts.map +0 -1
  97. package/build/src/modeling/legacy/DataEntity.js +0 -855
  98. package/build/src/modeling/legacy/DataEntity.js.map +0 -1
  99. package/build/src/modeling/legacy/DataEntityBuilder.d.ts +0 -162
  100. package/build/src/modeling/legacy/DataEntityBuilder.d.ts.map +0 -1
  101. package/build/src/modeling/legacy/DataEntityBuilder.js +0 -221
  102. package/build/src/modeling/legacy/DataEntityBuilder.js.map +0 -1
  103. package/build/src/modeling/legacy/DataImpactAnalysis.d.ts +0 -298
  104. package/build/src/modeling/legacy/DataImpactAnalysis.d.ts.map +0 -1
  105. package/build/src/modeling/legacy/DataImpactAnalysis.js +0 -441
  106. package/build/src/modeling/legacy/DataImpactAnalysis.js.map +0 -1
  107. package/build/src/modeling/legacy/DataModel.d.ts +0 -99
  108. package/build/src/modeling/legacy/DataModel.d.ts.map +0 -1
  109. package/build/src/modeling/legacy/DataModel.js +0 -237
  110. package/build/src/modeling/legacy/DataModel.js.map +0 -1
  111. package/build/src/modeling/legacy/DataNamespace.d.ts +0 -340
  112. package/build/src/modeling/legacy/DataNamespace.d.ts.map +0 -1
  113. package/build/src/modeling/legacy/DataNamespace.js +0 -784
  114. package/build/src/modeling/legacy/DataNamespace.js.map +0 -1
  115. package/build/src/modeling/legacy/DataProperty.d.ts +0 -332
  116. package/build/src/modeling/legacy/DataProperty.d.ts.map +0 -1
  117. package/build/src/modeling/legacy/DataProperty.js +0 -415
  118. package/build/src/modeling/legacy/DataProperty.js.map +0 -1
  119. package/build/src/models/store/DataFile.d.ts +0 -29
  120. package/build/src/models/store/DataFile.d.ts.map +0 -1
  121. package/build/src/models/store/DataFile.js +0 -87
  122. package/build/src/models/store/DataFile.js.map +0 -1
  123. package/src/amf/AmfShapeGenerator.ts +0 -477
  124. package/src/modeling/legacy/DataAssociation.ts +0 -554
  125. package/src/modeling/legacy/DataEntity.ts +0 -1019
  126. package/src/modeling/legacy/DataEntityBuilder.ts +0 -236
  127. package/src/modeling/legacy/DataImpactAnalysis.ts +0 -530
  128. package/src/modeling/legacy/DataModel.ts +0 -276
  129. package/src/modeling/legacy/DataNamespace.ts +0 -929
  130. package/src/modeling/legacy/DataProperty.ts +0 -630
  131. package/src/models/store/DataFile.ts +0 -95
  132. package/tests/unit/modeling/legacy/amf_shape_generator.spec.ts +0 -1041
  133. package/tests/unit/modeling/legacy/data_association.spec.ts +0 -710
  134. package/tests/unit/modeling/legacy/data_entity.spec.ts +0 -2061
  135. package/tests/unit/modeling/legacy/data_entity_generator_json.spec.ts +0 -987
  136. package/tests/unit/modeling/legacy/data_entity_generator_xml.spec.ts +0 -1451
  137. package/tests/unit/modeling/legacy/data_model.spec.ts +0 -395
  138. package/tests/unit/modeling/legacy/data_namespace.spec.ts +0 -1312
  139. package/tests/unit/modeling/legacy/data_property.spec.ts +0 -887
  140. package/tests/unit/modeling/legacy/impact_analysis.spec.ts +0 -373
@@ -1,284 +0,0 @@
1
- import { IApiAssociationShape, IApiPropertyShape } from '../../amf/definitions/Shapes.js';
2
- import { IThing, Thing } from '../../models/Thing.js';
3
- import { DataEntity, IDataEntity } from './DataEntity.js';
4
- import { DataNamespace } from './DataNamespace.js';
5
- import { DataAssociationKind } from '../../models/kinds.js';
6
- import type { AssociationBinding, AssociationBindings, AssociationWebBindings } from '../Bindings.js';
7
- import { type DataAttributeAttribute } from '../DataFormat.js';
8
- /**
9
- * Describes association target of an entity
10
- * @deprecated
11
- */
12
- export interface AssociationTarget {
13
- /**
14
- * The key of the associated entity.
15
- */
16
- key: string;
17
- /**
18
- * The key of the namespace to look for entities.
19
- * By default it is the current (root) namespace. When this is set the program
20
- * will look into `foreign` of the root namespace for the definition
21
- * of the entity.
22
- */
23
- namespace?: string;
24
- }
25
- /**
26
- * Describes an association between entities. An association is another property of an entity.
27
- * The `name` is the name of the property and the value is the associated target or targets.
28
- *
29
- * An association can have multiple targets to allow describing the model as `allOf`, `anyOf` and `oneOf` schemas.
30
- * When the association has only one target, then generated schema cannot have union types.
31
- *
32
- * Depending on the schema translation an association can be embedded as a sub-object in the generated schema
33
- * or can be references via a primary key.
34
- * @deprecated
35
- */
36
- export interface IDataAssociation {
37
- kind: typeof DataAssociationKind;
38
- /**
39
- * The key of the association.
40
- */
41
- key: string;
42
- /**
43
- * The data association description.
44
- */
45
- info: IThing;
46
- /**
47
- * Wether the data association is required.
48
- */
49
- required?: boolean;
50
- /**
51
- * Whether the data association allows multiple items.
52
- */
53
- multiple?: boolean;
54
- /**
55
- * The list of keys associated with the entity through this association.
56
- * An association without a target is considered invalid and discarded when processing the values.
57
- * When multiple associations are set then we are dealing with an union.
58
- */
59
- targets?: AssociationTarget[];
60
- /**
61
- * The schema allowing to translate the model into a specific format (like JSON, RAML, XML, etc.)
62
- *
63
- * When this is defined then it is used as the schema. When this is not defined it uses
64
- * referenced entities schemas. Note, changes in the referenced entities may not be propagated
65
- * to schemas altered by the user.
66
- */
67
- schema?: IApiAssociationShape;
68
- /**
69
- * The list of bindings for this property.
70
- *
71
- * A binding defines a translation from a data model to a specific format.
72
- * For example allows to define properties required to generate AMF shape and therefore RAML/OAS shapes for web APIs
73
- * or a protocol buffer schema.
74
- */
75
- bindings?: AssociationBinding[];
76
- }
77
- /**
78
- * Describes an association between entities. An association is a relationship defined on an entity
79
- * that links it to one or more other entities. The association has a `name` which is used as the
80
- * property name in the context of the parent entity, and it connects to a set of `targets`
81
- * representing the associated entities.
82
- *
83
- * An association can have multiple targets to allow describing the model as `allOf`, `anyOf`, or `oneOf`
84
- * schemas. When the association has only one target, then the generated schema cannot have union types.
85
- *
86
- * Depending on the schema translation, an association can be embedded as a sub-object in the generated
87
- * schema, or it can be referenced via a primary key.
88
- *
89
- * ## Key Concepts
90
- *
91
- * - **Targets**: An association's `targets` specify the entities that this association points to.
92
- * Each target is defined by:
93
- * - `key`: The key of the target entity.
94
- * - `namespace` (optional): The key of the namespace where the target entity is defined.
95
- * If not specified, it defaults to the current namespace.
96
- *
97
- * - **Cardinality**:
98
- * - `multiple` (boolean): Indicates whether the association allows multiple target entities.
99
- * If `true`, it's a to-many relationship; otherwise, it's a to-one relationship.
100
- *
101
- * - **Schema**:
102
- * - `schema` (optional): A custom schema for the association, allowing manual definition of the
103
- * association's structure in specific formats (e.g., JSON, RAML, XML).
104
- * When provided, this schema overrides the automatically generated schema based on the
105
- * target entities.
106
- * - **Important**: If a custom schema is defined and changes are made to the referenced
107
- * entities, those changes **will not** be automatically propagated to the custom schema.
108
- * This means the custom schema may become outdated and no longer accurately reflect the
109
- * structure of the target entities.
110
- *
111
- * - **Hidden**:
112
- * - `hidden`: (boolean) Defines if this association is a part of the schema or not.
113
- * @deprecated
114
- */
115
- export declare class DataAssociation {
116
- root: DataNamespace;
117
- kind: string;
118
- key: string;
119
- /**
120
- * The description of the data association.
121
- */
122
- info: Thing;
123
- /**
124
- * Wether the data association is required.
125
- */
126
- required?: boolean;
127
- /**
128
- * Whether the data association allows multiple items.
129
- */
130
- multiple?: boolean;
131
- /**
132
- * The list of keys associated with the entity through this association.
133
- * An association without a target is considered invalid and discarded when processing the values.
134
- * When multiple associations are set then we are dealing with an union.
135
- */
136
- targets: AssociationTarget[];
137
- /**
138
- * The schema allowing to translate the model into a specific format (like JSON, RAML, XML, etc.)
139
- *
140
- * When this is defined then it is used as the schema. When this is not defined it uses
141
- * referenced entities schemas. Note, changes in the referenced entities may not be propagated
142
- * to schemas altered by the user.
143
- */
144
- schema?: IApiAssociationShape;
145
- /**
146
- * The list of bindings for this property.
147
- *
148
- * A binding defines a translation from a data model to a specific format.
149
- * For example allows to define properties required to generate AMF shape and therefore RAML/OAS shapes for web APIs
150
- * or a protocol buffer schema.
151
- */
152
- bindings: AssociationBinding[];
153
- /**
154
- * Returns true when the association has 0 or 1 targets.
155
- */
156
- get isSingle(): boolean;
157
- /**
158
- * Creates an instance of DataAssociation from a target entity key.
159
- * Note, this entity will have no name. The default name is used instead.
160
- *
161
- * @param root The namespace root.
162
- * @param target The target entity key.
163
- * @param namespace The optional key of the target association when different to the current one.
164
- * @returns A new `DataAssociation` instance.
165
- */
166
- static fromTarget(root: DataNamespace, target: string, namespace?: string): DataAssociation;
167
- /**
168
- * Creates an instance of DataAssociation from a name, without defining a target.
169
- *
170
- * @param root The namespace root.
171
- * @param name The name of the association.
172
- * @returns A new `DataAssociation` instance.
173
- */
174
- static fromName(root: DataNamespace, name: string): DataAssociation;
175
- /**
176
- * @param input The data association definition to restore.
177
- */
178
- constructor(root: DataNamespace, input?: string | IDataAssociation);
179
- /**
180
- * Initializes the association using provided data.
181
- *
182
- * @param init - The data association definition to restore.
183
- */
184
- new(init: IDataAssociation): this;
185
- /**
186
- * Validates if the input object is a valid `DataAssociation` definition.
187
- * Throws a `ValidationError` if the input is invalid.
188
- *
189
- * @param input The object to validate.
190
- * @throws {ValidationError} When the validation fails.
191
- * @deprecated
192
- */
193
- static validate(input: unknown): void;
194
- /**
195
- * Generates an object representing the association, suitable for serialization.
196
- *
197
- * @returns A plain object representation of the `DataAssociation`.
198
- */
199
- toJSON(): IDataAssociation;
200
- /**
201
- * Retrieves the list of target entities.
202
- *
203
- * @returns An array of `DataEntity` instances representing the targets of this association.
204
- */
205
- getTargets(): DataEntity[];
206
- /**
207
- * Removes self from the parent entity and the namespace definition.
208
- */
209
- remove(): void;
210
- /**
211
- * Adds a target entity to the association.
212
- * If the entity comes from another namespace then it is set as a foreign entity.
213
- *
214
- * @param entity - The `DataEntity` instance to add.
215
- */
216
- addTarget(entity: DataEntity): void;
217
- /**
218
- * Adds a target entity to the association.
219
- *
220
- * @param entity - The `IDataEntity` definition or just its key.
221
- * @param namespace - The key of the foreign namespace this entity belongs to.
222
- * Do not set this value for local entities.
223
- */
224
- addTarget(entity: IDataEntity | string, namespace?: string): void;
225
- /**
226
- * Removes a target entity from the targets list.
227
- *
228
- * @param init The key of an entity, its instance, or schema.
229
- */
230
- removeTarget(init: string | DataEntity | IDataEntity): void;
231
- /**
232
- * Creates a Property Shape of AMF.
233
- * The property itself is auto-generated. If the `schema` is defined then it is used
234
- * as the `range` of the property. Otherwise basic shape is generated for the range.
235
- *
236
- * This is a preferred way of reading the AMF shape as this synchronizes changed
237
- * data properties with the shape definition.
238
- *
239
- * @returns AMF property shape definition.
240
- */
241
- toApiShape(): IApiPropertyShape;
242
- /**
243
- * @deprecated Use the `getParentInstance()` method instead.
244
- */
245
- getParent(): DataEntity;
246
- /**
247
- * Retrieves the parent entity of this association.
248
- *
249
- * @returns The `DataEntity` instance that contains this association.
250
- */
251
- getParentInstance(): DataEntity;
252
- /**
253
- * Creates the `schema` object if missing and returns it.
254
- * @returns The schema object.
255
- */
256
- ensureSchema(): IApiAssociationShape;
257
- /**
258
- * Checks whether the passed value is one of the supported data property attributes.
259
- * @param value The value to test
260
- * @returns True when the passed value is one of the supported data property attributes.
261
- * @deprecated
262
- */
263
- static isValidAttribute(value: unknown): value is DataAttributeAttribute;
264
- /**
265
- * Creates if not existing and returns web bindings definition.
266
- * @returns The web binding definition
267
- */
268
- getWebBinding(): AssociationWebBindings;
269
- /**
270
- * Returns the schema value of the binding, if any was created.
271
- * @param type The type of the binding to read.
272
- * @returns The binding schema, if any
273
- */
274
- readBinding(type: 'web' | 'protobuf'): AssociationBindings | undefined;
275
- /**
276
- * Checks whether the association is a child of the given namespace, data model, or an entity.
277
- * The relationship doesn't have to be direct, as long as the association is in the hierarchy it will return true.
278
- *
279
- * @param key The key of the parent to check.
280
- * @returns True if this data association is a child of the given namespace, data model, or an entity
281
- */
282
- isChildOf(key: string): boolean;
283
- }
284
- //# sourceMappingURL=DataAssociation.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DataAssociation.d.ts","sourceRoot":"","sources":["../../../../src/modeling/legacy/DataAssociation.ts"],"names":[],"mappings":"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"}