exupery 0.3.21 → 0.3.22

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 (22) hide show
  1. package/dist/implementation/generated/pareto/generic/serialize.js +4 -4
  2. package/dist/implementation/generated/pareto/generic/unmarshall.js +9 -9
  3. package/dist/implementation/generated/pareto/schemas/implementation/marshall.js +47 -37
  4. package/dist/implementation/generated/pareto/schemas/implementation/resolve.js +32 -21
  5. package/dist/implementation/generated/pareto/schemas/implementation/unmarshall.js +18 -10
  6. package/dist/implementation/generated/pareto/schemas/interface/marshall.js +63 -53
  7. package/dist/implementation/generated/pareto/schemas/interface/resolve.js +36 -21
  8. package/dist/implementation/generated/pareto/schemas/interface/unmarshall.js +51 -47
  9. package/dist/implementation/generated/pareto/schemas/typescript_light/marshall.js +26 -26
  10. package/dist/implementation/manual/primitives/text/serializers/identifier.js +3 -3
  11. package/dist/implementation/manual/schemas/implementation/transformers/typescript_light.js +37 -32
  12. package/dist/implementation/manual/schemas/interface/transformers/typescript_light.js +40 -40
  13. package/dist/implementation/manual/schemas/typescript_light/transformers/fountain_pen_block.js +21 -21
  14. package/dist/interface/generated/pareto/schemas/implementation/data_types/source.d.ts +96 -73
  15. package/dist/interface/generated/pareto/schemas/implementation/data_types/target.d.ts +96 -73
  16. package/dist/interface/generated/pareto/schemas/interface/data_types/source.d.ts +170 -162
  17. package/dist/interface/generated/pareto/schemas/interface/data_types/target.d.ts +170 -162
  18. package/dist/shorthands/implementation.d.ts +5 -5
  19. package/dist/shorthands/implementation.js +15 -14
  20. package/dist/shorthands/interface.d.ts +21 -20
  21. package/dist/shorthands/interface.js +66 -60
  22. package/package.json +2 -2
@@ -1,3 +1,4 @@
1
+ import * as _pi from 'pareto-core-interface';
1
2
  import * as _i_core from "../../../core/resolved";
2
3
  export type _T_Type_Arguments = _i_core._T_Dictionary<null, _T_Type>;
