@api-client/core 0.18.18 → 0.18.19

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 (36) hide show
  1. package/build/src/modeling/DataDomain.d.ts +35 -1
  2. package/build/src/modeling/DataDomain.d.ts.map +1 -1
  3. package/build/src/modeling/DataDomain.js +120 -0
  4. package/build/src/modeling/DataDomain.js.map +1 -1
  5. package/build/src/modeling/DomainProperty.d.ts +10 -0
  6. package/build/src/modeling/DomainProperty.d.ts.map +1 -1
  7. package/build/src/modeling/DomainProperty.js +26 -2
  8. package/build/src/modeling/DomainProperty.js.map +1 -1
  9. package/build/src/modeling/definitions/SKU.d.ts.map +1 -1
  10. package/build/src/modeling/definitions/SKU.js +2 -0
  11. package/build/src/modeling/definitions/SKU.js.map +1 -1
  12. package/build/src/modeling/helpers/Intelisense.d.ts +472 -0
  13. package/build/src/modeling/helpers/Intelisense.d.ts.map +1 -0
  14. package/build/src/modeling/helpers/Intelisense.js +1200 -0
  15. package/build/src/modeling/helpers/Intelisense.js.map +1 -0
  16. package/build/src/modeling/templates/blog-domain.d.ts +40 -0
  17. package/build/src/modeling/templates/blog-domain.d.ts.map +1 -0
  18. package/build/src/modeling/templates/blog-domain.js +621 -0
  19. package/build/src/modeling/templates/blog-domain.js.map +1 -0
  20. package/build/src/modeling/templates/ecommerce-domain.d.ts +39 -0
  21. package/build/src/modeling/templates/ecommerce-domain.d.ts.map +1 -0
  22. package/build/src/modeling/templates/ecommerce-domain.js +663 -0
  23. package/build/src/modeling/templates/ecommerce-domain.js.map +1 -0
  24. package/build/src/modeling/types.d.ts +49 -0
  25. package/build/src/modeling/types.d.ts.map +1 -1
  26. package/build/src/modeling/types.js.map +1 -1
  27. package/build/tsconfig.tsbuildinfo +1 -1
  28. package/package.json +1 -1
  29. package/src/modeling/DataDomain.ts +144 -0
  30. package/src/modeling/DomainProperty.ts +23 -0
  31. package/src/modeling/definitions/SKU.ts +2 -0
  32. package/src/modeling/helpers/Intelisense.ts +1345 -0
  33. package/src/modeling/templates/blog-domain.ts +787 -0
  34. package/src/modeling/templates/ecommerce-domain.ts +834 -0
  35. package/src/modeling/types.ts +63 -0
  36. package/tests/unit/modeling/DataDomain.search.spec.ts +188 -0
