@genesislcap/foundation-comms 14.294.0 → 14.295.1-alpha-523bee0.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.
Files changed (44) hide show
  1. package/dist/dts/connect/connect.d.ts.map +1 -1
  2. package/dist/dts/connect/connect.events.d.ts +47 -0
  3. package/dist/dts/connect/connect.events.d.ts.map +1 -1
  4. package/dist/dts/datasource/datasource.config.d.ts.map +1 -1
  5. package/dist/dts/datasource/datasource.d.ts +6 -2
  6. package/dist/dts/datasource/datasource.d.ts.map +1 -1
  7. package/dist/dts/datasource/datasource.types.d.ts +5 -0
  8. package/dist/dts/datasource/datasource.types.d.ts.map +1 -1
  9. package/dist/dts/testing/mocks/auth/auth.d.ts +3 -0
  10. package/dist/dts/testing/mocks/auth/auth.d.ts.map +1 -1
  11. package/dist/dts/testing/mocks/connect/connectEvents.d.ts +68 -0
  12. package/dist/dts/testing/mocks/connect/connectEvents.d.ts.map +1 -0
  13. package/dist/dts/testing/mocks/connect/index.d.ts +1 -0
  14. package/dist/dts/testing/mocks/connect/index.d.ts.map +1 -1
  15. package/dist/esm/connect/connect.events.js +25 -0
  16. package/dist/esm/connect/connect.js +4 -1
  17. package/dist/esm/datasource/datasource.config.js +1 -0
  18. package/dist/esm/datasource/datasource.js +37 -12
  19. package/dist/esm/testing/mocks/auth/auth.js +8 -0
  20. package/dist/esm/testing/mocks/connect/connectEvents.js +75 -0
  21. package/dist/esm/testing/mocks/connect/index.js +1 -0
  22. package/dist/foundation-comms.api.json +527 -0
  23. package/dist/foundation-comms.d.ts +150 -1
  24. package/docs/api/foundation-comms.commitackevent.md +14 -0
  25. package/docs/api/foundation-comms.commitackeventdetail.md +17 -0
  26. package/docs/api/foundation-comms.commitackeventtype.md +12 -0
  27. package/docs/api/foundation-comms.commitresponseevent.md +14 -0
  28. package/docs/api/foundation-comms.commitresponseeventdetail.md +17 -0
  29. package/docs/api/foundation-comms.commitresponseeventtype.md +12 -0
  30. package/docs/api/foundation-comms.connectevents.addcommitresponselistener.md +24 -0
  31. package/docs/api/foundation-comms.connectevents.md +1 -0
  32. package/docs/api/foundation-comms.connecteventsemitter.md +1 -0
  33. package/docs/api/foundation-comms.connecteventsemitter.oncommitresponseevent.md +25 -0
  34. package/docs/api/foundation-comms.datasourceoptions.md +1 -0
  35. package/docs/api/foundation-comms.datasourceoptions.polltriggerevents.md +18 -0
  36. package/docs/api/foundation-comms.defaultconnectevents.addcommitresponselistener.md +24 -0
  37. package/docs/api/foundation-comms.defaultconnectevents.md +2 -0
  38. package/docs/api/foundation-comms.defaultconnectevents.oncommitresponseevent.md +25 -0
  39. package/docs/api/foundation-comms.defaultdatasource._constructor_.md +2 -1
  40. package/docs/api/foundation-comms.defaultdatasource.connectevents.md +11 -0
  41. package/docs/api/foundation-comms.defaultdatasource.md +2 -1
  42. package/docs/api/foundation-comms.md +6 -0
  43. package/docs/api-report.md +87 -1
  44. package/package.json +16 -15
@@ -999,6 +999,108 @@
999
999
  "endIndex": 2
1000
1000
  }
1001
1001
  },
