@api-client/core 0.19.1 → 0.19.2

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 (117) hide show
  1. package/build/src/mocking/ModelingMock.d.ts +2 -0
  2. package/build/src/mocking/ModelingMock.d.ts.map +1 -1
  3. package/build/src/mocking/ModelingMock.js +2 -0
  4. package/build/src/mocking/ModelingMock.js.map +1 -1
  5. package/build/src/mocking/lib/Ai.d.ts +11 -0
  6. package/build/src/mocking/lib/Ai.d.ts.map +1 -0
  7. package/build/src/mocking/lib/Ai.js +53 -0
  8. package/build/src/mocking/lib/Ai.js.map +1 -0
  9. package/build/src/modeling/ai/DataDomainDelta.d.ts +146 -0
  10. package/build/src/modeling/ai/DataDomainDelta.d.ts.map +1 -0
  11. package/build/src/modeling/ai/DataDomainDelta.js +729 -0
  12. package/build/src/modeling/ai/DataDomainDelta.js.map +1 -0
  13. package/build/src/modeling/ai/DomainSerialization.d.ts +20 -0
  14. package/build/src/modeling/ai/DomainSerialization.d.ts.map +1 -0
  15. package/build/src/modeling/ai/DomainSerialization.js +185 -0
  16. package/build/src/modeling/ai/DomainSerialization.js.map +1 -0
  17. package/build/src/modeling/ai/domain_response_schema.d.ts +806 -0
  18. package/build/src/modeling/ai/domain_response_schema.d.ts.map +1 -0
  19. package/build/src/modeling/ai/domain_response_schema.js +289 -0
  20. package/build/src/modeling/ai/domain_response_schema.js.map +1 -0
  21. package/build/src/modeling/ai/domain_tools.d.ts +68 -0
  22. package/build/src/modeling/ai/domain_tools.d.ts.map +1 -0
  23. package/build/src/modeling/ai/domain_tools.js +71 -0
  24. package/build/src/modeling/ai/domain_tools.js.map +1 -0
  25. package/build/src/modeling/ai/index.d.ts +10 -0
  26. package/build/src/modeling/ai/index.d.ts.map +1 -0
  27. package/build/src/modeling/ai/index.js +9 -0
  28. package/build/src/modeling/ai/index.js.map +1 -0
  29. package/build/src/modeling/ai/message_parser.d.ts +23 -0
  30. package/build/src/modeling/ai/message_parser.d.ts.map +1 -0
  31. package/build/src/modeling/ai/message_parser.js +93 -0
  32. package/build/src/modeling/ai/message_parser.js.map +1 -0
  33. package/build/src/modeling/ai/prompts/domain_system.d.ts +6 -0
  34. package/build/src/modeling/ai/prompts/domain_system.d.ts.map +1 -0
  35. package/build/src/modeling/ai/prompts/domain_system.js +80 -0
  36. package/build/src/modeling/ai/prompts/domain_system.js.map +1 -0
  37. package/build/src/modeling/ai/tools/DataDomain.tools.d.ts +25 -0
  38. package/build/src/modeling/ai/tools/DataDomain.tools.d.ts.map +1 -0
  39. package/build/src/modeling/ai/tools/DataDomain.tools.js +334 -0
  40. package/build/src/modeling/ai/tools/DataDomain.tools.js.map +1 -0
  41. package/build/src/modeling/ai/tools/Semantic.tools.d.ts +48 -0
  42. package/build/src/modeling/ai/tools/Semantic.tools.d.ts.map +1 -0
  43. package/build/src/modeling/ai/tools/Semantic.tools.js +36 -0
  44. package/build/src/modeling/ai/tools/Semantic.tools.js.map +1 -0
  45. package/build/src/modeling/ai/tools/config.d.ts +13 -0
  46. package/build/src/modeling/ai/tools/config.d.ts.map +1 -0
  47. package/build/src/modeling/ai/tools/config.js +2 -0
  48. package/build/src/modeling/ai/tools/config.js.map +1 -0
  49. package/build/src/modeling/ai/types.d.ts +302 -0
  50. package/build/src/modeling/ai/types.d.ts.map +1 -0
  51. package/build/src/modeling/ai/types.js +40 -0
  52. package/build/src/modeling/ai/types.js.map +1 -0
  53. package/build/src/models/AiMessage.d.ts +185 -0
  54. package/build/src/models/AiMessage.d.ts.map +1 -0
  55. package/build/src/models/AiMessage.js +203 -0
  56. package/build/src/models/AiMessage.js.map +1 -0
  57. package/build/src/models/AiSession.d.ts +80 -0
  58. package/build/src/models/AiSession.d.ts.map +1 -0
  59. package/build/src/models/AiSession.js +102 -0
  60. package/build/src/models/AiSession.js.map +1 -0
  61. package/build/src/models/kinds.d.ts +2 -0
  62. package/build/src/models/kinds.d.ts.map +1 -1
  63. package/build/src/models/kinds.js +2 -0
  64. package/build/src/models/kinds.js.map +1 -1
  65. package/build/src/sdk/AiSdk.d.ts +93 -0
  66. package/build/src/sdk/AiSdk.d.ts.map +1 -0
  67. package/build/src/sdk/AiSdk.js +348 -0
  68. package/build/src/sdk/AiSdk.js.map +1 -0
  69. package/build/src/sdk/RouteBuilder.d.ts +7 -0
  70. package/build/src/sdk/RouteBuilder.d.ts.map +1 -1
  71. package/build/src/sdk/RouteBuilder.js +18 -0
  72. package/build/src/sdk/RouteBuilder.js.map +1 -1
  73. package/build/src/sdk/Sdk.d.ts +2 -0
  74. package/build/src/sdk/Sdk.d.ts.map +1 -1
  75. package/build/src/sdk/Sdk.js +2 -0
  76. package/build/src/sdk/Sdk.js.map +1 -1
  77. package/build/src/sdk/SdkBase.d.ts +4 -0
  78. package/build/src/sdk/SdkBase.d.ts.map +1 -1
  79. package/build/src/sdk/SdkBase.js.map +1 -1
  80. package/build/src/sdk/SdkMock.d.ts +15 -0
  81. package/build/src/sdk/SdkMock.d.ts.map +1 -1
  82. package/build/src/sdk/SdkMock.js +118 -0
  83. package/build/src/sdk/SdkMock.js.map +1 -1
  84. package/build/tsconfig.tsbuildinfo +1 -1
  85. package/data/models/example-generator-api.json +22 -22
  86. package/package.json +3 -3
  87. package/src/mocking/ModelingMock.ts +2 -0
  88. package/src/mocking/lib/Ai.ts +71 -0
  89. package/src/modeling/ai/DataDomainDelta.ts +798 -0
  90. package/src/modeling/ai/DomainSerialization.ts +199 -0
  91. package/src/modeling/ai/domain_response_schema.ts +301 -0
  92. package/src/modeling/ai/domain_tools.ts +76 -0
  93. package/src/modeling/ai/message_parser.ts +101 -0
  94. package/src/modeling/ai/prompts/domain_system.ts +79 -0
  95. package/src/modeling/ai/readme.md +8 -0
  96. package/src/modeling/ai/tools/DataDomain.tools.ts +365 -0
  97. package/src/modeling/ai/tools/Semantic.tools.ts +38 -0
  98. package/src/modeling/ai/tools/config.ts +13 -0
  99. package/src/modeling/ai/tools/readme.md +3 -0
  100. package/src/modeling/ai/types.ts +306 -0
  101. package/src/models/AiMessage.ts +335 -0
  102. package/src/models/AiSession.ts +160 -0
  103. package/src/models/kinds.ts +2 -0
  104. package/src/sdk/AiSdk.ts +395 -0
  105. package/src/sdk/RouteBuilder.ts +27 -0
  106. package/src/sdk/Sdk.ts +3 -0
  107. package/src/sdk/SdkBase.ts +4 -0
  108. package/src/sdk/SdkMock.ts +185 -0
  109. package/tests/unit/mocking/current/Ai.spec.ts +109 -0
  110. package/tests/unit/modeling/ai/DataDomainDelta.spec.ts +419 -0
  111. package/tests/unit/modeling/ai/DomainAiTools.spec.ts +29 -0
  112. package/tests/unit/modeling/ai/DomainSerialization.spec.ts +143 -0
  113. package/tests/unit/modeling/ai/message_parser.spec.ts +157 -0
  114. package/tests/unit/modeling/ai/tools/DataDomain.tools.spec.ts +64 -0
  115. package/tests/unit/modeling/ai/tools/Semantic.tools.spec.ts +55 -0
  116. package/tests/unit/models/AiMessage.spec.ts +216 -0
  117. package/tests/unit/models/AiSession.spec.ts +147 -0