@@ -0,0 +1,472 @@
1
+ import type { DomainEntity } from '../DomainEntity.js';
2
+ import type { DomainElement } from '../DomainElement.js';
3
+ import type { DomainProperty } from '../DomainProperty.js';
4
+ import type { DomainAssociation } from '../DomainAssociation.js';
5
+ import type { IThing } from '../../models/Thing.js';
6
+ /**
7
+ * Adds a field to the given entity that is automatically generated by the system.
8
+ *
9
+ * @param entity The entity to which the auto field will be added.
10
+ * @param autoField The name of the auto field to add.
11
+ * @returns The added DomainElement representing the auto field.
12
+ * @throws Error if the auto field is not supported.
13
+ */
14
+ export declare function addAutoField(entity: DomainEntity, autoField: string): DomainElement;
15
+ /**
16
+ * Adds the primary field (ID) to the given entity.
17
+ * If the ID field already exists, it returns the existing field.
18
+ * Otherwise, it creates a new ID field with a name based on the entity's name.
19
+ *
20
+ * Set properties:
21
+ * - type: 'string'
22
+ * - info.name: 'id'
23
+ * - primary: true
24
+ * - readOnly: true
25
+ * - schema.defaultValue: { type: 'function', value: 'uuid-v4' }
26
+ *
27
+ * @param entity The entity to which the ID field will be added.
28
+ * @returns The added primary field property.
29
+ */
30
+ export declare function addIdField(entity: DomainEntity, info?: Partial<IThing>): DomainElement;
31
+ /**
32
+ * Adds an email field to the given entity.
33
+ * If the email field already exists, it returns the existing field.
34
+ * Otherwise, it creates a new email field with a semantic annotation.
35
+ * @param entity The entity to which the email field will be added.
36
+ * @returns The added email field property.
37
+ */
38
+ export declare function addEmailField(entity: DomainEntity, info?: Partial<IThing>): DomainElement;
39
+ /**
40
+ * Adds a password field to the given entity.
41
+ * If the password field already exists, it returns the existing field.
42
+ * Otherwise, it creates a new password field with a semantic annotation.
43
+ * @param entity The entity to which the password field will be added.
44
+ * @param info Additional information for the password field.
45
+ * @returns The added password field property.
46
+ */
47
+ export declare function addPasswordField(entity: DomainEntity, info?: Partial<IThing>): DomainElement;
48
+ /**
49
+ * Adds a version field to the given entity.
50
+ * @param entity The entity to which the version field will be added.
51
+ * The version field is used to track the version of the entity.
52
+ * @returns The added version field property.
53
+ */
54
+ export declare function addVersionField(entity: DomainEntity, info?: Partial<IThing>): DomainElement;
55
+ export declare function addNameField(entity: DomainEntity, info?: Partial<IThing>): DomainElement;
56
+ /**
57
+ * Adds a description field to the specified entity.
58
+ * If a description field already exists, it returns the existing field.
59
+ * Otherwise, it creates a new description field with the specified information.
60
+ *
61
+ * Set properties:
62
+ * - type: 'string'
63
+ * - info.name: 'description'
64
+ * - info.displayName: 'Description'
65
+ *
66
+ * Set semantics:
67
+ * - `SemanticType.Description`
68
+ *
69
+ * @param entity The entity to which the description field will be added.
70
+ * @returns The added description field property.
71
+ */
72
+ export declare function addDescriptionField(entity: DomainEntity, info?: Partial<IThing>): DomainElement;
73
+ /**
74
+ * Adds a status field to the specified entity.
75
+ * If a status field already exists, it returns the existing field.
76
+ * Otherwise, it creates a new status field with the specified information.
77
+ *
78
+ * Set properties:
79
+ * - type: 'string'
80
+ * - info.name: 'status'
81
+ * - info.displayName: 'Status'
82
+ * - schema.enum: ['Active', 'Draft', 'Archived']
83
+ * - schema.defaultValue: { type: 'literal', value: 'Draft' }
84
+ *
85
+ * Set semantics:
86
+ * - `SemanticType.Status`
87
+ *
88
+ * @param entity The entity to which the status field will be added.
89
+ * @param info Additional information about the field.
90
+ * @returns The added status field property.
91
+ */
92
+ export declare function addStatusField(entity: DomainEntity, info?: Partial<IThing>): DomainElement;
93
+ /**
94
+ * Adds an owner field to the specified entity.
95
+ * If an owner field already exists, it returns the existing field.
96
+ * Otherwise, it creates a new owner field with the specified information.
97
+ *
98
+ * Set properties:
99
+ * - type: 'string'
100
+ * - info.name: 'owner'
101
+ * - info.displayName: 'Owner'
102
+ * - required: true
103
+ *
104
+ * Set semantics:
105
+ * - `SemanticType.ResourceOwnerIdentifier`
106
+ *
107
+ * @param entity The entity to which the owner field will be added.
108
+ * @param info Additional information about the field.
109
+ * @returns The added owner field property.
110
+ */
111
+ export declare function addOwnerField(entity: DomainEntity, info?: Partial<IThing>): DomainAssociation;
112
+ /**
113
+ * Adds an updated by field to the specified entity as an association to the User entity.
114
+ * If an updated by field already exists, it returns the existing field.
115
+ * Otherwise, it creates a new updated by field with the specified information.
116
+ *
117
+ * Set properties:
118
+ * - info.name: 'updated_by'
119
+ * - info.displayName: 'Updated By'
120
+ * - required: true
121
+ *
122
+ * Set semantics:
123
+ * - `SemanticType.ResourceOwnerIdentifier`
124
+ *
125
+ * @param entity The entity to which the updated by field will be added.
126
+ * @param info Additional information about the field.
127
+ * @returns The added updated by field property.
128
+ */
129
+ export declare function addUpdatedByField(entity: DomainEntity, info?: Partial<IThing>): DomainAssociation;
130
+ /**
131
+ * Adds a created at field to the specified entity.
132
+ * If a created at field already exists, it returns the existing field.
133
+ * Otherwise, it creates a new created at field with the specified information.
134
+ *
135
+ * Set properties:
136
+ * - type: 'datetime'
137
+ * - info.name: 'created_at'
138
+ * - info.displayName: 'Created At'
139
+ * - readOnly: true
140
+ * - index: true
141
+ * - schema.defaultValue: { type: 'function', value: 'now' }
142
+ *
143
+ * Set semantics:
144
+ * - `CreatedTimestamp`
145
+ *
146
+ * @param entity The entity to which the created at field will be added.
147
+ * @param info Additional information about the field.
148
+ * @returns The created created at field.
149
+ */
150
+ export declare function addCreatedAtField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
151
+ /**
152
+ * Adds an updated at field to the specified entity.
153
+ * If an updated at field already exists, it returns the existing field.
154
+ * Otherwise, it creates a new updated at field with the specified information.
155
+ *
156
+ * Set properties:
157
+ * - type: 'datetime'
158
+ * - info.name: 'updated_at'
159
+ * - info.displayName: 'Updated At'
160
+ * - readOnly: true
161
+ * - index: true
162
+ * - schema.defaultValue: { type: 'function', value: 'now' }
163
+ *
164
+ * Set semantics:
165
+ * - `UpdatedTimestamp`
166
+ *
167
+ * @param entity The entity to which the updated at field will be added.
168
+ * @param info Additional information about the field.
169
+ * @returns The created updated at field.
170
+ */
171
+ export declare function addUpdatedAtField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
172
+ /**
173
+ * Adds a deleted at field to the specified entity.
174
+ * If a deleted at field already exists, it returns the existing field.
175
+ * Otherwise, it creates a new deleted at field with the specified information.
176
+ *
177
+ * Set properties:
178
+ * - required: true
179
+ * - type: 'datetime'
180
+ * - info.name: 'deleted_at'
181
+ * - info.displayName: 'Deleted At'
182
+ * - readOnly: true
183
+ * - index: true
184
+ * - schema.defaultValue: { type: 'function', value: 'now' }
185
+ *
186
+ * Set semantics:
187
+ * - `SemanticType.DeletedTimestamp`
188
+ *
189
+ * @param entity The entity to which the deleted_at field will be added.
190
+ * @param info Additional information about the field.
191
+ * @returns The added deleted at field property.
192
+ */
193
+ export declare function addDeletedAtField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
194
+ /**
195
+ * Adds an is_deleted field to the specified entity.
196
+ * If an is_deleted field already exists, it returns the existing field.
197
+ * Otherwise, it creates a new is_deleted field with the specified information.
198
+ *
199
+ * Set properties:
200
+ * - type: 'boolean'
201
+ * - info.name: 'is_deleted'
202
+ * - info.displayName: 'Is Deleted'
203
+ * - readOnly: true
204
+ * - index: true
205
+ * - schema.defaultValue: { type: 'literal', value: 'false' }
206
+ *
207
+ * Set semantics:
208
+ * - `SemanticType.DeletedFlag`
209
+ *
210
+ * @param entity The entity to which the is_deleted field will be added.
211
+ * @param info Additional information about the field.
212
+ * @returns The added is_deleted field property.
213
+ */
214
+ export declare function addIsDeletedField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
215
+ /**
216
+ * Adds a first name field to the specified entity.
217
+ * If a first name field already exists, it returns the existing field.
218
+ * Otherwise, it creates a new first name field with the specified information.
219
+ *
220
+ * Set properties:
221
+ * - type: 'string'
222
+ * - info.name: 'first_name'
223
+ * - info.displayName: 'First Name'
224
+ *
225
+ * @param entity The entity to which the first name field will be added.
226
+ * @param info Additional information about the field.
227
+ * @returns The created first name field.
228
+ */
229
+ export declare function addFirstNameField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
230
+ /**
231
+ * Adds a first name field to the specified entity.
232
+ * If a first name field already exists, it returns the existing field.
233
+ * Otherwise, it creates a new first name field with the specified information.
234
+ *
235
+ * Set properties:
236
+ * - type: 'string'
237
+ * - info.name: 'first_name'
238
+ * - info.displayName: 'First Name'
239
+ *
240
+ * @param entity The entity to which the first name field will be added.
241
+ * @param info Additional information about the field.
242
+ * @returns The created first name field.
243
+ */
244
+ export declare function addLastNameField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
245
+ /**
246
+ * Adds a phone field to the specified entity.
247
+ * If a phone field already exists, it returns the existing field.
248
+ * Otherwise, it creates a new phone field with the specified information.
249
+ *
250
+ * Set properties:
251
+ * - type: 'string'
252
+ * - info.name: 'phone'
253
+ * - info.displayName: 'Phone Number'
254
+ * - index: true (to search by phone number)
255
+ *
256
+ * Set semantics:
257
+ * - id: SemanticType.Phone
258
+ *
259
+ * @param entity The entity to which the phone field will be added.
260
+ * @param info Additional information about the field.
261
+ * @returns The created phone field.
262
+ */
263
+ export declare function addPhoneField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
264
+ /**
265
+ * Adds an avatar URL field to the specified entity.
266
+ * If an avatar URL field already exists, it returns the existing field.
267
+ * Otherwise, it creates a new avatar URL field with the specified information.
268
+ *
269
+ * Set properties:
270
+ * - type: 'string'
271
+ * - info.name: 'avatar_url'
272
+ * - info.displayName: 'Avatar URL'
273
+ *
274
+ * Set semantics:
275
+ * - id: SemanticType.ImageURL
276
+ *
277
+ * @param entity The entity to which the avatar URL field will be added.
278
+ * @param info Additional information about the field.
279
+ * @returns The created avatar URL field.
280
+ */
281
+ export declare function addAvatarUrlField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
282
+ /**
283
+ * Adds a public unique name (slug) field to the specified entity.
284
+ * If a public unique name field already exists, it returns the existing field.
285
+ * Otherwise, it creates a new public unique name field with the specified information.
286
+ *
287
+ * Set properties:
288
+ * - type: 'string'
289
+ * - info.name: 'slug'
290
+ * - info.displayName: 'Public Unique Name'
291
+ * - index: true
292
+ * - required: true
293
+ * - unique: true
294
+ *
295
+ * Set semantics:
296
+ * - id: SemanticType.PublicUniqueName
297
+ *
298
+ * @param entity The entity to which the public unique name field will be added.
299
+ * @param info Additional information about the field.
300
+ * @returns The created public unique name field.
301
+ */
302
+ export declare function addPublicUniqueNameField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
303
+ /**
304
+ * Adds a SKU field to the specified entity.
305
+ * If a SKU field already exists, it returns the existing field.
306
+ * Otherwise, it creates a new SKU field with semantic annotation.
307
+ *
308
+ * Set properties:
309
+ * - type: 'string'
310
+ * - info.name: 'sku'
311
+ * - info.displayName: 'SKU'
312
+ * - required: true
313
+ * - unique: true
314
+ *
315
+ * @param entity The entity to which the SKU field will be added.
316
+ * @param info Additional information about the field.
317
+ * @returns The created SKU field.
318
+ */
319
+ export declare function addSkuField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
320
+ /**
321
+ * Adds a price field to the specified entity with currency semantic.
322
+ * If a price field already exists, it returns the existing field.
323
+ * Otherwise, it creates a new price field with proper currency handling.
324
+ *
325
+ * Set properties:
326
+ * - type: 'number'
327
+ * - info.name: 'price'
328
+ * - info.displayName: 'Price'
329
+ * - required: true
330
+ * - schema.maximum: 0
331
+ *
332
+ * @param entity The entity to which the price field will be added.
333
+ * @param info Additional information about the field.
334
+ * @returns The created price field.
335
+ */
336
+ export declare function addPriceField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
337
+ /**
338
+ * Adds a quantity field to the specified entity.
339
+ * If a quantity field already exists, it returns the existing field.
340
+ * Otherwise, it creates a new quantity field with validation.
341
+ *
342
+ * Set properties:
343
+ * - type: 'number'
344
+ * - info.name: 'quantity'
345
+ * - info.displayName: 'Quantity'
346
+ * - required: true
347
+ * - schema.minimum: 0
348
+ *
349
+ * @param entity The entity to which the quantity field will be added.
350
+ * @param info Additional information about the field.
351
+ * @returns The created quantity field.
352
+ */
353
+ export declare function addQuantityField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
354
+ /**
355
+ * Adds a weight field to the specified entity.
356
+ * If a weight field already exists, it returns the existing field.
357
+ * Otherwise, it creates a new weight field.
358
+ *
359
+ * Set properties:
360
+ * - type: 'number'
361
+ * - info.name: 'weight'
362
+ * - info.displayName: 'Weight'
363
+ *
364
+ * @param entity The entity to which the weight field will be added.
365
+ * @param info Additional information about the field.
366
+ * @returns The created weight field.
367
+ */
368
+ export declare function addWeightField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
369
+ /**
370
+ * Adds an images field to the specified entity for multiple image URLs.
371
+ * If an images field already exists, it returns the existing field.
372
+ * Otherwise, it creates a new images field with ImageURL semantic.
373
+ *
374
+ * Set properties:
375
+ * - type: 'string'
376
+ * - info.name: 'images'
377
+ * - info.displayName: 'Images'
378
+ * - multiple: true
379
+ *
380
+ * @param entity The entity to which the images field will be added.
381
+ * @param info Additional information about the field.
382
+ * @returns The created images field.
383
+ */
384
+ export declare function addImagesField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
385
+ /**
386
+ * Adds a status field with custom enum values to the specified entity.
387
+ * If a status field already exists, it returns the existing field.
388
+ * Otherwise, it creates a new status field with provided enum values.
389
+ *
390
+ * Set properties:
391
+ * - type: 'string'
392
+ * - info.name: 'status'
393
+ * - info.displayName: 'Status'
394
+ * - required: true
395
+ * - schema.enum: provided enum values
396
+ * - schema.defaultValue: first enum value
397
+ *
398
+ * @param entity The entity to which the status field will be added.
399
+ * @param enumValues Array of status values.
400
+ * @param info Additional information about the field.
401
+ * @returns The created status field.
402
+ */
403
+ export declare function addCustomStatusField(entity: DomainEntity, enumValues: string[], info?: Partial<IThing>): DomainProperty;
404
+ /**
405
+ * Adds a boolean field to the specified entity.
406
+ * If the field already exists, it returns the existing field.
407
+ * Otherwise, it creates a new boolean field with default value.
408
+ *
409
+ * Set properties:
410
+ * - type: 'boolean'
411
+ * - required: true
412
+ * - schema.defaultValue: provided default or 'false'
413
+ *
414
+ * @param entity The entity to which the boolean field will be added.
415
+ * @param fieldName Name of the boolean field.
416
+ * @param defaultValue Default boolean value.
417
+ * @param info Additional information about the field.
418
+ * @returns The created boolean field.
419
+ */
420
+ export declare function addBooleanField(entity: DomainEntity, fieldName: string, defaultValue?: string, info?: Partial<IThing>): DomainProperty;
421
+ /**
422
+ * Adds a session ID field to the specified entity.
423
+ * If a session ID field already exists, it returns the existing field.
424
+ * Otherwise, it creates a new session ID field.
425
+ *
426
+ * Set properties:
427
+ * - type: 'string'
428
+ * - info.name: 'sessionId'
429
+ * - info.displayName: 'Session ID'
430
+ *
431
+ * @param entity The entity to which the session ID field will be added.
432
+ * @param info Additional information about the field.
433
+ * @returns The created session ID field.
434
+ */
435
+ export declare function addSessionIdField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
436
+ /**
437
+ * Adds an expiration datetime field to the specified entity.
438
+ * If an expiration field already exists, it returns the existing field.
439
+ * Otherwise, it creates a new expiration field.
440
+ *
441
+ * Set properties:
442
+ * - type: 'datetime'
443
+ * - info.name: 'expiresAt'
444
+ * - info.displayName: 'Expires At'
445
+ *
446
+ * @param entity The entity to which the expiration field will be added.
447
+ * @param info Additional information about the field.
448
+ * @returns The created expiration field.
449
+ */
450
+ export declare function addExpiresAtField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
451
+ /**
452
+ * Adds a unit price field to the specified entity with currency semantic.
453
+ * If a unit price field already exists, it returns the existing field.
454
+ * Otherwise, it creates a new unit price field with proper currency handling.
455
+ *
456
+ * Set properties:
457
+ * - type: 'number'
458
+ * - info.name: 'unitPrice'
459
+ * - info.displayName: 'Unit Price'
460
+ * - required: true
461
+ *
462
+ * @param entity The entity to which the unit price field will be added.
463
+ * @param info Additional information about the field.
464
+ * @returns The created unit price field.
465
+ */
466
+ export declare function addUnitPriceField(entity: DomainEntity, info?: Partial<IThing>): DomainProperty;
467
+ /**
468
+ * Adds a currency amount field (subtotal, tax, shipping, etc.).
469
+ */
470
+ export declare function addCurrencyAmountField(entity: DomainEntity, fieldName: string, displayName: string, info?: Partial<IThing>): DomainProperty;
471
+ export declare function addRecommendedFields(entity: DomainEntity): DomainElement[];
472
+ //# sourceMappingURL=Intelisense.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Intelisense.d.ts","sourceRoot":"","sources":["../../../../src/modeling/helpers/Intelisense.ts"],"names":[],"mappings":"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"}