1002
+ {
1003
+ "kind": "TypeAlias",
1004
+ "canonicalReference": "@genesislcap/foundation-comms!CommitAckEvent:type",
1005
+ "docComment": "/**\n * @public\n */\n",
1006
+ "excerptTokens": [
1007
+ {
1008
+ "kind": "Content",
1009
+ "text": "export type CommitAckEvent = "
1010
+ },
1011
+ {
1012
+ "kind": "Reference",
1013
+ "text": "CustomEvent",
1014
+ "canonicalReference": "!CustomEvent:interface"
1015
+ },
1016
+ {
1017
+ "kind": "Content",
1018
+ "text": "<"
1019
+ },
1020
+ {
1021
+ "kind": "Reference",
1022
+ "text": "CommitAckEventDetail",
1023
+ "canonicalReference": "@genesislcap/foundation-comms!CommitAckEventDetail:type"
1024
+ },
1025
+ {
1026
+ "kind": "Content",
1027
+ "text": ">"
1028
+ },
1029
+ {
1030
+ "kind": "Content",
1031
+ "text": ";"
1032
+ }
1033
+ ],
1034
+ "fileUrlPath": "src/connect/connect.events.ts",
1035
+ "releaseTag": "Public",
1036
+ "name": "CommitAckEvent",
1037
+ "typeTokenRange": {
1038
+ "startIndex": 1,
1039
+ "endIndex": 5
1040
+ }
1041
+ },
1042
+ {
1043
+ "kind": "TypeAlias",
1044
+ "canonicalReference": "@genesislcap/foundation-comms!CommitAckEventDetail:type",
1045
+ "docComment": "/**\n * @public\n */\n",
1046
+ "excerptTokens": [
1047
+ {
1048
+ "kind": "Content",
1049
+ "text": "export type CommitAckEventDetail = "
1050
+ },
1051
+ {
1052
+ "kind": "Content",
1053
+ "text": "{\n eventName: string;\n ack: "
1054
+ },
1055
+ {
1056
+ "kind": "Reference",
1057
+ "text": "Message",
1058
+ "canonicalReference": "@genesislcap/foundation-comms!Message:type"
1059
+ },
1060
+ {
1061
+ "kind": "Content",
1062
+ "text": ";\n}"
1063
+ },
1064
+ {
1065
+ "kind": "Content",
1066
+ "text": ";"
1067
+ }
1068
+ ],
1069
+ "fileUrlPath": "src/connect/connect.events.ts",
1070
+ "releaseTag": "Public",
1071
+ "name": "CommitAckEventDetail",
1072
+ "typeTokenRange": {
1073
+ "startIndex": 1,
1074
+ "endIndex": 4
1075
+ }
1076
+ },
1077
+ {
1078
+ "kind": "Variable",
1079
+ "canonicalReference": "@genesislcap/foundation-comms!CommitAckEventType:var",
1080
+ "docComment": "/**\n * @public\n */\n",
1081
+ "excerptTokens": [
1082
+ {
1083
+ "kind": "Content",
1084
+ "text": "CommitAckEventType = "
1085
+ },
1086
+ {
1087
+ "kind": "Content",
1088
+ "text": "\"connect-commit-ack-event\""
1089
+ }
1090
+ ],
1091
+ "fileUrlPath": "src/connect/connect.events.ts",
1092
+ "initializerTokenRange": {
1093
+ "startIndex": 1,
1094
+ "endIndex": 2
1095
+ },
1096
+ "isReadonly": true,
1097
+ "releaseTag": "Public",
1098
+ "name": "CommitAckEventType",
1099
+ "variableTypeTokenRange": {
1100
+ "startIndex": 0,
1101
+ "endIndex": 0
1102
+ }
1103
+ },
1002
1104
  {
1003
1105
  "kind": "TypeAlias",
1004
1106
  "canonicalReference": "@genesislcap/foundation-comms!CommitEvent:type",
@@ -1127,6 +1229,108 @@
1127
1229
  "endIndex": 2
1128
1230
  }
1129
1231
  },