3
4
  export type _T_Imports = _i_core._T_Dictionary<null, {
@@ -15,8 +16,8 @@ export type _T_Type_Parameters = _i_core._T_Dictionary<null, null>;
15
16
  export type _T_Module = {
16
17
  readonly 'imports': _T_Imports;
17
18
  readonly 'type parameters': _T_Type_Parameters;
18
- readonly 'types': _i_core._T_Dictionary<null, {
19
- readonly 'parameters': _T_Type_Parameters;
19
+ readonly 'data types': _i_core._T_Dictionary<null, {
20
+ readonly 'deprecated parameters': _T_Type_Parameters;
20
21
  readonly 'type': _T_Type;
21
22
  }>;
22
23
  };
@@ -25,7 +26,16 @@ export type _T_Type_Parameter_Selection = {
25
26
  readonly 'location': _i_core._T_State_Group<null, readonly ['module', null] | readonly ['type', null] | readonly ['function', null]>;
26
27
  readonly 'parameter': string;
27
28
  };
28
- export type _T_Type = _i_core._T_State_Group<null, readonly ['boolean', null] | readonly [
29
+ export type _T_Type = _i_core._T_State_Group<null, readonly [
30
+ 'deprecated function',
31
+ {
32
+ readonly 'type parameters': _T_Type_Parameters;
33
+ readonly 'context': _T_Type;
34
+ readonly 'parameters': _i_core._T_Dictionary<null, _T_Type>;
35
+ readonly 'return': _T_Type;
36
+ readonly 'abort': _pi.Optional_Value<_T_Type>;
37
+ }
38
+ ] | readonly ['deprecated parameter', _T_Type_Parameter_Selection] | readonly ['boolean', null] | readonly [
29
39
  'component',
30
40
  {
31
41
  readonly 'location': _i_core._T_State_Group<null, readonly [
@@ -38,23 +48,13 @@ export type _T_Type = _i_core._T_State_Group<null, readonly ['boolean', null] |
38
48
  readonly 'type arguments': _T_Type_Arguments;
39
49
  readonly 'sub selection': _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['dictionary', null] | readonly ['group', string] | readonly ['list', null] | readonly ['optional', null] | readonly ['state group', string]>>;
40
50
  }
41
- ] | readonly ['computed', _T_Type] | readonly ['dictionary', _T_Type] | readonly [
42
- 'function',
43
- {
44
- readonly 'type parameters': _T_Type_Parameters;
45
- readonly 'context': _T_Type;
46
- readonly 'parameters': _i_core._T_Dictionary<null, _T_Type>;
47
- readonly 'return': _T_Type;
48
- }
49
- ] | readonly ['group', _i_core._T_Dictionary<null, _T_Type>] | readonly ['array', _T_Type] | readonly ['null', null] | readonly [
51
+ ] | readonly ['circular dependent', _T_Type] | readonly ['dictionary', _T_Type] | readonly ['group', _i_core._T_Dictionary<null, _T_Type>] | readonly ['list', _T_Type] | readonly ['nothing', null] | readonly [
50
52
  'number',
51
53
  _i_core._T_State_Group<null, readonly [
52
- 'integer',
53
- {
54
- readonly 'signed': boolean;
55
- }
56
- ] | readonly ['float', null]>
57
- ] | readonly ['optional', _T_Type] | readonly ['parameter', _T_Type_Parameter_Selection] | readonly ['tagged union', _i_core._T_Dictionary<null, _T_Type>] | readonly ['string', null]>;
54
+ 'exact',
55
+ _i_core._T_State_Group<null, readonly ['natural', null] | readonly ['integer', null]>
56
+ ] | readonly ['approximation', null]>
57
+ ] | readonly ['optional', _T_Type] | readonly ['state group', _i_core._T_Dictionary<null, _T_Type>] | readonly ['text', null]>;
58
58
  export type Type_Arguments = _T_Type_Arguments;
59
59
  export type Imports = _T_Imports;
60
60
  export type Type_Parameters = _T_Type_Parameters;
@@ -127,22 +127,22 @@ export declare namespace _T_Module {
127
127
  namespace type_parameters {
128
128
  }
129
129
  type type_parameters = _T_Type_Parameters;
130
- namespace types {
130
+ namespace data_types {
131
131
  namespace D {
132
- namespace parameters {
132
+ namespace deprecated_parameters {
133
133
  }
134
- type parameters = _T_Type_Parameters;
134
+ type deprecated_parameters = _T_Type_Parameters;
135
135
  namespace _type {
136
136
  }
137
137
  type _type = _T_Type;
138
138
  }
139
139
  type D = {
140
- readonly 'parameters': _T_Type_Parameters;
140
+ readonly 'deprecated parameters': _T_Type_Parameters;
141
141
  readonly 'type': _T_Type;
142
142
  };
143
143
  }
144
- type types = _i_core._T_Dictionary<null, {
145
- readonly 'parameters': _T_Type_Parameters;
144
+ type data_types = _i_core._T_Dictionary<null, {
145
+ readonly 'deprecated parameters': _T_Type_Parameters;
146
146
  readonly 'type': _T_Type;
147
147
  }>;
148
148
  }
@@ -174,6 +174,39 @@ export declare namespace _T_Type_Parameter_Selection {
174
174
  }
175
175
  export declare namespace _T_Type {
176
176
  namespace SG {
177
+ namespace deprecated_function {
178
+ namespace type_parameters {
179
+ }
180
+ type type_parameters = _T_Type_Parameters;
181
+ namespace context {
182
+ }
183
+ type context = _T_Type;
184
+ namespace parameters {
185
+ namespace D {
186
+ }
187
+ type D = _T_Type;
188
+ }
189
+ type parameters = _i_core._T_Dictionary<null, _T_Type>;
190
+ namespace _return {
191
+ }
192
+ type _return = _T_Type;
193
+ namespace abort {
194
+ namespace O {
195
+ }
196
+ type O = _T_Type;
197
+ }
198
+ type abort = _pi.Optional_Value<_T_Type>;
199
+ }
200
+ type deprecated_function = {
201
+ readonly 'type parameters': _T_Type_Parameters;
202
+ readonly 'context': _T_Type;
203
+ readonly 'parameters': _i_core._T_Dictionary<null, _T_Type>;
204
+ readonly 'return': _T_Type;
205
+ readonly 'abort': _pi.Optional_Value<_T_Type>;
206
+ };
207
+ namespace deprecated_parameter {
208
+ }
209
+ type deprecated_parameter = _T_Type_Parameter_Selection;
177
210
  type _boolean = null;
178
211
  namespace component {
179
212
  namespace location {
@@ -232,83 +265,64 @@ export declare namespace _T_Type {
232
265
  readonly 'type arguments': _T_Type_Arguments;
233
266
  readonly 'sub selection': _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['dictionary', null] | readonly ['group', string] | readonly ['list', null] | readonly ['optional', null] | readonly ['state group', string]>>;
234
267
  };
235
- namespace computed {
268
+ namespace circular_dependent {
236
269
  }
237
- type computed = _T_Type;
270
+ type circular_dependent = _T_Type;
238
271
  namespace dictionary {
239
272
  }
240
273
  type dictionary = _T_Type;
241
- namespace _function {
242
- namespace type_parameters {
243
- }
244
- type type_parameters = _T_Type_Parameters;
245
- namespace context {
246
- }
247
- type context = _T_Type;
248
- namespace parameters {
249
- namespace D {
250
- }
251
- type D = _T_Type;
252
- }
253
- type parameters = _i_core._T_Dictionary<null, _T_Type>;
254
- namespace _return {
255
- }
256
- type _return = _T_Type;
257
- }
258
- type _function = {
259
- readonly 'type parameters': _T_Type_Parameters;
260
- readonly 'context': _T_Type;
261
- readonly 'parameters': _i_core._T_Dictionary<null, _T_Type>;
262
- readonly 'return': _T_Type;
263
- };
264
274
  namespace group {
265
275
  namespace D {
266
276
  }
267
277
  type D = _T_Type;
268
278
  }
269
279
  type group = _i_core._T_Dictionary<null, _T_Type>;
270
- namespace array {
280
+ namespace list {
271
281
  }
272
- type array = _T_Type;
273
- type _null = null;
282
+ type list = _T_Type;
283
+ type nothing = null;
274
284
  namespace _number {
275
285
  namespace SG {
276
- namespace integer {
277
- type signed = boolean;
286
+ namespace exact {
287
+ namespace SG {
288
+ type natural = null;
289
+ type integer = null;
290
+ }
291
+ type SG = readonly ['natural', null] | readonly ['integer', null];
278
292
  }
279
- type integer = {
280
- readonly 'signed': boolean;
281
- };
282
- type float = null;
293
+ type exact = _i_core._T_State_Group<null, readonly ['natural', null] | readonly ['integer', null]>;
294
+ type approximation = null;
283
295
  }
284
296
  type SG = readonly [
285
- 'integer',
286
- {
287
- readonly 'signed': boolean;
288
- }
289
- ] | readonly ['float', null];
297
+ 'exact',
298
+ _i_core._T_State_Group<null, readonly ['natural', null] | readonly ['integer', null]>
299
+ ] | readonly ['approximation', null];
290
300
  }
291
301
  type _number = _i_core._T_State_Group<null, readonly [
292
- 'integer',
293
- {
294
- readonly 'signed': boolean;
295
- }
296
- ] | readonly ['float', null]>;
302
+ 'exact',
303
+ _i_core._T_State_Group<null, readonly ['natural', null] | readonly ['integer', null]>
304
+ ] | readonly ['approximation', null]>;
297
305
  namespace optional {
298
306
  }
299
307
  type optional = _T_Type;
300
- namespace parameter {
301
- }
302
- type parameter = _T_Type_Parameter_Selection;
303
- namespace tagged_union {
308
+ namespace state_group {
304
309
  namespace D {
305
310
  }
306
311
  type D = _T_Type;
307
312
  }
308
- type tagged_union = _i_core._T_Dictionary<null, _T_Type>;
309
- type _string = null;
313
+ type state_group = _i_core._T_Dictionary<null, _T_Type>;
314
+ type text = null;
310
315
  }
311
- type SG = readonly ['boolean', null] | readonly [
316
+ type SG = readonly [
317
+ 'deprecated function',
318
+ {
319
+ readonly 'type parameters': _T_Type_Parameters;
320
+ readonly 'context': _T_Type;
321
+ readonly 'parameters': _i_core._T_Dictionary<null, _T_Type>;
322
+ readonly 'return': _T_Type;
323
+ readonly 'abort': _pi.Optional_Value<_T_Type>;
324
+ }
325
+ ] | readonly ['deprecated parameter', _T_Type_Parameter_Selection] | readonly ['boolean', null] | readonly [
312
326
  'component',
313
327
  {
314
328
  readonly 'location': _i_core._T_State_Group<null, readonly [
@@ -321,23 +335,13 @@ export declare namespace _T_Type {
321
335
  readonly 'type arguments': _T_Type_Arguments;
322
336
  readonly 'sub selection': _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['dictionary', null] | readonly ['group', string] | readonly ['list', null] | readonly ['optional', null] | readonly ['state group', string]>>;
323
337
  }
324
- ] | readonly ['computed', _T_Type] | readonly ['dictionary', _T_Type] | readonly [
325
- 'function',
326
- {
327
- readonly 'type parameters': _T_Type_Parameters;
328
- readonly 'context': _T_Type;
329
- readonly 'parameters': _i_core._T_Dictionary<null, _T_Type>;
330
- readonly 'return': _T_Type;
331
- }
332
- ] | readonly ['group', _i_core._T_Dictionary<null, _T_Type>] | readonly ['array', _T_Type] | readonly ['null', null] | readonly [
338
+ ] | readonly ['circular dependent', _T_Type] | readonly ['dictionary', _T_Type] | readonly ['group', _i_core._T_Dictionary<null, _T_Type>] | readonly ['list', _T_Type] | readonly ['nothing', null] | readonly [
333
339
  'number',
334
340
  _i_core._T_State_Group<null, readonly [
335
- 'integer',
336
- {
337
- readonly 'signed': boolean;
338
- }
339
- ] | readonly ['float', null]>
340
- ] | readonly ['optional', _T_Type] | readonly ['parameter', _T_Type_Parameter_Selection] | readonly ['tagged union', _i_core._T_Dictionary<null, _T_Type>] | readonly ['string', null];
341
+ 'exact',
342
+ _i_core._T_State_Group<null, readonly ['natural', null] | readonly ['integer', null]>
343
+ ] | readonly ['approximation', null]>
344
+ ] | readonly ['optional', _T_Type] | readonly ['state group', _i_core._T_Dictionary<null, _T_Type>] | readonly ['text', null];
341
345
  }
342
346
  export declare namespace Type_Arguments {
343
347
  namespace D {
@@ -404,22 +408,22 @@ export declare namespace Module {
404
408
  namespace type_parameters {
405
409
  }
406
410
  type type_parameters = _T_Type_Parameters;
407
- namespace types {
411
+ namespace data_types {
408
412
  namespace D {
409
- namespace parameters {
413
+ namespace deprecated_parameters {
410
414
  }
411
- type parameters = _T_Type_Parameters;
415
+ type deprecated_parameters = _T_Type_Parameters;
412
416
  namespace _type {
413
417
  }
414
418
  type _type = _T_Type;
415
419
  }
416
420
  type D = {
417
- readonly 'parameters': _T_Type_Parameters;
421
+ readonly 'deprecated parameters': _T_Type_Parameters;
418
422
  readonly 'type': _T_Type;
419
423
  };
420
424
  }
421
- type types = _i_core._T_Dictionary<null, {
422
- readonly 'parameters': _T_Type_Parameters;
425
+ type data_types = _i_core._T_Dictionary<null, {
426
+ readonly 'deprecated parameters': _T_Type_Parameters;
423
427
  readonly 'type': _T_Type;
424
428
  }>;
425
429
  }
@@ -451,6 +455,39 @@ export declare namespace Type_Parameter_Selection {
451
455
  }
452
456
  export declare namespace Type {
453
457
  namespace SG {
458
+ namespace deprecated_function {
459
+ namespace type_parameters {
460
+ }
461
+ type type_parameters = _T_Type_Parameters;
462
+ namespace context {
463
+ }
464
+ type context = _T_Type;
465
+ namespace parameters {
466
+ namespace D {
467
+ }
468
+ type D = _T_Type;
469
+ }
470
+ type parameters = _i_core._T_Dictionary<null, _T_Type>;
471
+ namespace _return {
472
+ }
473
+ type _return = _T_Type;
474
+ namespace abort {
475
+ namespace O {
476
+ }
477
+ type O = _T_Type;
478
+ }
479
+ type abort = _pi.Optional_Value<_T_Type>;
480
+ }
481
+ type deprecated_function = {
482
+ readonly 'type parameters': _T_Type_Parameters;
483
+ readonly 'context': _T_Type;
484
+ readonly 'parameters': _i_core._T_Dictionary<null, _T_Type>;
485
+ readonly 'return': _T_Type;
486
+ readonly 'abort': _pi.Optional_Value<_T_Type>;
487
+ };
488
+ namespace deprecated_parameter {
489
+ }
490
+ type deprecated_parameter = _T_Type_Parameter_Selection;
454
491
  type _boolean = null;
455
492
  namespace component {
456
493
  namespace location {
@@ -509,83 +546,64 @@ export declare namespace Type {
509
546
  readonly 'type arguments': _T_Type_Arguments;
510
547
  readonly 'sub selection': _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['dictionary', null] | readonly ['group', string] | readonly ['list', null] | readonly ['optional', null] | readonly ['state group', string]>>;
511
548
  };
512
- namespace computed {
549
+ namespace circular_dependent {
513
550
  }
514
- type computed = _T_Type;
551
+ type circular_dependent = _T_Type;
515
552
  namespace dictionary {
516
553
  }
517
554
  type dictionary = _T_Type;
518
- namespace _function {
519
- namespace type_parameters {
520
- }
521
- type type_parameters = _T_Type_Parameters;
522
- namespace context {
523
- }
524
- type context = _T_Type;
525
- namespace parameters {
526
- namespace D {
527
- }
528
- type D = _T_Type;
529
- }
530
- type parameters = _i_core._T_Dictionary<null, _T_Type>;
531
- namespace _return {
532
- }
533
- type _return = _T_Type;
534
- }
535
- type _function = {
536
- readonly 'type parameters': _T_Type_Parameters;
537
- readonly 'context': _T_Type;
538
- readonly 'parameters': _i_core._T_Dictionary<null, _T_Type>;
539
- readonly 'return': _T_Type;
540
- };
541
555
  namespace group {
542
556
  namespace D {
543
557
  }
544
558
  type D = _T_Type;
545
559
  }
546
560
  type group = _i_core._T_Dictionary<null, _T_Type>;
547
- namespace array {
561
+ namespace list {
548
562
  }
549
- type array = _T_Type;
550
- type _null = null;
563
+ type list = _T_Type;
564
+ type nothing = null;
551
565
  namespace _number {
552
566
  namespace SG {
553
- namespace integer {
554
- type signed = boolean;
567
+ namespace exact {
568
+ namespace SG {
569
+ type natural = null;
570
+ type integer = null;
571
+ }
572
+ type SG = readonly ['natural', null] | readonly ['integer', null];
555
573
  }
556
- type integer = {
557
- readonly 'signed': boolean;
558
- };
559
- type float = null;
574
+ type exact = _i_core._T_State_Group<null, readonly ['natural', null] | readonly ['integer', null]>;
575
+ type approximation = null;
560
576
  }
561
577
  type SG = readonly [
562
- 'integer',
563
- {
564
- readonly 'signed': boolean;
565
- }
566
- ] | readonly ['float', null];
578
+ 'exact',
579
+ _i_core._T_State_Group<null, readonly ['natural', null] | readonly ['integer', null]>
580
+ ] | readonly ['approximation', null];
567
581
  }
568
582
  type _number = _i_core._T_State_Group<null, readonly [
569
- 'integer',
570
- {
571
- readonly 'signed': boolean;
572
- }
573
- ] | readonly ['float', null]>;
583
+ 'exact',
584
+ _i_core._T_State_Group<null, readonly ['natural', null] | readonly ['integer', null]>
585
+ ] | readonly ['approximation', null]>;
574
586
  namespace optional {
575
587
  }
576
588
  type optional = _T_Type;
577
- namespace parameter {
578
- }
579
- type parameter = _T_Type_Parameter_Selection;
580
- namespace tagged_union {
589
+ namespace state_group {
581
590
  namespace D {
582
591
  }
583
592
  type D = _T_Type;
584
593
  }
585
- type tagged_union = _i_core._T_Dictionary<null, _T_Type>;
586
- type _string = null;
594
+ type state_group = _i_core._T_Dictionary<null, _T_Type>;
595
+ type text = null;
587
596
  }
588
- type SG = readonly ['boolean', null] | readonly [
597
+ type SG = readonly [
598
+ 'deprecated function',
599
+ {
600
+ readonly 'type parameters': _T_Type_Parameters;
601
+ readonly 'context': _T_Type;
602
+ readonly 'parameters': _i_core._T_Dictionary<null, _T_Type>;
603
+ readonly 'return': _T_Type;
604
+ readonly 'abort': _pi.Optional_Value<_T_Type>;
605
+ }
606
+ ] | readonly ['deprecated parameter', _T_Type_Parameter_Selection] | readonly ['boolean', null] | readonly [
589
607
  'component',
590
608
  {
591
609
  readonly 'location': _i_core._T_State_Group<null, readonly [
@@ -598,21 +616,11 @@ export declare namespace Type {
598
616
  readonly 'type arguments': _T_Type_Arguments;
599
617
  readonly 'sub selection': _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['dictionary', null] | readonly ['group', string] | readonly ['list', null] | readonly ['optional', null] | readonly ['state group', string]>>;
600
618
  }
601
- ] | readonly ['computed', _T_Type] | readonly ['dictionary', _T_Type] | readonly [
602
- 'function',
603
- {
604
- readonly 'type parameters': _T_Type_Parameters;
605
- readonly 'context': _T_Type;
606
- readonly 'parameters': _i_core._T_Dictionary<null, _T_Type>;
607
- readonly 'return': _T_Type;
608
- }
609
- ] | readonly ['group', _i_core._T_Dictionary<null, _T_Type>] | readonly ['array', _T_Type] | readonly ['null', null] | readonly [
619
+ ] | readonly ['circular dependent', _T_Type] | readonly ['dictionary', _T_Type] | readonly ['group', _i_core._T_Dictionary<null, _T_Type>] | readonly ['list', _T_Type] | readonly ['nothing', null] | readonly [
610
620
  'number',
611
621
  _i_core._T_State_Group<null, readonly [
612
- 'integer',
613
- {
614
- readonly 'signed': boolean;
615
- }
616
- ] | readonly ['float', null]>
617
- ] | readonly ['optional', _T_Type] | readonly ['parameter', _T_Type_Parameter_Selection] | readonly ['tagged union', _i_core._T_Dictionary<null, _T_Type>] | readonly ['string', null];
622
+ 'exact',
623
+ _i_core._T_State_Group<null, readonly ['natural', null] | readonly ['integer', null]>
624
+ ] | readonly ['approximation', null]>
625
+ ] | readonly ['optional', _T_Type] | readonly ['state group', _i_core._T_Dictionary<null, _T_Type>] | readonly ['text', null];
618
626
  }