@@ -0,0 +1,806 @@
1
+ import { Type } from './types.js';
2
+ /**
3
+ * Must comply with the `AiDomainDeltaResponse` type.
4
+ */
5
+ export declare const DOMAIN_SCHEMA: {
6
+ type: Type;
7
+ properties: {
8
+ sessionTitle: {
9
+ type: Type;
10
+ description: string;
11
+ };
12
+ reasoning: {
13
+ type: Type;
14
+ description: string;
15
+ };
16
+ delta: {
17
+ type: Type;
18
+ properties: {
19
+ addedModels: {
20
+ type: Type;
21
+ items: {
22
+ type: Type;
23
+ properties: {
24
+ key: {
25
+ type: Type;
26
+ };
27
+ name: {
28
+ type: Type;
29
+ };
30
+ description: {
31
+ type: Type;
32
+ };
33
+ };
34
+ required: string[];
35
+ };
36
+ description: string;
37
+ };
38
+ deletedModelKeys: {
39
+ type: Type;
40
+ items: {
41
+ type: Type;
42
+ };
43
+ description: string;
44
+ };
45
+ modifiedModels: {
46
+ type: Type;
47
+ items: {
48
+ type: Type;
49
+ properties: {
50
+ key: {
51
+ type: Type;
52
+ };
53
+ name: {
54
+ type: Type;
55
+ };
56
+ description: {
57
+ type: Type;
58
+ };
59
+ };
60
+ required: string[];
61
+ };
62
+ description: string;
63
+ };
64
+ addedEntities: {
65
+ type: Type;
66
+ items: {
67
+ type: Type;
68
+ properties: {
69
+ key: {
70
+ type: Type;
71
+ };
72
+ modelKey: {
73
+ type: Type;
74
+ description: string;
75
+ };
76
+ name: {
77
+ type: Type;
78
+ };
79
+ displayName: {
80
+ type: Type;
81
+ };
82
+ description: {
83
+ type: Type;
84
+ };
85
+ tags: {
86
+ type: Type;
87
+ items: {
88
+ type: Type;
89
+ };
90
+ };
91
+ semantics: {
92
+ type: Type;
93
+ items: {
94
+ type: Type;
95
+ properties: {
96
+ id: {
97
+ type: Type;
98
+ };
99
+ config: {
100
+ type: Type;
101
+ };
102
+ };
103
+ required: string[];
104
+ };
105
+ description: string;
106
+ };
107
+ properties: {
108
+ type: Type;
109
+ items: {
110
+ type: Type;
111
+ properties: {
112
+ key: {
113
+ type: Type;
114
+ };
115
+ name: {
116
+ type: Type;
117
+ };
118
+ displayName: {
119
+ type: Type;
120
+ };
121
+ description: {
122
+ type: Type;
123
+ };
124
+ type: {
125
+ type: Type;
126
+ description: string;
127
+ };
128
+ constraints: {
129
+ type: Type;
130
+ properties: {
131
+ required: {
132
+ type: Type;
133
+ };
134
+ unique: {
135
+ type: Type;
136
+ };
137
+ index: {
138
+ type: Type;
139
+ };
140
+ primary: {
141
+ type: Type;
142
+ };
143
+ multiple: {
144
+ type: Type;
145
+ };
146
+ readOnly: {
147
+ type: Type;
148
+ };
149
+ writeOnly: {
150
+ type: Type;
151
+ };
152
+ };
153
+ };
154
+ deprecated: {
155
+ type: Type;
156
+ };
157
+ schema: {
158
+ type: Type;
159
+ properties: {
160
+ minimum: {
161
+ type: Type;
162
+ };
163
+ maximum: {
164
+ type: Type;
165
+ };
166
+ exclusiveMinimum: {
167
+ type: Type;
168
+ };
169
+ exclusiveMaximum: {
170
+ type: Type;
171
+ };
172
+ multipleOf: {
173
+ type: Type;
174
+ };
175
+ enum: {
176
+ type: Type;
177
+ items: {
178
+ type: Type;
179
+ };
180
+ };
181
+ examples: {
182
+ type: Type;
183
+ items: {
184
+ type: Type;
185
+ };
186
+ };
187
+ defaultValue: {
188
+ type: Type;
189
+ properties: {
190
+ type: {
191
+ type: Type;
192
+ description: string;
193
+ };
194
+ value: {
195
+ type: Type;
196
+ description: string;
197
+ };
198
+ };
199
+ required: string[];
200
+ };
201
+ pattern: {
202
+ type: Type;
203
+ };
204
+ };
205
+ };
206
+ semantics: {
207
+ type: Type;
208
+ items: {
209
+ type: Type;
210
+ properties: {
211
+ id: {
212
+ type: Type;
213
+ };
214
+ config: {
215
+ type: Type;
216
+ };
217
+ };
218
+ required: string[];
219
+ };
220
+ description: string;
221
+ };
222
+ tags: {
223
+ type: Type;
224
+ items: {
225
+ type: Type;
226
+ };
227
+ };
228
+ };
229
+ required: string[];
230
+ };
231
+ };
232
+ associations: {
233
+ type: Type;
234
+ items: {
235
+ type: Type;
236
+ properties: {
237
+ key: {
238
+ type: Type;
239
+ };
240
+ name: {
241
+ type: Type;
242
+ };
243
+ displayName: {
244
+ type: Type;
245
+ };
246
+ description: {
247
+ type: Type;
248
+ };
249
+ targets: {
250
+ type: Type;
251
+ items: {
252
+ type: Type;
253
+ };
254
+ description: string;
255
+ };
256
+ required: {
257
+ type: Type;
258
+ };
259
+ multiple: {
260
+ type: Type;
261
+ description: string;
262
+ };
263
+ onDelete: {
264
+ type: Type;
265
+ description: string;
266
+ };
267
+ semantics: {
268
+ type: Type;
269
+ items: {
270
+ type: Type;
271
+ properties: {
272
+ id: {
273
+ type: Type;
274
+ };
275
+ config: {
276
+ type: Type;
277
+ };
278
+ };
279
+ required: string[];
280
+ };
281
+ description: string;
282
+ };
283
+ schema: {
284
+ type: Type;
285
+ properties: {
286
+ linked: {
287
+ type: Type;
288
+ };
289
+ unionType: {
290
+ type: Type;
291
+ description: string;
292
+ };
293
+ };
294
+ };
295
+ };
296
+ required: string[];
297
+ };
298
+ };
299
+ };
300
+ required: string[];
301
+ };
302
+ description: string;
303
+ };
304
+ deletedEntityKeys: {
305
+ type: Type;
306
+ items: {
307
+ type: Type;
308
+ };
309
+ description: string;
310
+ };
311
+ modifiedEntities: {
312
+ type: Type;
313
+ items: {
314
+ type: Type;
315
+ properties: {
316
+ key: {
317
+ type: Type;
318
+ description: string;
319
+ };
320
+ modelKey: {
321
+ type: Type;
322
+ description: string;
323
+ };
324
+ name: {
325
+ type: Type;
326
+ };
327
+ displayName: {
328
+ type: Type;
329
+ };
330
+ description: {
331
+ type: Type;
332
+ };
333
+ tags: {
334
+ type: Type;
335
+ items: {
336
+ type: Type;
337
+ };
338
+ };
339
+ addedSemantics: {
340
+ type: Type;
341
+ items: {
342
+ type: Type;
343
+ properties: {
344
+ id: {
345
+ type: Type;
346
+ };
347
+ config: {
348
+ type: Type;
349
+ };
350
+ };
351
+ required: string[];
352
+ };
353
+ description: string;
354
+ };
355
+ modifiedSemantics: {
356
+ type: Type;
357
+ items: {
358
+ type: Type;
359
+ properties: {
360
+ id: {
361
+ type: Type;
362
+ };
363
+ config: {
364
+ type: Type;
365
+ };
366
+ };
367
+ required: string[];
368
+ };
369
+ };
370
+ deletedSemanticIds: {
371
+ type: Type;
372
+ items: {
373
+ type: Type;
374
+ };
375
+ };
376
+ addedProperties: {
377
+ type: Type;
378
+ items: {
379
+ type: Type;
380
+ properties: {
381
+ key: {
382
+ type: Type;
383
+ };
384
+ name: {
385
+ type: Type;
386
+ };
387
+ displayName: {
388
+ type: Type;
389
+ };
390
+ description: {
391
+ type: Type;
392
+ };
393
+ type: {
394
+ type: Type;
395
+ description: string;
396
+ };
397
+ constraints: {
398
+ type: Type;
399
+ properties: {
400
+ required: {
401
+ type: Type;
402
+ };
403
+ unique: {
404
+ type: Type;
405
+ };
406
+ index: {
407
+ type: Type;
408
+ };
409
+ primary: {
410
+ type: Type;
411
+ };
412
+ multiple: {
413
+ type: Type;
414
+ };
415
+ readOnly: {
416
+ type: Type;
417
+ };
418
+ writeOnly: {
419
+ type: Type;
420
+ };
421
+ };
422
+ };
423
+ deprecated: {
424
+ type: Type;
425
+ };
426
+ schema: {
427
+ type: Type;
428
+ properties: {
429
+ minimum: {
430
+ type: Type;
431
+ };
432
+ maximum: {
433
+ type: Type;
434
+ };
435
+ exclusiveMinimum: {
436
+ type: Type;
437
+ };
438
+ exclusiveMaximum: {
439
+ type: Type;
440
+ };
441
+ multipleOf: {
442
+ type: Type;
443
+ };
444
+ enum: {
445
+ type: Type;
446
+ items: {
447
+ type: Type;
448
+ };
449
+ };
450
+ examples: {
451
+ type: Type;
452
+ items: {
453
+ type: Type;
454
+ };
455
+ };
456
+ defaultValue: {
457
+ type: Type;
458
+ properties: {
459
+ type: {
460
+ type: Type;
461
+ description: string;
462
+ };
463
+ value: {
464
+ type: Type;
465
+ description: string;
466
+ };
467
+ };
468
+ required: string[];
469
+ };
470
+ pattern: {
471
+ type: Type;
472
+ };
473
+ };
474
+ };
475
+ semantics: {
476
+ type: Type;
477
+ items: {
478
+ type: Type;
479
+ properties: {
480
+ id: {
481
+ type: Type;
482
+ };
483
+ config: {
484
+ type: Type;
485
+ };
486
+ };
487
+ required: string[];
488
+ };
489
+ description: string;
490
+ };
491
+ tags: {
492
+ type: Type;
493
+ items: {
494
+ type: Type;
495
+ };
496
+ };
497
+ };
498
+ required: string[];
499
+ };
500
+ };
501
+ modifiedProperties: {
502
+ type: Type;
503
+ items: {
504
+ type: Type;
505
+ properties: {
506
+ key: {
507
+ type: Type;
508
+ };
509
+ name: {
510
+ type: Type;
511
+ };
512
+ displayName: {
513
+ type: Type;
514
+ };
515
+ description: {
516
+ type: Type;
517
+ };
518
+ type: {
519
+ type: Type;
520
+ description: string;
521
+ };
522
+ constraints: {
523
+ type: Type;
524
+ properties: {
525
+ required: {
526
+ type: Type;
527
+ };
528
+ unique: {
529
+ type: Type;
530
+ };
531
+ index: {
532
+ type: Type;
533
+ };
534
+ primary: {
535
+ type: Type;
536
+ };
537
+ multiple: {
538
+ type: Type;
539
+ };
540
+ readOnly: {
541
+ type: Type;
542
+ };
543
+ writeOnly: {
544
+ type: Type;
545
+ };
546
+ };
547
+ };
548
+ deprecated: {
549
+ type: Type;
550
+ };
551
+ schema: {
552
+ type: Type;
553
+ properties: {
554
+ minimum: {
555
+ type: Type;
556
+ };
557
+ maximum: {
558
+ type: Type;
559
+ };
560
+ exclusiveMinimum: {
561
+ type: Type;
562
+ };
563
+ exclusiveMaximum: {
564
+ type: Type;
565
+ };
566
+ multipleOf: {
567
+ type: Type;
568
+ };
569
+ enum: {
570
+ type: Type;
571
+ items: {
572
+ type: Type;
573
+ };
574
+ };
575
+ examples: {
576
+ type: Type;
577
+ items: {
578
+ type: Type;
579
+ };
580
+ };
581
+ defaultValue: {
582
+ type: Type;
583
+ properties: {
584
+ type: {
585
+ type: Type;
586
+ description: string;
587
+ };
588
+ value: {
589
+ type: Type;
590
+ description: string;
591
+ };
592
+ };
593
+ required: string[];
594
+ };
595
+ pattern: {
596
+ type: Type;
597
+ };
598
+ };
599
+ };
600
+ addedSemantics: {
601
+ type: Type;
602
+ items: {
603
+ type: Type;
604
+ properties: {
605
+ id: {
606
+ type: Type;
607
+ };
608
+ config: {
609
+ type: Type;
610
+ };
611
+ };
612
+ required: string[];
613
+ };
614
+ description: string;
615
+ };
616
+ modifiedSemantics: {
617
+ type: Type;
618
+ items: {
619
+ type: Type;
620
+ properties: {
621
+ id: {
622
+ type: Type;
623
+ };
624
+ config: {
625
+ type: Type;
626
+ };
627
+ };
628
+ required: string[];
629
+ };
630
+ };
631
+ deletedSemanticIds: {
632
+ type: Type;
633
+ items: {
634
+ type: Type;
635
+ };
636
+ };
637
+ };
638
+ required: string[];
639
+ };
640
+ };
641
+ deletedPropertyKeys: {
642
+ type: Type;
643
+ items: {
644
+ type: Type;
645
+ };
646
+ };
647
+ addedAssociations: {
648
+ type: Type;
649
+ items: {
650
+ type: Type;
651
+ properties: {
652
+ key: {
653
+ type: Type;
654
+ };
655
+ name: {
656
+ type: Type;
657
+ };
658
+ displayName: {
659
+ type: Type;
660
+ };
661
+ description: {
662
+ type: Type;
663
+ };
664
+ targets: {
665
+ type: Type;
666
+ items: {
667
+ type: Type;
668
+ };
669
+ description: string;
670
+ };
671
+ required: {
672
+ type: Type;
673
+ };
674
+ multiple: {
675
+ type: Type;
676
+ description: string;
677
+ };
678
+ onDelete: {
679
+ type: Type;
680
+ description: string;
681
+ };
682
+ semantics: {
683
+ type: Type;
684
+ items: {
685
+ type: Type;
686
+ properties: {
687
+ id: {
688
+ type: Type;
689
+ };
690
+ config: {
691
+ type: Type;
692
+ };
693
+ };
694
+ required: string[];
695
+ };
696
+ description: string;
697
+ };
698
+ schema: {
699
+ type: Type;
700
+ properties: {
701
+ linked: {
702
+ type: Type;
703
+ };
704
+ unionType: {
705
+ type: Type;
706
+ description: string;
707
+ };
708
+ };
709
+ };
710
+ };
711
+ required: string[];
712
+ };
713
+ };
714
+ modifiedAssociations: {
715
+ type: Type;
716
+ items: {
717
+ type: Type;
718
+ properties: {
719
+ key: {
720
+ type: Type;
721
+ };
722
+ name: {
723
+ type: Type;
724
+ };
725
+ displayName: {
726
+ type: Type;
727
+ };
728
+ description: {
729
+ type: Type;
730
+ };
731
+ targets: {
732
+ type: Type;
733
+ items: {
734
+ type: Type;
735
+ };
736
+ };
737
+ required: {
738
+ type: Type;
739
+ };
740
+ multiple: {
741
+ type: Type;
742
+ description: string;
743
+ };
744
+ onDelete: {
745
+ type: Type;
746
+ description: string;
747
+ };
748
+ addedSemantics: {
749
+ type: Type;
750
+ items: {
751
+ type: Type;
752
+ properties: {
753
+ id: {
754
+ type: Type;
755
+ };
756
+ config: {
757
+ type: Type;
758
+ };
759
+ };
760
+ required: string[];
761
+ };
762
+ description: string;
763
+ };
764
+ modifiedSemantics: {
765
+ type: Type;
766
+ items: {
767
+ type: Type;
768
+ properties: {
769
+ id: {
770
+ type: Type;
771
+ };
772
+ config: {
773
+ type: Type;
774
+ };
775
+ };
776
+ required: string[];
777
+ };
778
+ };
779
+ deletedSemanticIds: {
780
+ type: Type;
781
+ items: {
782
+ type: Type;
783
+ };
784
+ };
785
+ };
786
+ required: string[];
787
+ };
788
+ };
789
+ deletedAssociationKeys: {
790
+ type: Type;
791
+ items: {
792
+ type: Type;
793
+ };
794
+ };
795
+ };
796
+ required: string[];
797
+ };
798
+ description: string;
799
+ };
800
+ };
801
+ required: string[];
802
+ };
803
+ };
804
+ required: string[];
805
+ };
806
+ //# sourceMappingURL=domain_response_schema.d.ts.map