1232
+ {
1233
+ "kind": "TypeAlias",
1234
+ "canonicalReference": "@genesislcap/foundation-comms!CommitResponseEvent:type",
1235
+ "docComment": "/**\n * @public\n */\n",
1236
+ "excerptTokens": [
1237
+ {
1238
+ "kind": "Content",
1239
+ "text": "export type CommitResponseEvent = "
1240
+ },
1241
+ {
1242
+ "kind": "Reference",
1243
+ "text": "CustomEvent",
1244
+ "canonicalReference": "!CustomEvent:interface"
1245
+ },
1246
+ {
1247
+ "kind": "Content",
1248
+ "text": "<"
1249
+ },
1250
+ {
1251
+ "kind": "Reference",
1252
+ "text": "CommitResponseEventDetail",
1253
+ "canonicalReference": "@genesislcap/foundation-comms!CommitResponseEventDetail:type"
1254
+ },
1255
+ {
1256
+ "kind": "Content",
1257
+ "text": ">"
1258
+ },
1259
+ {
1260
+ "kind": "Content",
1261
+ "text": ";"
1262
+ }
1263
+ ],
1264
+ "fileUrlPath": "src/connect/connect.events.ts",
1265
+ "releaseTag": "Public",
1266
+ "name": "CommitResponseEvent",
1267
+ "typeTokenRange": {
1268
+ "startIndex": 1,
1269
+ "endIndex": 5
1270
+ }
1271
+ },
1272
+ {
1273
+ "kind": "TypeAlias",
1274
+ "canonicalReference": "@genesislcap/foundation-comms!CommitResponseEventDetail:type",
1275
+ "docComment": "/**\n * @public\n */\n",
1276
+ "excerptTokens": [
1277
+ {
1278
+ "kind": "Content",
1279
+ "text": "export type CommitResponseEventDetail = "
1280
+ },
1281
+ {
1282
+ "kind": "Content",
1283
+ "text": "{\n eventName: string;\n response: "
1284
+ },
1285
+ {
1286
+ "kind": "Reference",
1287
+ "text": "Message",
1288
+ "canonicalReference": "@genesislcap/foundation-comms!Message:type"
1289
+ },
1290
+ {
1291
+ "kind": "Content",
1292
+ "text": ";\n}"
1293
+ },
1294
+ {
1295
+ "kind": "Content",
1296
+ "text": ";"
1297
+ }
1298
+ ],
1299
+ "fileUrlPath": "src/connect/connect.events.ts",
1300
+ "releaseTag": "Public",
1301
+ "name": "CommitResponseEventDetail",
1302
+ "typeTokenRange": {
1303
+ "startIndex": 1,
1304
+ "endIndex": 4
1305
+ }
1306
+ },
1307
+ {
1308
+ "kind": "Variable",
1309
+ "canonicalReference": "@genesislcap/foundation-comms!CommitResponseEventType:var",
1310
+ "docComment": "/**\n * @public\n */\n",
1311
+ "excerptTokens": [
1312
+ {
1313
+ "kind": "Content",
1314
+ "text": "CommitResponseEventType = "
1315
+ },
1316
+ {
1317
+ "kind": "Content",
1318
+ "text": "\"connect-commit-response-event\""
1319
+ }
1320
+ ],
1321
+ "fileUrlPath": "src/connect/connect.events.ts",
1322
+ "initializerTokenRange": {
1323
+ "startIndex": 1,
1324
+ "endIndex": 2
1325
+ },
1326
+ "isReadonly": true,
1327
+ "releaseTag": "Public",
1328
+ "name": "CommitResponseEventType",
1329
+ "variableTypeTokenRange": {
1330
+ "startIndex": 0,
1331
+ "endIndex": 0
1332
+ }
1333
+ },
1130
1334
  {
1131
1335
  "kind": "Interface",
1132
1336
  "canonicalReference": "@genesislcap/foundation-comms!Connect:interface",
@@ -2386,6 +2590,65 @@
2386
2590
  ],
2387
2591
  "name": "addCommitListener"
2388
2592
  },
