@genesislcap/foundation-utils 14.499.0 → 14.500.0
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.
|
@@ -250,6 +250,204 @@
|
|
|
250
250
|
}
|
|
251
251
|
]
|
|
252
252
|
},
|
|
253
|
+
{
|
|
254
|
+
"kind": "javascript-module",
|
|
255
|
+
"path": "src/data/inMemoryDatabase.ts",
|
|
256
|
+
"declarations": [
|
|
257
|
+
{
|
|
258
|
+
"kind": "class",
|
|
259
|
+
"description": "An in memory database of specific DatabaseRecord types.",
|
|
260
|
+
"name": "InMemoryDatabase",
|
|
261
|
+
"members": [
|
|
262
|
+
{
|
|
263
|
+
"kind": "field",
|
|
264
|
+
"name": "isWorking",
|
|
265
|
+
"type": {
|
|
266
|
+
"text": "boolean"
|
|
267
|
+
},
|
|
268
|
+
"privacy": "public",
|
|
269
|
+
"default": "false"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"kind": "field",
|
|
273
|
+
"name": "records",
|
|
274
|
+
"type": {
|
|
275
|
+
"text": "Record<string, T>"
|
|
276
|
+
},
|
|
277
|
+
"privacy": "private",
|
|
278
|
+
"default": "{}"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"kind": "field",
|
|
282
|
+
"name": "beforeUpdateListeners",
|
|
283
|
+
"privacy": "private"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"kind": "field",
|
|
287
|
+
"name": "afterUpdateListeners",
|
|
288
|
+
"privacy": "private"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"kind": "method",
|
|
292
|
+
"name": "create",
|
|
293
|
+
"privacy": "public",
|
|
294
|
+
"return": {
|
|
295
|
+
"type": {
|
|
296
|
+
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
"parameters": [
|
|
300
|
+
{
|
|
301
|
+
"name": "newValue",
|
|
302
|
+
"type": {
|
|
303
|
+
"text": "Omit<T, 'id'>"
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
]
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"kind": "method",
|
|
310
|
+
"name": "read",
|
|
311
|
+
"privacy": "public",
|
|
312
|
+
"return": {
|
|
313
|
+
"type": {
|
|
314
|
+
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
"parameters": [
|
|
318
|
+
{
|
|
319
|
+
"name": "id",
|
|
320
|
+
"type": {
|
|
321
|
+
"text": "string"
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
]
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"kind": "method",
|
|
328
|
+
"name": "update",
|
|
329
|
+
"privacy": "public",
|
|
330
|
+
"return": {
|
|
331
|
+
"type": {
|
|
332
|
+
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"parameters": [
|
|
336
|
+
{
|
|
337
|
+
"name": "id",
|
|
338
|
+
"type": {
|
|
339
|
+
"text": "string"
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"name": "newValue",
|
|
344
|
+
"type": {
|
|
345
|
+
"text": "Omit<Partial<T>, 'id'>"
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
]
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"kind": "method",
|
|
352
|
+
"name": "delete",
|
|
353
|
+
"privacy": "public",
|
|
354
|
+
"return": {
|
|
355
|
+
"type": {
|
|
356
|
+
"text": "Promise<DatabaseAccessResult.Delete>"
|
|
357
|
+
}
|
|
358
|
+
},
|
|
359
|
+
"parameters": [
|
|
360
|
+
{
|
|
361
|
+
"name": "id",
|
|
362
|
+
"type": {
|
|
363
|
+
"text": "string"
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
]
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"kind": "method",
|
|
370
|
+
"name": "visit",
|
|
371
|
+
"privacy": "public",
|
|
372
|
+
"return": {
|
|
373
|
+
"type": {
|
|
374
|
+
"text": "Promise<void>"
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
"parameters": [
|
|
378
|
+
{
|
|
379
|
+
"name": "visitor",
|
|
380
|
+
"type": {
|
|
381
|
+
"text": "(record: T) => void"
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
]
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"kind": "method",
|
|
388
|
+
"name": "onBeforeUpdate",
|
|
389
|
+
"privacy": "public",
|
|
390
|
+
"return": {
|
|
391
|
+
"type": {
|
|
392
|
+
"text": "() => void"
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
"parameters": [
|
|
396
|
+
{
|
|
397
|
+
"name": "listener",
|
|
398
|
+
"type": {
|
|
399
|
+
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
]
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"kind": "method",
|
|
406
|
+
"name": "onAfterUpdate",
|
|
407
|
+
"privacy": "public",
|
|
408
|
+
"return": {
|
|
409
|
+
"type": {
|
|
410
|
+
"text": "() => void"
|
|
411
|
+
}
|
|
412
|
+
},
|
|
413
|
+
"parameters": [
|
|
414
|
+
{
|
|
415
|
+
"name": "listener",
|
|
416
|
+
"type": {
|
|
417
|
+
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
]
|
|
421
|
+
}
|
|
422
|
+
]
|
|
423
|
+
}
|
|
424
|
+
],
|
|
425
|
+
"exports": [
|
|
426
|
+
{
|
|
427
|
+
"kind": "js",
|
|
428
|
+
"name": "InMemoryDatabase",
|
|
429
|
+
"declaration": {
|
|
430
|
+
"name": "InMemoryDatabase",
|
|
431
|
+
"module": "src/data/inMemoryDatabase.ts"
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
]
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"kind": "javascript-module",
|
|
438
|
+
"path": "src/data/index.ts",
|
|
439
|
+
"declarations": [],
|
|
440
|
+
"exports": [
|
|
441
|
+
{
|
|
442
|
+
"kind": "js",
|
|
443
|
+
"name": "*",
|
|
444
|
+
"declaration": {
|
|
445
|
+
"name": "*",
|
|
446
|
+
"package": "./inMemoryDatabase"
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
]
|
|
450
|
+
},
|
|
253
451
|
{
|
|
254
452
|
"kind": "javascript-module",
|
|
255
453
|
"path": "src/design-system/design-system.ts",
|
|
@@ -454,7 +652,7 @@
|
|
|
454
652
|
},
|
|
455
653
|
{
|
|
456
654
|
"kind": "javascript-module",
|
|
457
|
-
"path": "src/
|
|
655
|
+
"path": "src/decorators/index.ts",
|
|
458
656
|
"declarations": [],
|
|
459
657
|
"exports": [
|
|
460
658
|
{
|
|
@@ -462,7 +660,45 @@
|
|
|
462
660
|
"name": "*",
|
|
463
661
|
"declaration": {
|
|
464
662
|
"name": "*",
|
|
465
|
-
"package": "./
|
|
663
|
+
"package": "./renderOnChange"
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
]
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"kind": "javascript-module",
|
|
670
|
+
"path": "src/decorators/renderOnChange.ts",
|
|
671
|
+
"declarations": [
|
|
672
|
+
{
|
|
673
|
+
"kind": "function",
|
|
674
|
+
"name": "renderOnChange",
|
|
675
|
+
"parameters": [
|
|
676
|
+
{
|
|
677
|
+
"name": "target",
|
|
678
|
+
"type": {
|
|
679
|
+
"text": "FASTElement & { render(): void }"
|
|
680
|
+
},
|
|
681
|
+
"description": "The target to define the property change handler on."
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"name": "name",
|
|
685
|
+
"type": {
|
|
686
|
+
"text": "string"
|
|
687
|
+
},
|
|
688
|
+
"description": "The property name."
|
|
689
|
+
}
|
|
690
|
+
],
|
|
691
|
+
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
692
|
+
"privacy": "public"
|
|
693
|
+
}
|
|
694
|
+
],
|
|
695
|
+
"exports": [
|
|
696
|
+
{
|
|
697
|
+
"kind": "js",
|
|
698
|
+
"name": "renderOnChange",
|
|
699
|
+
"declaration": {
|
|
700
|
+
"name": "renderOnChange",
|
|
701
|
+
"module": "src/decorators/renderOnChange.ts"
|
|
466
702
|
}
|
|
467
703
|
}
|
|
468
704
|
]
|
|
@@ -492,198 +728,15 @@
|
|
|
492
728
|
},
|
|
493
729
|
{
|
|
494
730
|
"kind": "javascript-module",
|
|
495
|
-
"path": "src/
|
|
496
|
-
"declarations": [
|
|
497
|
-
|
|
498
|
-
"kind": "class",
|
|
499
|
-
"description": "An in memory database of specific DatabaseRecord types.",
|
|
500
|
-
"name": "InMemoryDatabase",
|
|
501
|
-
"members": [
|
|
502
|
-
{
|
|
503
|
-
"kind": "field",
|
|
504
|
-
"name": "isWorking",
|
|
505
|
-
"type": {
|
|
506
|
-
"text": "boolean"
|
|
507
|
-
},
|
|
508
|
-
"privacy": "public",
|
|
509
|
-
"default": "false"
|
|
510
|
-
},
|
|
511
|
-
{
|
|
512
|
-
"kind": "field",
|
|
513
|
-
"name": "records",
|
|
514
|
-
"type": {
|
|
515
|
-
"text": "Record<string, T>"
|
|
516
|
-
},
|
|
517
|
-
"privacy": "private",
|
|
518
|
-
"default": "{}"
|
|
519
|
-
},
|
|
520
|
-
{
|
|
521
|
-
"kind": "field",
|
|
522
|
-
"name": "beforeUpdateListeners",
|
|
523
|
-
"privacy": "private"
|
|
524
|
-
},
|
|
525
|
-
{
|
|
526
|
-
"kind": "field",
|
|
527
|
-
"name": "afterUpdateListeners",
|
|
528
|
-
"privacy": "private"
|
|
529
|
-
},
|
|
530
|
-
{
|
|
531
|
-
"kind": "method",
|
|
532
|
-
"name": "create",
|
|
533
|
-
"privacy": "public",
|
|
534
|
-
"return": {
|
|
535
|
-
"type": {
|
|
536
|
-
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
|
537
|
-
}
|
|
538
|
-
},
|
|
539
|
-
"parameters": [
|
|
540
|
-
{
|
|
541
|
-
"name": "newValue",
|
|
542
|
-
"type": {
|
|
543
|
-
"text": "Omit<T, 'id'>"
|
|
544
|
-
}
|
|
545
|
-
}
|
|
546
|
-
]
|
|
547
|
-
},
|
|
548
|
-
{
|
|
549
|
-
"kind": "method",
|
|
550
|
-
"name": "read",
|
|
551
|
-
"privacy": "public",
|
|
552
|
-
"return": {
|
|
553
|
-
"type": {
|
|
554
|
-
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
|
555
|
-
}
|
|
556
|
-
},
|
|
557
|
-
"parameters": [
|
|
558
|
-
{
|
|
559
|
-
"name": "id",
|
|
560
|
-
"type": {
|
|
561
|
-
"text": "string"
|
|
562
|
-
}
|
|
563
|
-
}
|
|
564
|
-
]
|
|
565
|
-
},
|
|
566
|
-
{
|
|
567
|
-
"kind": "method",
|
|
568
|
-
"name": "update",
|
|
569
|
-
"privacy": "public",
|
|
570
|
-
"return": {
|
|
571
|
-
"type": {
|
|
572
|
-
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
|
573
|
-
}
|
|
574
|
-
},
|
|
575
|
-
"parameters": [
|
|
576
|
-
{
|
|
577
|
-
"name": "id",
|
|
578
|
-
"type": {
|
|
579
|
-
"text": "string"
|
|
580
|
-
}
|
|
581
|
-
},
|
|
582
|
-
{
|
|
583
|
-
"name": "newValue",
|
|
584
|
-
"type": {
|
|
585
|
-
"text": "Omit<Partial<T>, 'id'>"
|
|
586
|
-
}
|
|
587
|
-
}
|
|
588
|
-
]
|
|
589
|
-
},
|
|
590
|
-
{
|
|
591
|
-
"kind": "method",
|
|
592
|
-
"name": "delete",
|
|
593
|
-
"privacy": "public",
|
|
594
|
-
"return": {
|
|
595
|
-
"type": {
|
|
596
|
-
"text": "Promise<DatabaseAccessResult.Delete>"
|
|
597
|
-
}
|
|
598
|
-
},
|
|
599
|
-
"parameters": [
|
|
600
|
-
{
|
|
601
|
-
"name": "id",
|
|
602
|
-
"type": {
|
|
603
|
-
"text": "string"
|
|
604
|
-
}
|
|
605
|
-
}
|
|
606
|
-
]
|
|
607
|
-
},
|
|
608
|
-
{
|
|
609
|
-
"kind": "method",
|
|
610
|
-
"name": "visit",
|
|
611
|
-
"privacy": "public",
|
|
612
|
-
"return": {
|
|
613
|
-
"type": {
|
|
614
|
-
"text": "Promise<void>"
|
|
615
|
-
}
|
|
616
|
-
},
|
|
617
|
-
"parameters": [
|
|
618
|
-
{
|
|
619
|
-
"name": "visitor",
|
|
620
|
-
"type": {
|
|
621
|
-
"text": "(record: T) => void"
|
|
622
|
-
}
|
|
623
|
-
}
|
|
624
|
-
]
|
|
625
|
-
},
|
|
626
|
-
{
|
|
627
|
-
"kind": "method",
|
|
628
|
-
"name": "onBeforeUpdate",
|
|
629
|
-
"privacy": "public",
|
|
630
|
-
"return": {
|
|
631
|
-
"type": {
|
|
632
|
-
"text": "() => void"
|
|
633
|
-
}
|
|
634
|
-
},
|
|
635
|
-
"parameters": [
|
|
636
|
-
{
|
|
637
|
-
"name": "listener",
|
|
638
|
-
"type": {
|
|
639
|
-
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
|
640
|
-
}
|
|
641
|
-
}
|
|
642
|
-
]
|
|
643
|
-
},
|
|
644
|
-
{
|
|
645
|
-
"kind": "method",
|
|
646
|
-
"name": "onAfterUpdate",
|
|
647
|
-
"privacy": "public",
|
|
648
|
-
"return": {
|
|
649
|
-
"type": {
|
|
650
|
-
"text": "() => void"
|
|
651
|
-
}
|
|
652
|
-
},
|
|
653
|
-
"parameters": [
|
|
654
|
-
{
|
|
655
|
-
"name": "listener",
|
|
656
|
-
"type": {
|
|
657
|
-
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
|
658
|
-
}
|
|
659
|
-
}
|
|
660
|
-
]
|
|
661
|
-
}
|
|
662
|
-
]
|
|
663
|
-
}
|
|
664
|
-
],
|
|
665
|
-
"exports": [
|
|
666
|
-
{
|
|
667
|
-
"kind": "js",
|
|
668
|
-
"name": "InMemoryDatabase",
|
|
669
|
-
"declaration": {
|
|
670
|
-
"name": "InMemoryDatabase",
|
|
671
|
-
"module": "src/data/inMemoryDatabase.ts"
|
|
672
|
-
}
|
|
673
|
-
}
|
|
674
|
-
]
|
|
675
|
-
},
|
|
676
|
-
{
|
|
677
|
-
"kind": "javascript-module",
|
|
678
|
-
"path": "src/data/index.ts",
|
|
679
|
-
"declarations": [],
|
|
680
|
-
"exports": [
|
|
731
|
+
"path": "src/encoding/index.ts",
|
|
732
|
+
"declarations": [],
|
|
733
|
+
"exports": [
|
|
681
734
|
{
|
|
682
735
|
"kind": "js",
|
|
683
736
|
"name": "*",
|
|
684
737
|
"declaration": {
|
|
685
738
|
"name": "*",
|
|
686
|
-
"package": "./
|
|
739
|
+
"package": "./base64"
|
|
687
740
|
}
|
|
688
741
|
}
|
|
689
742
|
]
|
|
@@ -804,6 +857,22 @@
|
|
|
804
857
|
"description": "The path to a JSON config file for the HTTP mode.",
|
|
805
858
|
"privacy": "public"
|
|
806
859
|
},
|
|
860
|
+
{
|
|
861
|
+
"kind": "variable",
|
|
862
|
+
"name": "FORCE_HTTP_REQREP",
|
|
863
|
+
"type": {
|
|
864
|
+
"text": "string"
|
|
865
|
+
}
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"kind": "variable",
|
|
869
|
+
"name": "_FORCE_HTTP_REQREP",
|
|
870
|
+
"type": {
|
|
871
|
+
"text": "string"
|
|
872
|
+
},
|
|
873
|
+
"description": "When `'true'`, request/reply and event traffic (`request`, `commitEvent`, metadata, schema and\nresources lookups) is sent over HTTP even while the primary connection is a WebSocket.\nStreaming (`stream`/`snapshot`) stays on the socket.",
|
|
874
|
+
"privacy": "public"
|
|
875
|
+
},
|
|
807
876
|
{
|
|
808
877
|
"kind": "variable",
|
|
809
878
|
"name": "GENESIS_SOCKET_URL",
|
|
@@ -1025,6 +1094,14 @@
|
|
|
1025
1094
|
"module": "src/env/variables.ts"
|
|
1026
1095
|
}
|
|
1027
1096
|
},
|
|
1097
|
+
{
|
|
1098
|
+
"kind": "js",
|
|
1099
|
+
"name": "FORCE_HTTP_REQREP",
|
|
1100
|
+
"declaration": {
|
|
1101
|
+
"name": "_FORCE_HTTP_REQREP",
|
|
1102
|
+
"module": "src/env/variables.ts"
|
|
1103
|
+
}
|
|
1104
|
+
},
|
|
1028
1105
|
{
|
|
1029
1106
|
"kind": "js",
|
|
1030
1107
|
"name": "GENESIS_SOCKET_URL",
|
|
@@ -1163,59 +1240,6 @@
|
|
|
1163
1240
|
}
|
|
1164
1241
|
]
|
|
1165
1242
|
},
|
|
1166
|
-
{
|
|
1167
|
-
"kind": "javascript-module",
|
|
1168
|
-
"path": "src/decorators/index.ts",
|
|
1169
|
-
"declarations": [],
|
|
1170
|
-
"exports": [
|
|
1171
|
-
{
|
|
1172
|
-
"kind": "js",
|
|
1173
|
-
"name": "*",
|
|
1174
|
-
"declaration": {
|
|
1175
|
-
"name": "*",
|
|
1176
|
-
"package": "./renderOnChange"
|
|
1177
|
-
}
|
|
1178
|
-
}
|
|
1179
|
-
]
|
|
1180
|
-
},
|
|
1181
|
-
{
|
|
1182
|
-
"kind": "javascript-module",
|
|
1183
|
-
"path": "src/decorators/renderOnChange.ts",
|
|
1184
|
-
"declarations": [
|
|
1185
|
-
{
|
|
1186
|
-
"kind": "function",
|
|
1187
|
-
"name": "renderOnChange",
|
|
1188
|
-
"parameters": [
|
|
1189
|
-
{
|
|
1190
|
-
"name": "target",
|
|
1191
|
-
"type": {
|
|
1192
|
-
"text": "FASTElement & { render(): void }"
|
|
1193
|
-
},
|
|
1194
|
-
"description": "The target to define the property change handler on."
|
|
1195
|
-
},
|
|
1196
|
-
{
|
|
1197
|
-
"name": "name",
|
|
1198
|
-
"type": {
|
|
1199
|
-
"text": "string"
|
|
1200
|
-
},
|
|
1201
|
-
"description": "The property name."
|
|
1202
|
-
}
|
|
1203
|
-
],
|
|
1204
|
-
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
1205
|
-
"privacy": "public"
|
|
1206
|
-
}
|
|
1207
|
-
],
|
|
1208
|
-
"exports": [
|
|
1209
|
-
{
|
|
1210
|
-
"kind": "js",
|
|
1211
|
-
"name": "renderOnChange",
|
|
1212
|
-
"declaration": {
|
|
1213
|
-
"name": "renderOnChange",
|
|
1214
|
-
"module": "src/decorators/renderOnChange.ts"
|
|
1215
|
-
}
|
|
1216
|
-
}
|
|
1217
|
-
]
|
|
1218
|
-
},
|
|
1219
1243
|
{
|
|
1220
1244
|
"kind": "javascript-module",
|
|
1221
1245
|
"path": "src/error/errorMap.ts",
|
|
@@ -4880,163 +4904,9 @@
|
|
|
4880
4904
|
},
|
|
4881
4905
|
{
|
|
4882
4906
|
"kind": "javascript-module",
|
|
4883
|
-
"path": "src/
|
|
4884
|
-
"declarations": [
|
|
4885
|
-
|
|
4886
|
-
"kind": "function",
|
|
4887
|
-
"name": "decodeFromBase64",
|
|
4888
|
-
"return": {
|
|
4889
|
-
"type": {
|
|
4890
|
-
"text": ""
|
|
4891
|
-
}
|
|
4892
|
-
},
|
|
4893
|
-
"parameters": [
|
|
4894
|
-
{
|
|
4895
|
-
"name": "base64Value",
|
|
4896
|
-
"type": {
|
|
4897
|
-
"text": "string"
|
|
4898
|
-
}
|
|
4899
|
-
},
|
|
4900
|
-
{
|
|
4901
|
-
"description": "The value to decode from base64.",
|
|
4902
|
-
"name": "value"
|
|
4903
|
-
}
|
|
4904
|
-
],
|
|
4905
|
-
"description": "Decodes a value from base64.",
|
|
4906
|
-
"privacy": "public"
|
|
4907
|
-
},
|
|
4908
|
-
{
|
|
4909
|
-
"kind": "function",
|
|
4910
|
-
"name": "decodeFromBase64WithPrefix",
|
|
4911
|
-
"return": {
|
|
4912
|
-
"type": {
|
|
4913
|
-
"text": ""
|
|
4914
|
-
}
|
|
4915
|
-
},
|
|
4916
|
-
"parameters": [
|
|
4917
|
-
{
|
|
4918
|
-
"name": "value",
|
|
4919
|
-
"type": {
|
|
4920
|
-
"text": "string"
|
|
4921
|
-
},
|
|
4922
|
-
"description": "The value to decode from base64."
|
|
4923
|
-
}
|
|
4924
|
-
],
|
|
4925
|
-
"description": "Decodes a value from base64 with a prefix.",
|
|
4926
|
-
"privacy": "public"
|
|
4927
|
-
}
|
|
4928
|
-
],
|
|
4929
|
-
"exports": [
|
|
4930
|
-
{
|
|
4931
|
-
"kind": "js",
|
|
4932
|
-
"name": "decodeFromBase64",
|
|
4933
|
-
"declaration": {
|
|
4934
|
-
"name": "decodeFromBase64",
|
|
4935
|
-
"module": "src/encoding/base64/decode.ts"
|
|
4936
|
-
}
|
|
4937
|
-
},
|
|
4938
|
-
{
|
|
4939
|
-
"kind": "js",
|
|
4940
|
-
"name": "decodeFromBase64WithPrefix",
|
|
4941
|
-
"declaration": {
|
|
4942
|
-
"name": "decodeFromBase64WithPrefix",
|
|
4943
|
-
"module": "src/encoding/base64/decode.ts"
|
|
4944
|
-
}
|
|
4945
|
-
}
|
|
4946
|
-
]
|
|
4947
|
-
},
|
|
4948
|
-
{
|
|
4949
|
-
"kind": "javascript-module",
|
|
4950
|
-
"path": "src/encoding/base64/encode.ts",
|
|
4951
|
-
"declarations": [
|
|
4952
|
-
{
|
|
4953
|
-
"kind": "function",
|
|
4954
|
-
"name": "encodeToBase64",
|
|
4955
|
-
"return": {
|
|
4956
|
-
"type": {
|
|
4957
|
-
"text": ""
|
|
4958
|
-
}
|
|
4959
|
-
},
|
|
4960
|
-
"parameters": [
|
|
4961
|
-
{
|
|
4962
|
-
"name": "value",
|
|
4963
|
-
"type": {
|
|
4964
|
-
"text": "string | ArrayBuffer"
|
|
4965
|
-
},
|
|
4966
|
-
"description": "The value to encode to base64."
|
|
4967
|
-
}
|
|
4968
|
-
],
|
|
4969
|
-
"description": "Encodes the given value to base64.",
|
|
4970
|
-
"privacy": "public"
|
|
4971
|
-
},
|
|
4972
|
-
{
|
|
4973
|
-
"kind": "function",
|
|
4974
|
-
"name": "encodeToBase64WithPrefix",
|
|
4975
|
-
"return": {
|
|
4976
|
-
"type": {
|
|
4977
|
-
"text": ""
|
|
4978
|
-
}
|
|
4979
|
-
},
|
|
4980
|
-
"parameters": [
|
|
4981
|
-
{
|
|
4982
|
-
"name": "value",
|
|
4983
|
-
"type": {
|
|
4984
|
-
"text": "string | ArrayBuffer"
|
|
4985
|
-
},
|
|
4986
|
-
"description": "The value to encode to base64."
|
|
4987
|
-
}
|
|
4988
|
-
],
|
|
4989
|
-
"description": "Encodes the given value with a prefix to base64.",
|
|
4990
|
-
"privacy": "public"
|
|
4991
|
-
}
|
|
4992
|
-
],
|
|
4993
|
-
"exports": [
|
|
4994
|
-
{
|
|
4995
|
-
"kind": "js",
|
|
4996
|
-
"name": "encodeToBase64",
|
|
4997
|
-
"declaration": {
|
|
4998
|
-
"name": "encodeToBase64",
|
|
4999
|
-
"module": "src/encoding/base64/encode.ts"
|
|
5000
|
-
}
|
|
5001
|
-
},
|
|
5002
|
-
{
|
|
5003
|
-
"kind": "js",
|
|
5004
|
-
"name": "encodeToBase64WithPrefix",
|
|
5005
|
-
"declaration": {
|
|
5006
|
-
"name": "encodeToBase64WithPrefix",
|
|
5007
|
-
"module": "src/encoding/base64/encode.ts"
|
|
5008
|
-
}
|
|
5009
|
-
}
|
|
5010
|
-
]
|
|
5011
|
-
},
|
|
5012
|
-
{
|
|
5013
|
-
"kind": "javascript-module",
|
|
5014
|
-
"path": "src/encoding/base64/index.ts",
|
|
5015
|
-
"declarations": [],
|
|
5016
|
-
"exports": [
|
|
5017
|
-
{
|
|
5018
|
-
"kind": "js",
|
|
5019
|
-
"name": "*",
|
|
5020
|
-
"declaration": {
|
|
5021
|
-
"name": "*",
|
|
5022
|
-
"package": "./decode"
|
|
5023
|
-
}
|
|
5024
|
-
},
|
|
5025
|
-
{
|
|
5026
|
-
"kind": "js",
|
|
5027
|
-
"name": "*",
|
|
5028
|
-
"declaration": {
|
|
5029
|
-
"name": "*",
|
|
5030
|
-
"package": "./encode"
|
|
5031
|
-
}
|
|
5032
|
-
}
|
|
5033
|
-
]
|
|
5034
|
-
},
|
|
5035
|
-
{
|
|
5036
|
-
"kind": "javascript-module",
|
|
5037
|
-
"path": "src/directives/sync/index.ts",
|
|
5038
|
-
"declarations": [],
|
|
5039
|
-
"exports": [
|
|
4907
|
+
"path": "src/directives/sync/index.ts",
|
|
4908
|
+
"declarations": [],
|
|
4909
|
+
"exports": [
|
|
5040
4910
|
{
|
|
5041
4911
|
"kind": "js",
|
|
5042
4912
|
"name": "*",
|
|
@@ -5186,6 +5056,160 @@
|
|
|
5186
5056
|
}
|
|
5187
5057
|
]
|
|
5188
5058
|
},
|
|
5059
|
+
{
|
|
5060
|
+
"kind": "javascript-module",
|
|
5061
|
+
"path": "src/encoding/base64/decode.ts",
|
|
5062
|
+
"declarations": [
|
|
5063
|
+
{
|
|
5064
|
+
"kind": "function",
|
|
5065
|
+
"name": "decodeFromBase64",
|
|
5066
|
+
"return": {
|
|
5067
|
+
"type": {
|
|
5068
|
+
"text": ""
|
|
5069
|
+
}
|
|
5070
|
+
},
|
|
5071
|
+
"parameters": [
|
|
5072
|
+
{
|
|
5073
|
+
"name": "base64Value",
|
|
5074
|
+
"type": {
|
|
5075
|
+
"text": "string"
|
|
5076
|
+
}
|
|
5077
|
+
},
|
|
5078
|
+
{
|
|
5079
|
+
"description": "The value to decode from base64.",
|
|
5080
|
+
"name": "value"
|
|
5081
|
+
}
|
|
5082
|
+
],
|
|
5083
|
+
"description": "Decodes a value from base64.",
|
|
5084
|
+
"privacy": "public"
|
|
5085
|
+
},
|
|
5086
|
+
{
|
|
5087
|
+
"kind": "function",
|
|
5088
|
+
"name": "decodeFromBase64WithPrefix",
|
|
5089
|
+
"return": {
|
|
5090
|
+
"type": {
|
|
5091
|
+
"text": ""
|
|
5092
|
+
}
|
|
5093
|
+
},
|
|
5094
|
+
"parameters": [
|
|
5095
|
+
{
|
|
5096
|
+
"name": "value",
|
|
5097
|
+
"type": {
|
|
5098
|
+
"text": "string"
|
|
5099
|
+
},
|
|
5100
|
+
"description": "The value to decode from base64."
|
|
5101
|
+
}
|
|
5102
|
+
],
|
|
5103
|
+
"description": "Decodes a value from base64 with a prefix.",
|
|
5104
|
+
"privacy": "public"
|
|
5105
|
+
}
|
|
5106
|
+
],
|
|
5107
|
+
"exports": [
|
|
5108
|
+
{
|
|
5109
|
+
"kind": "js",
|
|
5110
|
+
"name": "decodeFromBase64",
|
|
5111
|
+
"declaration": {
|
|
5112
|
+
"name": "decodeFromBase64",
|
|
5113
|
+
"module": "src/encoding/base64/decode.ts"
|
|
5114
|
+
}
|
|
5115
|
+
},
|
|
5116
|
+
{
|
|
5117
|
+
"kind": "js",
|
|
5118
|
+
"name": "decodeFromBase64WithPrefix",
|
|
5119
|
+
"declaration": {
|
|
5120
|
+
"name": "decodeFromBase64WithPrefix",
|
|
5121
|
+
"module": "src/encoding/base64/decode.ts"
|
|
5122
|
+
}
|
|
5123
|
+
}
|
|
5124
|
+
]
|
|
5125
|
+
},
|
|
5126
|
+
{
|
|
5127
|
+
"kind": "javascript-module",
|
|
5128
|
+
"path": "src/encoding/base64/encode.ts",
|
|
5129
|
+
"declarations": [
|
|
5130
|
+
{
|
|
5131
|
+
"kind": "function",
|
|
5132
|
+
"name": "encodeToBase64",
|
|
5133
|
+
"return": {
|
|
5134
|
+
"type": {
|
|
5135
|
+
"text": ""
|
|
5136
|
+
}
|
|
5137
|
+
},
|
|
5138
|
+
"parameters": [
|
|
5139
|
+
{
|
|
5140
|
+
"name": "value",
|
|
5141
|
+
"type": {
|
|
5142
|
+
"text": "string | ArrayBuffer"
|
|
5143
|
+
},
|
|
5144
|
+
"description": "The value to encode to base64."
|
|
5145
|
+
}
|
|
5146
|
+
],
|
|
5147
|
+
"description": "Encodes the given value to base64.",
|
|
5148
|
+
"privacy": "public"
|
|
5149
|
+
},
|
|
5150
|
+
{
|
|
5151
|
+
"kind": "function",
|
|
5152
|
+
"name": "encodeToBase64WithPrefix",
|
|
5153
|
+
"return": {
|
|
5154
|
+
"type": {
|
|
5155
|
+
"text": ""
|
|
5156
|
+
}
|
|
5157
|
+
},
|
|
5158
|
+
"parameters": [
|
|
5159
|
+
{
|
|
5160
|
+
"name": "value",
|
|
5161
|
+
"type": {
|
|
5162
|
+
"text": "string | ArrayBuffer"
|
|
5163
|
+
},
|
|
5164
|
+
"description": "The value to encode to base64."
|
|
5165
|
+
}
|
|
5166
|
+
],
|
|
5167
|
+
"description": "Encodes the given value with a prefix to base64.",
|
|
5168
|
+
"privacy": "public"
|
|
5169
|
+
}
|
|
5170
|
+
],
|
|
5171
|
+
"exports": [
|
|
5172
|
+
{
|
|
5173
|
+
"kind": "js",
|
|
5174
|
+
"name": "encodeToBase64",
|
|
5175
|
+
"declaration": {
|
|
5176
|
+
"name": "encodeToBase64",
|
|
5177
|
+
"module": "src/encoding/base64/encode.ts"
|
|
5178
|
+
}
|
|
5179
|
+
},
|
|
5180
|
+
{
|
|
5181
|
+
"kind": "js",
|
|
5182
|
+
"name": "encodeToBase64WithPrefix",
|
|
5183
|
+
"declaration": {
|
|
5184
|
+
"name": "encodeToBase64WithPrefix",
|
|
5185
|
+
"module": "src/encoding/base64/encode.ts"
|
|
5186
|
+
}
|
|
5187
|
+
}
|
|
5188
|
+
]
|
|
5189
|
+
},
|
|
5190
|
+
{
|
|
5191
|
+
"kind": "javascript-module",
|
|
5192
|
+
"path": "src/encoding/base64/index.ts",
|
|
5193
|
+
"declarations": [],
|
|
5194
|
+
"exports": [
|
|
5195
|
+
{
|
|
5196
|
+
"kind": "js",
|
|
5197
|
+
"name": "*",
|
|
5198
|
+
"declaration": {
|
|
5199
|
+
"name": "*",
|
|
5200
|
+
"package": "./decode"
|
|
5201
|
+
}
|
|
5202
|
+
},
|
|
5203
|
+
{
|
|
5204
|
+
"kind": "js",
|
|
5205
|
+
"name": "*",
|
|
5206
|
+
"declaration": {
|
|
5207
|
+
"name": "*",
|
|
5208
|
+
"package": "./encode"
|
|
5209
|
+
}
|
|
5210
|
+
}
|
|
5211
|
+
]
|
|
5212
|
+
},
|
|
5189
5213
|
{
|
|
5190
5214
|
"kind": "javascript-module",
|
|
5191
5215
|
"path": "src/mappers/dto/index.ts",
|
|
@@ -36,6 +36,15 @@ export { _SOCKET_EXT as SOCKET_EXT };
|
|
|
36
36
|
*/
|
|
37
37
|
declare let _FORCE_HTTP: string;
|
|
38
38
|
export { _FORCE_HTTP as FORCE_HTTP };
|
|
39
|
+
/**
|
|
40
|
+
* When `'true'`, request/reply and event traffic (`request`, `commitEvent`, metadata, schema and
|
|
41
|
+
* resources lookups) is sent over HTTP even while the primary connection is a WebSocket.
|
|
42
|
+
* Streaming (`stream`/`snapshot`) stays on the socket.
|
|
43
|
+
* @remarks Optional. Can also be toggled per-session via the `?feature.forceHttpReqRep` URL flag.
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
declare let _FORCE_HTTP_REQREP: string;
|
|
47
|
+
export { _FORCE_HTTP_REQREP as FORCE_HTTP_REQREP };
|
|
39
48
|
/**
|
|
40
49
|
* Genesis Socket URL
|
|
41
50
|
* @remarks
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"variables.d.ts","sourceRoot":"","sources":["../../../src/env/variables.ts"],"names":[],"mappings":"AAIA;;;;;;;GAOG;AACH,QAAA,IAAI,QAAQ,EAAE,MAAkB,CAAC;AAQjC,OAAO,EAAE,QAAQ,IAAI,OAAO,EAAE,CAAC;AAG/B;;;;;;;GAOG;AACH,QAAA,IAAI,YAAY,EAAE,MAAY,CAAC;AAS/B,OAAO,EAAE,YAAY,IAAI,WAAW,EAAE,CAAC;AAGvC;;;;;;;;GAQG;AACH,QAAA,IAAI,WAAW,EAAE,MAAc,CAAC;AAQhC,OAAO,EAAE,WAAW,IAAI,UAAU,EAAE,CAAC;AAGrC;;;;GAIG;AACH,QAAA,IAAI,WAAW,EAAE,MAAM,CAAC;AAMxB,OAAO,EAAE,WAAW,IAAI,UAAU,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"variables.d.ts","sourceRoot":"","sources":["../../../src/env/variables.ts"],"names":[],"mappings":"AAIA;;;;;;;GAOG;AACH,QAAA,IAAI,QAAQ,EAAE,MAAkB,CAAC;AAQjC,OAAO,EAAE,QAAQ,IAAI,OAAO,EAAE,CAAC;AAG/B;;;;;;;GAOG;AACH,QAAA,IAAI,YAAY,EAAE,MAAY,CAAC;AAS/B,OAAO,EAAE,YAAY,IAAI,WAAW,EAAE,CAAC;AAGvC;;;;;;;;GAQG;AACH,QAAA,IAAI,WAAW,EAAE,MAAc,CAAC;AAQhC,OAAO,EAAE,WAAW,IAAI,UAAU,EAAE,CAAC;AAGrC;;;;GAIG;AACH,QAAA,IAAI,WAAW,EAAE,MAAM,CAAC;AAMxB,OAAO,EAAE,WAAW,IAAI,UAAU,EAAE,CAAC;AAGrC;;;;;;GAMG;AACH,QAAA,IAAI,kBAAkB,EAAE,MAAM,CAAC;AAM/B,OAAO,EAAE,kBAAkB,IAAI,iBAAiB,EAAE,CAAC;AAEnD;;;;;;;;;GASG;AACH,eAAO,MAAM,kBAAkB,QAAgG,CAAC;AAShI;;;;;;GAMG;AACH,QAAA,IAAI,SAAS,EAAE,MAAwD,CAAC;AAQxE,OAAO,EAAE,SAAS,IAAI,QAAQ,EAAE,CAAC;AAGjC;;;;GAIG;AACH,QAAA,IAAI,YAAY,EAAE,MAAM,CAAC;AAMzB,OAAO,EAAE,YAAY,IAAI,WAAW,EAAE,CAAC;AAKvC;;;;GAIG;AACH,QAAA,IAAI,qBAAqB,EAAE,MAAM,CAAC;AAMlC,OAAO,EAAE,qBAAqB,IAAI,oBAAoB,EAAE,CAAC;AAGzD;;;;GAIG;AACH,QAAA,IAAI,iBAAiB,EAAE,MAAM,CAAC;AAM9B,OAAO,EAAE,iBAAiB,IAAI,gBAAgB,EAAE,CAAC;AAGjD;;;;GAIG;AACH,QAAA,IAAI,aAAa,EAAE,MAAM,CAAC;AAM1B,OAAO,EAAE,aAAa,IAAI,YAAY,EAAE,CAAC;AAGzC;;GAEG;AACH,QAAA,IAAI,SAAS,EAAE,MAA+B,CAAC;AAM/C,OAAO,EAAE,SAAS,EAAE,CAAC;AAGrB;;GAEG;AACH,QAAA,IAAI,iBAAiB,EAAE,MAA+B,CAAC;AAMvD,OAAO,EAAE,iBAAiB,EAAE,CAAC;AAG7B;;GAEG;AACH,QAAA,IAAI,iBAAiB,EAAE,MAAkC,CAAC;AAM1D,OAAO,EAAE,iBAAiB,EAAE,CAAC;AAG7B;;GAEG;AACH,QAAA,IAAI,UAAU,EAAE,MAA2B,CAAC;AAM5C,OAAO,EAAE,UAAU,EAAE,CAAC;AAGtB;;GAEG;AACH,QAAA,IAAI,mBAAmB,EAAE,MAAyC,CAAC;AAMnE,OAAO,EAAE,mBAAmB,EAAE,CAAC;AAG/B;;GAEG;AACH,QAAA,IAAI,mBAAmB,EAAE,MAAgD,CAAC;AAM1E,OAAO,EAAE,mBAAmB,EAAE,CAAC;AAG/B;;GAEG;AACH,QAAA,IAAI,kBAAkB,EAAE,MAA0C,CAAC;AAMnE,OAAO,EAAE,kBAAkB,EAAE,CAAC;AAG9B;;GAEG;AACH,QAAA,IAAI,YAAY,EAAE,MAAuB,CAAC;AAM1C,OAAO,EAAE,YAAY,EAAE,CAAC;AAGxB;;GAEG;AACH,QAAA,IAAI,aAAa,EAAE,MAAoC,CAAC;AAMxD,OAAO,EAAE,aAAa,EAAE,CAAC;AAGzB;;GAEG;AACH,QAAA,IAAI,iBAAiB,EAAE,MAAkB,CAAC;AAM1C,OAAO,EAAE,iBAAiB,EAAE,CAAC;AAG7B;;GAEG;AACH,QAAA,IAAI,gBAAgB,EAAE,MAAgC,CAAC;AAMvD,OAAO,EAAE,gBAAgB,EAAE,CAAC"}
|
|
@@ -60,6 +60,19 @@ try {
|
|
|
60
60
|
}
|
|
61
61
|
catch (_d) { }
|
|
62
62
|
export { _FORCE_HTTP as FORCE_HTTP };
|
|
63
|
+
/**
|
|
64
|
+
* When `'true'`, request/reply and event traffic (`request`, `commitEvent`, metadata, schema and
|
|
65
|
+
* resources lookups) is sent over HTTP even while the primary connection is a WebSocket.
|
|
66
|
+
* Streaming (`stream`/`snapshot`) stays on the socket.
|
|
67
|
+
* @remarks Optional. Can also be toggled per-session via the `?feature.forceHttpReqRep` URL flag.
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
let _FORCE_HTTP_REQREP;
|
|
71
|
+
try {
|
|
72
|
+
_FORCE_HTTP_REQREP = FORCE_HTTP_REQREP;
|
|
73
|
+
}
|
|
74
|
+
catch (_e) { }
|
|
75
|
+
export { _FORCE_HTTP_REQREP as FORCE_HTTP_REQREP };
|
|
63
76
|
/**
|
|
64
77
|
* Genesis Socket URL
|
|
65
78
|
* @remarks
|
|
@@ -87,7 +100,7 @@ try {
|
|
|
87
100
|
_API_HOST = API_HOST;
|
|
88
101
|
}
|
|
89
102
|
}
|
|
90
|
-
catch (
|
|
103
|
+
catch (_f) { }
|
|
91
104
|
export { _API_HOST as API_HOST };
|
|
92
105
|
/**
|
|
93
106
|
* Configuration settings for HTTP, used in http connect flow [`genesislcap-foundation-comms.HttpConnectConfig`](https://link-to-docs).
|
|
@@ -98,7 +111,7 @@ let _HTTP_CONFIG;
|
|
|
98
111
|
try {
|
|
99
112
|
_HTTP_CONFIG = HTTP_CONFIG;
|
|
100
113
|
}
|
|
101
|
-
catch (
|
|
114
|
+
catch (_g) { }
|
|
102
115
|
export { _HTTP_CONFIG as HTTP_CONFIG };
|
|
103
116
|
/**
|
|
104
117
|
* The default Organisation value, used in auth/login flow [`genesislcap-foundation-auth`](https://link-to-docs).
|
|
@@ -109,7 +122,7 @@ let _DEFAULT_ORGANISATION;
|
|
|
109
122
|
try {
|
|
110
123
|
_DEFAULT_ORGANISATION = DEFAULT_ORGANISATION;
|
|
111
124
|
}
|
|
112
|
-
catch (
|
|
125
|
+
catch (_h) { }
|
|
113
126
|
export { _DEFAULT_ORGANISATION as DEFAULT_ORGANISATION };
|
|
114
127
|
/**
|
|
115
128
|
* The default Password value, used in auth/login flow [`genesislcap-foundation-auth`](https://link-to-docs).
|
|
@@ -120,7 +133,7 @@ let _DEFAULT_PASSWORD;
|
|
|
120
133
|
try {
|
|
121
134
|
_DEFAULT_PASSWORD = DEFAULT_PASSWORD;
|
|
122
135
|
}
|
|
123
|
-
catch (
|
|
136
|
+
catch (_j) { }
|
|
124
137
|
export { _DEFAULT_PASSWORD as DEFAULT_PASSWORD };
|
|
125
138
|
/**
|
|
126
139
|
* The default Username value, used in auth/login flow [`genesislcap-foundation-auth`](https://link-to-docs).
|
|
@@ -131,7 +144,7 @@ let _DEFAULT_USER;
|
|
|
131
144
|
try {
|
|
132
145
|
_DEFAULT_USER = DEFAULT_USER;
|
|
133
146
|
}
|
|
134
|
-
catch (
|
|
147
|
+
catch (_k) { }
|
|
135
148
|
export { _DEFAULT_USER as DEFAULT_USER };
|
|
136
149
|
/**
|
|
137
150
|
* @public
|
|
@@ -5288,6 +5288,29 @@
|
|
|
5288
5288
|
}
|
|
5289
5289
|
]
|
|
5290
5290
|
},
|
|
5291
|
+
{
|
|
5292
|
+
"kind": "Variable",
|
|
5293
|
+
"canonicalReference": "@genesislcap/foundation-utils!FORCE_HTTP_REQREP:var",
|
|
5294
|
+
"docComment": "/**\n * When `'true'`, request/reply and event traffic (`request`, `commitEvent`, metadata, schema and resources lookups) is sent over HTTP even while the primary connection is a WebSocket. Streaming (`stream`/`snapshot`) stays on the socket.\n *\n * @remarks\n *\n * Optional. Can also be toggled per-session via the `?feature.forceHttpReqRep` URL flag.\n *\n * @public\n */\n",
|
|
5295
|
+
"excerptTokens": [
|
|
5296
|
+
{
|
|
5297
|
+
"kind": "Content",
|
|
5298
|
+
"text": "_FORCE_HTTP_REQREP: "
|
|
5299
|
+
},
|
|
5300
|
+
{
|
|
5301
|
+
"kind": "Content",
|
|
5302
|
+
"text": "string"
|
|
5303
|
+
}
|
|
5304
|
+
],
|
|
5305
|
+
"fileUrlPath": "src/env/variables.ts",
|
|
5306
|
+
"isReadonly": false,
|
|
5307
|
+
"releaseTag": "Public",
|
|
5308
|
+
"name": "FORCE_HTTP_REQREP",
|
|
5309
|
+
"variableTypeTokenRange": {
|
|
5310
|
+
"startIndex": 1,
|
|
5311
|
+
"endIndex": 2
|
|
5312
|
+
}
|
|
5313
|
+
},
|
|
5291
5314
|
{
|
|
5292
5315
|
"kind": "Variable",
|
|
5293
5316
|
"canonicalReference": "@genesislcap/foundation-utils!FORCE_HTTP:var",
|
|
@@ -598,6 +598,15 @@ export declare enum FontWeight {
|
|
|
598
598
|
*/
|
|
599
599
|
export declare let FORCE_HTTP: string;
|
|
600
600
|
|
|
601
|
+
/**
|
|
602
|
+
* When `'true'`, request/reply and event traffic (`request`, `commitEvent`, metadata, schema and
|
|
603
|
+
* resources lookups) is sent over HTTP even while the primary connection is a WebSocket.
|
|
604
|
+
* Streaming (`stream`/`snapshot`) stays on the socket.
|
|
605
|
+
* @remarks Optional. Can also be toggled per-session via the `?feature.forceHttpReqRep` URL flag.
|
|
606
|
+
* @public
|
|
607
|
+
*/
|
|
608
|
+
export declare let FORCE_HTTP_REQREP: string;
|
|
609
|
+
|
|
601
610
|
/**
|
|
602
611
|
* @public
|
|
603
612
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-utils",
|
|
3
3
|
"description": "Genesis Foundation Utils",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.500.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -29,18 +29,18 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@genesislcap/foundation-testing": "14.
|
|
33
|
-
"@genesislcap/genx": "14.
|
|
34
|
-
"@genesislcap/rollup-builder": "14.
|
|
35
|
-
"@genesislcap/ts-builder": "14.
|
|
36
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
37
|
-
"@genesislcap/vite-builder": "14.
|
|
38
|
-
"@genesislcap/webpack-builder": "14.
|
|
32
|
+
"@genesislcap/foundation-testing": "14.500.0",
|
|
33
|
+
"@genesislcap/genx": "14.500.0",
|
|
34
|
+
"@genesislcap/rollup-builder": "14.500.0",
|
|
35
|
+
"@genesislcap/ts-builder": "14.500.0",
|
|
36
|
+
"@genesislcap/uvu-playwright-builder": "14.500.0",
|
|
37
|
+
"@genesislcap/vite-builder": "14.500.0",
|
|
38
|
+
"@genesislcap/webpack-builder": "14.500.0",
|
|
39
39
|
"@types/json-schema": "^7.0.11"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@genesislcap/expression-builder": "14.
|
|
43
|
-
"@genesislcap/foundation-logger": "14.
|
|
42
|
+
"@genesislcap/expression-builder": "14.500.0",
|
|
43
|
+
"@genesislcap/foundation-logger": "14.500.0",
|
|
44
44
|
"@microsoft/fast-components": "2.30.6",
|
|
45
45
|
"@microsoft/fast-element": "1.14.0",
|
|
46
46
|
"@microsoft/fast-foundation": "2.50.0",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
60
|
"customElements": "dist/custom-elements.json",
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "71f449cda804427acfa5d246da83d1044f2cb2c4"
|
|
62
62
|
}
|