2593
+ {
2594
+ "kind": "MethodSignature",
2595
+ "canonicalReference": "@genesislcap/foundation-comms!ConnectEvents#addCommitResponseListener:member(1)",
2596
+ "docComment": "/**\n * Add a commit response listener (fires for both ack and nack).\n *\n * @param listener - A listener callback function.\n */\n",
2597
+ "excerptTokens": [
2598
+ {
2599
+ "kind": "Content",
2600
+ "text": "addCommitResponseListener(listener: "
2601
+ },
2602
+ {
2603
+ "kind": "Reference",
2604
+ "text": "Listener",
2605
+ "canonicalReference": "@genesislcap/foundation-utils!Listener:type"
2606
+ },
2607
+ {
2608
+ "kind": "Content",
2609
+ "text": "<"
2610
+ },
2611
+ {
2612
+ "kind": "Reference",
2613
+ "text": "CommitResponseEvent",
2614
+ "canonicalReference": "@genesislcap/foundation-comms!CommitResponseEvent:type"
2615
+ },
2616
+ {
2617
+ "kind": "Content",
2618
+ "text": ">"
2619
+ },
2620
+ {
2621
+ "kind": "Content",
2622
+ "text": "): "
2623
+ },
2624
+ {
2625
+ "kind": "Content",
2626
+ "text": "() => void"
2627
+ },
2628
+ {
2629
+ "kind": "Content",
2630
+ "text": ";"
2631
+ }
2632
+ ],
2633
+ "isOptional": false,
2634
+ "returnTypeTokenRange": {
2635
+ "startIndex": 6,
2636
+ "endIndex": 7
2637
+ },
2638
+ "releaseTag": "Public",
2639
+ "overloadIndex": 1,
2640
+ "parameters": [
2641
+ {
2642
+ "parameterName": "listener",
2643
+ "parameterTypeTokenRange": {
2644
+ "startIndex": 1,
2645
+ "endIndex": 5
2646
+ },
2647
+ "isOptional": false
2648
+ }
2649
+ ],
2650
+ "name": "addCommitResponseListener"
2651
+ },
2389
2652
  {
2390
2653
  "kind": "MethodSignature",
2391
2654
  "canonicalReference": "@genesislcap/foundation-comms!ConnectEvents#addMetadataListener:member(1)",
@@ -2653,6 +2916,68 @@
2653
2916
  ],
2654
2917
  "name": "onCommitEvent"
2655
2918
  },
2919
+ {
2920
+ "kind": "MethodSignature",
2921
+ "canonicalReference": "@genesislcap/foundation-comms!ConnectEventsEmitter#onCommitResponseEvent:member(1)",
2922
+ "docComment": "/**\n * Called by Connect when a commit response (ack or nack) is received.\n *\n * @param eventName - The name of the event.\n *\n * @param response - The response message from the server (ack or nack).\n */\n",
2923
+ "excerptTokens": [
2924
+ {
2925
+ "kind": "Content",
2926
+ "text": "onCommitResponseEvent(eventName: "
2927
+ },
2928
+ {
2929
+ "kind": "Content",
2930
+ "text": "string"
2931
+ },
2932
+ {
2933
+ "kind": "Content",
2934
+ "text": ", response: "
2935
+ },
2936
+ {
2937
+ "kind": "Reference",
2938
+ "text": "Message",
2939
+ "canonicalReference": "@genesislcap/foundation-comms!Message:type"
2940
+ },
2941
+ {
2942
+ "kind": "Content",
2943
+ "text": "): "
2944
+ },
2945
+ {
2946
+ "kind": "Content",
2947
+ "text": "void"
2948
+ },
2949
+ {
2950
+ "kind": "Content",
2951
+ "text": ";"
2952
+ }
2953
+ ],
2954
+ "isOptional": false,
2955
+ "returnTypeTokenRange": {
2956
+ "startIndex": 5,
2957
+ "endIndex": 6
2958
+ },
2959
+ "releaseTag": "Public",
2960
+ "overloadIndex": 1,
2961
+ "parameters": [
2962
+ {
2963
+ "parameterName": "eventName",
2964
+ "parameterTypeTokenRange": {
2965
+ "startIndex": 1,
2966
+ "endIndex": 2
2967
+ },
2968
+ "isOptional": false
2969
+ },
2970
+ {
2971
+ "parameterName": "response",
2972
+ "parameterTypeTokenRange": {
2973
+ "startIndex": 3,
2974
+ "endIndex": 4
2975
+ },
2976
+ "isOptional": false
2977
+ }
2978
+ ],
2979
+ "name": "onCommitResponseEvent"
2980
+ },
2656
2981
  {
2657
2982
  "kind": "MethodSignature",
2658
2983
  "canonicalReference": "@genesislcap/foundation-comms!ConnectEventsEmitter#onMetadataEvent:member(1)",
@@ -9417,6 +9742,33 @@
9417
9742
  "endIndex": 2
9418
9743
  }
9419
9744
  },
9745
+ {
9746
+ "kind": "PropertySignature",
9747
+ "canonicalReference": "@genesislcap/foundation-comms!DatasourceOptions#pollTriggerEvents:member",
9748
+ "docComment": "/**\n * Array of event names that will trigger an additional poll.\n *\n * @remarks\n *\n * Only works with REQUEST_SERVER resources.\n */\n",
9749
+ "excerptTokens": [
9750
+ {
9751
+ "kind": "Content",
9752
+ "text": "pollTriggerEvents?: "
9753
+ },
9754
+ {
9755
+ "kind": "Content",
9756
+ "text": "string[]"
9757
+ },
9758
+ {
9759
+ "kind": "Content",
9760
+ "text": ";"
9761
+ }
9762
+ ],
9763
+ "isReadonly": false,
9764
+ "isOptional": true,
9765
+ "releaseTag": "Public",
9766
+ "name": "pollTriggerEvents",
9767
+ "propertyTypeTokenRange": {
9768
+ "startIndex": 1,
9769
+ "endIndex": 2
9770
+ }
9771
+ },
9420
9772
  {
9421
9773
  "kind": "PropertySignature",
9422
9774
  "canonicalReference": "@genesislcap/foundation-comms!DatasourceOptions#request:member",
@@ -12045,6 +12397,68 @@
12045
12397
  "isAbstract": false,
12046
12398
  "name": "addCommitListener"
12047
12399
  },
12400
+ {
12401
+ "kind": "Method",
12402
+ "canonicalReference": "@genesislcap/foundation-comms!DefaultConnectEvents#addCommitResponseListener:member(1)",
12403
+ "docComment": "/**\n * {@inheritDoc ConnectEvents.addCommitResponseListener}\n */\n",
12404
+ "excerptTokens": [
12405
+ {
12406
+ "kind": "Content",
12407
+ "text": "addCommitResponseListener(listener: "
12408
+ },
12409
+ {
12410
+ "kind": "Reference",
12411
+ "text": "Listener",
12412
+ "canonicalReference": "@genesislcap/foundation-utils!Listener:type"
12413
+ },
12414
+ {
12415
+ "kind": "Content",
12416
+ "text": "<"
12417
+ },
12418
+ {
12419
+ "kind": "Reference",
12420
+ "text": "CommitResponseEvent",
12421
+ "canonicalReference": "@genesislcap/foundation-comms!CommitResponseEvent:type"
12422
+ },
12423
+ {
12424
+ "kind": "Content",
12425
+ "text": ">"
12426
+ },
12427
+ {
12428
+ "kind": "Content",
12429
+ "text": "): "
12430
+ },
12431
+ {
12432
+ "kind": "Content",
12433
+ "text": "() => void"
12434
+ },
12435
+ {
12436
+ "kind": "Content",
12437
+ "text": ";"
12438
+ }
12439
+ ],
12440
+ "isStatic": false,
12441
+ "returnTypeTokenRange": {
12442
+ "startIndex": 6,
12443
+ "endIndex": 7
12444
+ },
12445
+ "releaseTag": "Public",
12446
+ "isProtected": false,
12447
+ "overloadIndex": 1,
12448
+ "parameters": [
12449
+ {
12450
+ "parameterName": "listener",
12451
+ "parameterTypeTokenRange": {
12452
+ "startIndex": 1,
12453
+ "endIndex": 5
12454
+ },
12455
+ "isOptional": false
12456
+ }
12457
+ ],
12458
+ "isOptional": false,
12459
+ "isAbstract": false,
12460
+ "name": "addCommitResponseListener"
12461
+ },
12048
12462
  {
12049
12463
  "kind": "Method",
12050
12464
  "canonicalReference": "@genesislcap/foundation-comms!DefaultConnectEvents#addMetadataListener:member(1)",
@@ -12294,6 +12708,71 @@
12294
12708
  "isAbstract": false,
12295
12709
  "name": "onCommitEvent"
12296
12710
  },
12711
+ {
12712
+ "kind": "Method",
12713
+ "canonicalReference": "@genesislcap/foundation-comms!DefaultConnectEvents#onCommitResponseEvent:member(1)",
12714
+ "docComment": "/**\n * {@inheritDoc ConnectEventsEmitter.onCommitResponseEvent}\n */\n",
12715
+ "excerptTokens": [
12716
+ {
12717
+ "kind": "Content",
12718
+ "text": "onCommitResponseEvent(eventName: "
12719
+ },
12720
+ {
12721
+ "kind": "Content",
12722
+ "text": "string"
12723
+ },
12724
+ {
12725
+ "kind": "Content",
12726
+ "text": ", response: "
12727
+ },
12728
+ {
12729
+ "kind": "Reference",
12730
+ "text": "Message",
12731
+ "canonicalReference": "@genesislcap/foundation-comms!Message:type"
12732
+ },
12733
+ {
12734
+ "kind": "Content",
12735
+ "text": "): "
12736
+ },
12737
+ {
12738
+ "kind": "Content",
12739
+ "text": "void"
12740
+ },
12741
+ {
12742
+ "kind": "Content",
12743
+ "text": ";"
12744
+ }
12745
+ ],
12746
+ "isStatic": false,
12747
+ "returnTypeTokenRange": {
12748
+ "startIndex": 5,
12749
+ "endIndex": 6
12750
+ },
12751
+ "releaseTag": "Public",
12752
+ "isProtected": false,
12753
+ "overloadIndex": 1,
12754
+ "parameters": [
12755
+ {
12756
+ "parameterName": "eventName",
12757
+ "parameterTypeTokenRange": {
12758
+ "startIndex": 1,
12759
+ "endIndex": 2
12760
+ },
12761
+ "isOptional": false
12762
+ },
12763
+ {
12764
+ "parameterName": "response",
12765
+ "parameterTypeTokenRange": {
12766
+ "startIndex": 3,
12767
+ "endIndex": 4
12768
+ },
12769
+ "isOptional": false
12770
+ }
12771
+ ],
12772
+ "isOptional": false,
12773
+ "isAbstract": false,
12774
+ "name": "onCommitResponseEvent"
12775
+ },
12297
12776
  {
12298
12777
  "kind": "Method",
12299
12778
  "canonicalReference": "@genesislcap/foundation-comms!DefaultConnectEvents#onMetadataEvent:member(1)",
@@ -13974,6 +14453,15 @@
13974
14453
  "text": "DatasourceConfig",
13975
14454
  "canonicalReference": "@genesislcap/foundation-comms!DatasourceConfig:interface"
13976
14455
  },
14456
+ {
14457
+ "kind": "Content",
14458
+ "text": ", connectEvents: "
14459
+ },
14460
+ {
14461
+ "kind": "Reference",
14462
+ "text": "ConnectEvents",
14463
+ "canonicalReference": "@genesislcap/foundation-comms!ConnectEvents:interface"
14464
+ },
13977
14465
  {
13978
14466
  "kind": "Content",
13979
14467
  "text": ");"
@@ -14014,6 +14502,14 @@
14014
14502
  "endIndex": 8
14015
14503
  },
14016
14504
  "isOptional": false
14505
+ },
14506
+ {
14507
+ "parameterName": "connectEvents",
14508
+ "parameterTypeTokenRange": {
14509
+ "startIndex": 9,
14510
+ "endIndex": 10
14511
+ },
14512
+ "isOptional": false
14017
14513
  }
14018
14514
  ]
14019
14515
  },
@@ -14145,6 +14641,37 @@
14145
14641
  "isProtected": true,
14146
14642
  "isAbstract": false
14147
14643
  },
14644
+ {
14645
+ "kind": "Property",
14646
+ "canonicalReference": "@genesislcap/foundation-comms!DefaultDatasource#connectEvents:member",
14647
+ "docComment": "",
14648
+ "excerptTokens": [
14649
+ {
14650
+ "kind": "Content",
14651
+ "text": "protected connectEvents: "
14652
+ },
14653
+ {
14654
+ "kind": "Reference",
14655
+ "text": "ConnectEvents",
14656
+ "canonicalReference": "@genesislcap/foundation-comms!ConnectEvents:interface"
14657
+ },
14658
+ {
14659
+ "kind": "Content",
14660
+ "text": ";"
14661
+ }
14662
+ ],
14663
+ "isReadonly": false,
14664
+ "isOptional": false,
14665
+ "releaseTag": "Public",
14666
+ "name": "connectEvents",
14667
+ "propertyTypeTokenRange": {
14668
+ "startIndex": 1,
14669
+ "endIndex": 2
14670
+ },
14671
+ "isStatic": false,
14672
+ "isProtected": true,
14673
+ "isAbstract": false
14674
+ },
14148
14675
  {
14149
14676
  "kind": "Property",
14150
14677
  "canonicalReference": "@genesislcap/foundation-comms!DefaultDatasource#customRequestFields:member",