@genesislcap/foundation-comms 14.184.0 → 14.185.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. package/dist/dts/auth/auth.types.d.ts +1 -1
  2. package/dist/dts/auth/auth.types.d.ts.map +1 -1
  3. package/dist/dts/connect/connect.d.ts +13 -6
  4. package/dist/dts/connect/connect.d.ts.map +1 -1
  5. package/dist/dts/connect/connect.types.d.ts +4 -51
  6. package/dist/dts/connect/connect.types.d.ts.map +1 -1
  7. package/dist/dts/connect/http.connect.d.ts +4 -8
  8. package/dist/dts/connect/http.connect.d.ts.map +1 -1
  9. package/dist/dts/connect/http.connect.types.d.ts +62 -0
  10. package/dist/dts/connect/http.connect.types.d.ts.map +1 -0
  11. package/dist/dts/connect/updateState.d.ts +3 -0
  12. package/dist/dts/connect/updateState.d.ts.map +1 -0
  13. package/dist/dts/testing/mocks/auth/auth.d.ts +1 -1
  14. package/dist/dts/testing/mocks/auth/auth.d.ts.map +1 -1
  15. package/dist/dts/testing/mocks/connect/connect.d.ts +3 -1
  16. package/dist/dts/testing/mocks/connect/connect.d.ts.map +1 -1
  17. package/dist/dts/testing/mocks/connect/socket.d.ts +1 -1
  18. package/dist/dts/testing/mocks/connect/socket.d.ts.map +1 -1
  19. package/dist/dts/testing/mocks/datasource/datasource.d.ts +1 -1
  20. package/dist/dts/testing/mocks/datasource/datasource.d.ts.map +1 -1
  21. package/dist/esm/connect/connect.js +10 -24
  22. package/dist/esm/connect/connect.types.js +21 -5
  23. package/dist/esm/connect/http.connect.js +10 -23
  24. package/dist/esm/connect/http.connect.types.js +24 -0
  25. package/dist/esm/connect/updateState.js +26 -0
  26. package/dist/esm/testing/mocks/connect/connect.js +3 -0
  27. package/dist/esm/testing/mocks/connect/socket.js +1 -1
  28. package/dist/foundation-comms.api.json +392 -287
  29. package/dist/foundation-comms.d.ts +25 -12
  30. package/docs/api/foundation-comms.connect.md +1 -0
  31. package/docs/api/foundation-comms.connect.streamstate.md +30 -0
  32. package/docs/api/foundation-comms.connectconfig.iswebsocketexpression.md +13 -0
  33. package/docs/api/foundation-comms.connectconfig.md +1 -0
  34. package/docs/api/foundation-comms.defaultconnect._constructor_.md +2 -2
  35. package/docs/api/foundation-comms.defaultconnect.md +1 -0
  36. package/docs/api/foundation-comms.defaultconnect.streamstate.md +26 -0
  37. package/docs/api/foundation-comms.defaulthttpconnect._constructor_.md +2 -2
  38. package/docs/api/foundation-comms.defaulthttpconnect.md +1 -0
  39. package/docs/api/foundation-comms.defaulthttpconnect.streamstate.md +26 -0
  40. package/docs/api/foundation-comms.md +0 -4
  41. package/docs/api-report.md +13 -33
  42. package/package.json +21 -13
  43. package/docs/api/foundation-comms.defaulthttpconnectconfig.md +0 -13
  44. package/docs/api/foundation-comms.httpconnectconfig.md +0 -20
  45. package/docs/api/foundation-comms.httpconnectconfig.polling.md +0 -13
  46. package/docs/api/foundation-comms.httppollingconfig.md +0 -22
  47. package/docs/api/foundation-comms.httppollingconfig.polling_frequency.md +0 -13
  48. package/docs/api/foundation-comms.httppollingconfig.polling_interval_map.md +0 -15
  49. package/docs/api/foundation-comms.httppollingconfig.polling_map.md +0 -15
  50. package/docs/api/foundation-comms.pollingconfiguration.amount_of_polls.md +0 -18
  51. package/docs/api/foundation-comms.pollingconfiguration.md +0 -22
  52. package/docs/api/foundation-comms.pollingconfiguration.queries.md +0 -13
  53. package/docs/api/foundation-comms.pollingconfiguration.temp_frequency.md +0 -13
@@ -2044,6 +2044,122 @@
2044
2044
  }
2045
2045
  ],
2046
2046
  "name": "stream"
2047
+ },
2048
+ {
2049
+ "kind": "MethodSignature",
2050
+ "canonicalReference": "@genesislcap/foundation-comms!Connect#streamState:member(1)",
2051
+ "docComment": "/**\n * Starts listening for updates on the specified resource.\n *\n * @param resourceName - The name of the resource to listen for updates on.\n *\n * @param onMessage - A callback function to handle received messages.\n *\n * @param onError - A callback function to handle errors.\n *\n * @param params - Additional parameters to pass to the server.\n *\n * @param initialState - State of the list to start with, defaults to empty array.\n *\n * @returns An observable that emits latest state of the list it subscribes to.\n *\n * @public\n */\n",
2052
+ "excerptTokens": [
2053
+ {
2054
+ "kind": "Content",
2055
+ "text": "streamState(resourceName: "
2056
+ },
2057
+ {
2058
+ "kind": "Content",
2059
+ "text": "string"
2060
+ },
2061
+ {
2062
+ "kind": "Content",
2063
+ "text": ", onMessage: "
2064
+ },
2065
+ {
2066
+ "kind": "Reference",
2067
+ "text": "Function",
2068
+ "canonicalReference": "!Function:interface"
2069
+ },
2070
+ {
2071
+ "kind": "Content",
2072
+ "text": ", onError: "
2073
+ },
2074
+ {
2075
+ "kind": "Reference",
2076
+ "text": "Function",
2077
+ "canonicalReference": "!Function:interface"
2078
+ },
2079
+ {
2080
+ "kind": "Content",
2081
+ "text": ", params?: "
2082
+ },
2083
+ {
2084
+ "kind": "Content",
2085
+ "text": "any"
2086
+ },
2087
+ {
2088
+ "kind": "Content",
2089
+ "text": ", initialState?: "
2090
+ },
2091
+ {
2092
+ "kind": "Content",
2093
+ "text": "any[]"
2094
+ },
2095
+ {
2096
+ "kind": "Content",
2097
+ "text": "): "
2098
+ },
2099
+ {
2100
+ "kind": "Reference",
2101
+ "text": "Observable",
2102
+ "canonicalReference": "rxjs!Observable:class"
2103
+ },
2104
+ {
2105
+ "kind": "Content",
2106
+ "text": "<any[]>"
2107
+ },
2108
+ {
2109
+ "kind": "Content",
2110
+ "text": ";"
2111
+ }
2112
+ ],
2113
+ "isOptional": false,
2114
+ "returnTypeTokenRange": {
2115
+ "startIndex": 11,
2116
+ "endIndex": 13
2117
+ },
2118
+ "releaseTag": "Public",
2119
+ "overloadIndex": 1,
2120
+ "parameters": [
2121
+ {
2122
+ "parameterName": "resourceName",
2123
+ "parameterTypeTokenRange": {
2124
+ "startIndex": 1,
2125
+ "endIndex": 2
2126
+ },
2127
+ "isOptional": false
2128
+ },
2129
+ {
2130
+ "parameterName": "onMessage",
2131
+ "parameterTypeTokenRange": {
2132
+ "startIndex": 3,
2133
+ "endIndex": 4
2134
+ },
2135
+ "isOptional": false
2136
+ },
2137
+ {
2138
+ "parameterName": "onError",
2139
+ "parameterTypeTokenRange": {
2140
+ "startIndex": 5,
2141
+ "endIndex": 6
2142
+ },
2143
+ "isOptional": false
2144
+ },
2145
+ {
2146
+ "parameterName": "params",
2147
+ "parameterTypeTokenRange": {
2148
+ "startIndex": 7,
2149
+ "endIndex": 8
2150
+ },
2151
+ "isOptional": true
2152
+ },
2153
+ {
2154
+ "parameterName": "initialState",
2155
+ "parameterTypeTokenRange": {
2156
+ "startIndex": 9,
2157
+ "endIndex": 10
2158
+ },
2159
+ "isOptional": true
2160
+ }
2161
+ ],
2162
+ "name": "streamState"
2047
2163
  }
2048
2164
  ],
2049
2165
  "extendsTokenRanges": []
@@ -2091,6 +2207,34 @@
2091
2207
  "endIndex": 2
2092
2208
  }
2093
2209
  },
2210
+ {
2211
+ "kind": "PropertySignature",
2212
+ "canonicalReference": "@genesislcap/foundation-comms!ConnectConfig#isWebSocketExpression:member",
2213
+ "docComment": "/**\n * Check for web socket url pattern.\n */\n",
2214
+ "excerptTokens": [
2215
+ {
2216
+ "kind": "Content",
2217
+ "text": "isWebSocketExpression: "
2218
+ },
2219
+ {
2220
+ "kind": "Reference",
2221
+ "text": "RegExp",
2222
+ "canonicalReference": "!RegExp:interface"
2223
+ },
2224
+ {
2225
+ "kind": "Content",
2226
+ "text": ";"
2227
+ }
2228
+ ],
2229
+ "isReadonly": false,
2230
+ "isOptional": false,
2231
+ "releaseTag": "Public",
2232
+ "name": "isWebSocketExpression",
2233
+ "propertyTypeTokenRange": {
2234
+ "startIndex": 1,
2235
+ "endIndex": 2
2236
+ }
2237
+ },
2094
2238
  {
2095
2239
  "kind": "PropertySignature",
2096
2240
  "canonicalReference": "@genesislcap/foundation-comms!ConnectConfig#reconnect:member",
@@ -6652,7 +6796,7 @@
6652
6796
  },
6653
6797
  {
6654
6798
  "kind": "Content",
6655
- "text": ", config?: "
6799
+ "text": ", config: "
6656
6800
  },
6657
6801
  {
6658
6802
  "kind": "Reference",
@@ -6706,7 +6850,7 @@
6706
6850
  "startIndex": 9,
6707
6851
  "endIndex": 10
6708
6852
  },
6709
- "isOptional": true
6853
+ "isOptional": false
6710
6854
  }
6711
6855
  ]
6712
6856
  },
@@ -7873,6 +8017,125 @@
7873
8017
  "isAbstract": false,
7874
8018
  "name": "stream"
7875
8019
  },
8020
+ {
8021
+ "kind": "Method",
8022
+ "canonicalReference": "@genesislcap/foundation-comms!DefaultConnect#streamState:member(1)",
8023
+ "docComment": "",
8024
+ "excerptTokens": [
8025
+ {
8026
+ "kind": "Content",
8027
+ "text": "streamState(resourceName: "
8028
+ },
8029
+ {
8030
+ "kind": "Content",
8031
+ "text": "string"
8032
+ },
8033
+ {
8034
+ "kind": "Content",
8035
+ "text": ", onMessage?: "
8036
+ },
8037
+ {
8038
+ "kind": "Reference",
8039
+ "text": "Function",
8040
+ "canonicalReference": "!Function:interface"
8041
+ },
8042
+ {
8043
+ "kind": "Content",
8044
+ "text": ", onError?: "
8045
+ },
8046
+ {
8047
+ "kind": "Reference",
8048
+ "text": "Function",
8049
+ "canonicalReference": "!Function:interface"
8050
+ },
8051
+ {
8052
+ "kind": "Content",
8053
+ "text": ", params?: "
8054
+ },
8055
+ {
8056
+ "kind": "Content",
8057
+ "text": "any"
8058
+ },
8059
+ {
8060
+ "kind": "Content",
8061
+ "text": ", initialState?: "
8062
+ },
8063
+ {
8064
+ "kind": "Content",
8065
+ "text": "any[]"
8066
+ },
8067
+ {
8068
+ "kind": "Content",
8069
+ "text": "): "
8070
+ },
8071
+ {
8072
+ "kind": "Reference",
8073
+ "text": "Observable",
8074
+ "canonicalReference": "rxjs!Observable:class"
8075
+ },
8076
+ {
8077
+ "kind": "Content",
8078
+ "text": "<any[]>"
8079
+ },
8080
+ {
8081
+ "kind": "Content",
8082
+ "text": ";"
8083
+ }
8084
+ ],
8085
+ "isStatic": false,
8086
+ "returnTypeTokenRange": {
8087
+ "startIndex": 11,
8088
+ "endIndex": 13
8089
+ },
8090
+ "releaseTag": "Public",
8091
+ "isProtected": false,
8092
+ "overloadIndex": 1,
8093
+ "parameters": [
8094
+ {
8095
+ "parameterName": "resourceName",
8096
+ "parameterTypeTokenRange": {
8097
+ "startIndex": 1,
8098
+ "endIndex": 2
8099
+ },
8100
+ "isOptional": false
8101
+ },
8102
+ {
8103
+ "parameterName": "onMessage",
8104
+ "parameterTypeTokenRange": {
8105
+ "startIndex": 3,
8106
+ "endIndex": 4
8107
+ },
8108
+ "isOptional": true
8109
+ },
8110
+ {
8111
+ "parameterName": "onError",
8112
+ "parameterTypeTokenRange": {
8113
+ "startIndex": 5,
8114
+ "endIndex": 6
8115
+ },
8116
+ "isOptional": true
8117
+ },
8118
+ {
8119
+ "parameterName": "params",
8120
+ "parameterTypeTokenRange": {
8121
+ "startIndex": 7,
8122
+ "endIndex": 8
8123
+ },
8124
+ "isOptional": true
8125
+ },
8126
+ {
8127
+ "parameterName": "initialState",
8128
+ "parameterTypeTokenRange": {
8129
+ "startIndex": 9,
8130
+ "endIndex": 10
8131
+ },
8132
+ "isOptional": true
8133
+ }
8134
+ ],
8135
+ "isOptional": false,
8136
+ "isAbstract": false,
8137
+ "name": "streamState"
8138
+ },
7876
8139
  {
7877
8140
  "kind": "Method",
7878
8141
  "canonicalReference": "@genesislcap/foundation-comms!DefaultConnect#streamWithoutAutoTeardown:member(1)",
@@ -8008,7 +8271,7 @@
8008
8271
  "canonicalReference": "@genesislcap/foundation-comms!ConnectConfig:interface"
8009
8272
  }
8010
8273
  ],
8011
- "fileUrlPath": "src/connect/connect.ts",
8274
+ "fileUrlPath": "src/connect/connect.types.ts",
8012
8275
  "isReadonly": true,
8013
8276
  "releaseTag": "Public",
8014
8277
  "name": "defaultConnectConfig",
@@ -11251,12 +11514,12 @@
11251
11514
  },
11252
11515
  {
11253
11516
  "kind": "Content",
11254
- "text": ", config?: "
11517
+ "text": ", config: "
11255
11518
  },
11256
11519
  {
11257
11520
  "kind": "Reference",
11258
11521
  "text": "HttpConnectConfig",
11259
- "canonicalReference": "@genesislcap/foundation-comms!HttpConnectConfig:interface"
11522
+ "canonicalReference": "@genesislcap/foundation-comms!~HttpConnectConfig:interface"
11260
11523
  },
11261
11524
  {
11262
11525
  "kind": "Content",
@@ -11313,7 +11576,7 @@
11313
11576
  "startIndex": 11,
11314
11577
  "endIndex": 12
11315
11578
  },
11316
- "isOptional": true
11579
+ "isOptional": false
11317
11580
  }
11318
11581
  ]
11319
11582
  },
@@ -12496,12 +12759,12 @@
12496
12759
  },
12497
12760
  {
12498
12761
  "kind": "Method",
12499
- "canonicalReference": "@genesislcap/foundation-comms!DefaultHttpConnect#streamWithoutAutoTeardown:member(1)",
12762
+ "canonicalReference": "@genesislcap/foundation-comms!DefaultHttpConnect#streamState:member(1)",
12500
12763
  "docComment": "",
12501
12764
  "excerptTokens": [
12502
12765
  {
12503
12766
  "kind": "Content",
12504
- "text": "streamWithoutAutoTeardown(resourceName: "
12767
+ "text": "streamState(resourceName: "
12505
12768
  },
12506
12769
  {
12507
12770
  "kind": "Content",
@@ -12509,7 +12772,7 @@
12509
12772
  },
12510
12773
  {
12511
12774
  "kind": "Content",
12512
- "text": ", onMessage: "
12775
+ "text": ", onMessage?: "
12513
12776
  },
12514
12777
  {
12515
12778
  "kind": "Reference",
@@ -12518,7 +12781,126 @@
12518
12781
  },
12519
12782
  {
12520
12783
  "kind": "Content",
12521
- "text": ", onError: "
12784
+ "text": ", onError?: "
12785
+ },
12786
+ {
12787
+ "kind": "Reference",
12788
+ "text": "Function",
12789
+ "canonicalReference": "!Function:interface"
12790
+ },
12791
+ {
12792
+ "kind": "Content",
12793
+ "text": ", params?: "
12794
+ },
12795
+ {
12796
+ "kind": "Content",
12797
+ "text": "any"
12798
+ },
12799
+ {
12800
+ "kind": "Content",
12801
+ "text": ", initialState?: "
12802
+ },
12803
+ {
12804
+ "kind": "Content",
12805
+ "text": "any[]"
12806
+ },
12807
+ {
12808
+ "kind": "Content",
12809
+ "text": "): "
12810
+ },
12811
+ {
12812
+ "kind": "Reference",
12813
+ "text": "Observable",
12814
+ "canonicalReference": "rxjs!Observable:class"
12815
+ },
12816
+ {
12817
+ "kind": "Content",
12818
+ "text": "<any[]>"
12819
+ },
12820
+ {
12821
+ "kind": "Content",
12822
+ "text": ";"
12823
+ }
12824
+ ],
12825
+ "isStatic": false,
12826
+ "returnTypeTokenRange": {
12827
+ "startIndex": 11,
12828
+ "endIndex": 13
12829
+ },
12830
+ "releaseTag": "Public",
12831
+ "isProtected": false,
12832
+ "overloadIndex": 1,
12833
+ "parameters": [
12834
+ {
12835
+ "parameterName": "resourceName",
12836
+ "parameterTypeTokenRange": {
12837
+ "startIndex": 1,
12838
+ "endIndex": 2
12839
+ },
12840
+ "isOptional": false
12841
+ },
12842
+ {
12843
+ "parameterName": "onMessage",
12844
+ "parameterTypeTokenRange": {
12845
+ "startIndex": 3,
12846
+ "endIndex": 4
12847
+ },
12848
+ "isOptional": true
12849
+ },
12850
+ {
12851
+ "parameterName": "onError",
12852
+ "parameterTypeTokenRange": {
12853
+ "startIndex": 5,
12854
+ "endIndex": 6
12855
+ },
12856
+ "isOptional": true
12857
+ },
12858
+ {
12859
+ "parameterName": "params",
12860
+ "parameterTypeTokenRange": {
12861
+ "startIndex": 7,
12862
+ "endIndex": 8
12863
+ },
12864
+ "isOptional": true
12865
+ },
12866
+ {
12867
+ "parameterName": "initialState",
12868
+ "parameterTypeTokenRange": {
12869
+ "startIndex": 9,
12870
+ "endIndex": 10
12871
+ },
12872
+ "isOptional": true
12873
+ }
12874
+ ],
12875
+ "isOptional": false,
12876
+ "isAbstract": false,
12877
+ "name": "streamState"
12878
+ },
12879
+ {
12880
+ "kind": "Method",
12881
+ "canonicalReference": "@genesislcap/foundation-comms!DefaultHttpConnect#streamWithoutAutoTeardown:member(1)",
12882
+ "docComment": "",
12883
+ "excerptTokens": [
12884
+ {
12885
+ "kind": "Content",
12886
+ "text": "streamWithoutAutoTeardown(resourceName: "
12887
+ },
12888
+ {
12889
+ "kind": "Content",
12890
+ "text": "string"
12891
+ },
12892
+ {
12893
+ "kind": "Content",
12894
+ "text": ", onMessage: "
12895
+ },
12896
+ {
12897
+ "kind": "Reference",
12898
+ "text": "Function",
12899
+ "canonicalReference": "!Function:interface"
12900
+ },
12901
+ {
12902
+ "kind": "Content",
12903
+ "text": ", onError: "
12522
12904
  },
12523
12905
  {
12524
12906
  "kind": "Reference",
@@ -12614,30 +12996,6 @@
12614
12996
  }
12615
12997
  ]
12616
12998
  },
12617
- {
12618
- "kind": "Variable",
12619
- "canonicalReference": "@genesislcap/foundation-comms!defaultHttpConnectConfig:var",
12620
- "docComment": "/**\n * The default configuration for connecting to an HTTP service.\n *\n * @public\n */\n",
12621
- "excerptTokens": [
12622
- {
12623
- "kind": "Content",
12624
- "text": "defaultHttpConnectConfig: "
12625
- },
12626
- {
12627
- "kind": "Reference",
12628
- "text": "HttpConnectConfig",
12629
- "canonicalReference": "@genesislcap/foundation-comms!HttpConnectConfig:interface"
12630
- }
12631
- ],
12632
- "fileUrlPath": "src/connect/http.connect.ts",
12633
- "isReadonly": true,
12634
- "releaseTag": "Public",
12635
- "name": "defaultHttpConnectConfig",
12636
- "variableTypeTokenRange": {
12637
- "startIndex": 1,
12638
- "endIndex": 2
12639
- }
12640
- },
12641
12999
  {
12642
13000
  "kind": "Class",
12643
13001
  "canonicalReference": "@genesislcap/foundation-comms!DefaultMessageBuilder:class",
@@ -18398,160 +18756,6 @@
18398
18756
  ],
18399
18757
  "extendsTokenRanges": []
18400
18758
  },
18401
- {
18402
- "kind": "Interface",
18403
- "canonicalReference": "@genesislcap/foundation-comms!HttpConnectConfig:interface",
18404
- "docComment": "/**\n * Configuration options for the Connect (HTTP) instance.\n *\n * @public\n */\n",
18405
- "excerptTokens": [
18406
- {
18407
- "kind": "Content",
18408
- "text": "export interface HttpConnectConfig "
18409
- }
18410
- ],
18411
- "fileUrlPath": "src/connect/connect.types.ts",
18412
- "releaseTag": "Public",
18413
- "name": "HttpConnectConfig",
18414
- "preserveMemberOrder": false,
18415
- "members": [
18416
- {
18417
- "kind": "PropertySignature",
18418
- "canonicalReference": "@genesislcap/foundation-comms!HttpConnectConfig#polling:member",
18419
- "docComment": "/**\n * Configuration options for http polling.\n */\n",
18420
- "excerptTokens": [
18421
- {
18422
- "kind": "Content",
18423
- "text": "polling: "
18424
- },
18425
- {
18426
- "kind": "Reference",
18427
- "text": "HttpPollingConfig",
18428
- "canonicalReference": "@genesislcap/foundation-comms!HttpPollingConfig:interface"
18429
- },
18430
- {
18431
- "kind": "Content",
18432
- "text": ";"
18433
- }
18434
- ],
18435
- "isReadonly": false,
18436
- "isOptional": false,
18437
- "releaseTag": "Public",
18438
- "name": "polling",
18439
- "propertyTypeTokenRange": {
18440
- "startIndex": 1,
18441
- "endIndex": 2
18442
- }
18443
- }
18444
- ],
18445
- "extendsTokenRanges": []
18446
- },
18447
- {
18448
- "kind": "Interface",
18449
- "canonicalReference": "@genesislcap/foundation-comms!HttpPollingConfig:interface",
18450
- "docComment": "/**\n * Configuration options for http connection.\n *\n * @public\n */\n",
18451
- "excerptTokens": [
18452
- {
18453
- "kind": "Content",
18454
- "text": "export interface HttpPollingConfig "
18455
- }
18456
- ],
18457
- "fileUrlPath": "src/connect/connect.types.ts",
18458
- "releaseTag": "Public",
18459
- "name": "HttpPollingConfig",
18460
- "preserveMemberOrder": false,
18461
- "members": [
18462
- {
18463
- "kind": "PropertySignature",
18464
- "canonicalReference": "@genesislcap/foundation-comms!HttpPollingConfig#POLLING_FREQUENCY:member",
18465
- "docComment": "/**\n * The frequency of polling.\n */\n",
18466
- "excerptTokens": [
18467
- {
18468
- "kind": "Content",
18469
- "text": "POLLING_FREQUENCY?: "
18470
- },
18471
- {
18472
- "kind": "Content",
18473
- "text": "number"
18474
- },
18475
- {
18476
- "kind": "Content",
18477
- "text": ";"
18478
- }
18479
- ],
18480
- "isReadonly": false,
18481
- "isOptional": true,
18482
- "releaseTag": "Public",
18483
- "name": "POLLING_FREQUENCY",
18484
- "propertyTypeTokenRange": {
18485
- "startIndex": 1,
18486
- "endIndex": 2
18487
- }
18488
- },
18489
- {
18490
- "kind": "PropertySignature",
18491
- "canonicalReference": "@genesislcap/foundation-comms!HttpPollingConfig#POLLING_INTERVAL_MAP:member",
18492
- "docComment": "/**\n * The interval map of polling.\n */\n",
18493
- "excerptTokens": [
18494
- {
18495
- "kind": "Content",
18496
- "text": "POLLING_INTERVAL_MAP?: "
18497
- },
18498
- {
18499
- "kind": "Content",
18500
- "text": "{\n [resource: string]: number;\n }"
18501
- },
18502
- {
18503
- "kind": "Content",
18504
- "text": ";"
18505
- }
18506
- ],
18507
- "isReadonly": false,
18508
- "isOptional": true,
18509
- "releaseTag": "Public",
18510
- "name": "POLLING_INTERVAL_MAP",
18511
- "propertyTypeTokenRange": {
18512
- "startIndex": 1,
18513
- "endIndex": 2
18514
- }
18515
- },
18516
- {
18517
- "kind": "PropertySignature",
18518
- "canonicalReference": "@genesislcap/foundation-comms!HttpPollingConfig#POLLING_MAP:member",
18519
- "docComment": "/**\n * The map of polling configuration.\n */\n",
18520
- "excerptTokens": [
18521
- {
18522
- "kind": "Content",
18523
- "text": "POLLING_MAP?: "
18524
- },
18525
- {
18526
- "kind": "Content",
18527
- "text": "{\n [key: string]: "
18528
- },
18529
- {
18530
- "kind": "Reference",
18531
- "text": "PollingConfiguration",
18532
- "canonicalReference": "@genesislcap/foundation-comms!PollingConfiguration:interface"
18533
- },
18534
- {
18535
- "kind": "Content",
18536
- "text": ";\n }"
18537
- },
18538
- {
18539
- "kind": "Content",
18540
- "text": ";"
18541
- }
18542
- ],
18543
- "isReadonly": false,
18544
- "isOptional": true,
18545
- "releaseTag": "Public",
18546
- "name": "POLLING_MAP",
18547
- "propertyTypeTokenRange": {
18548
- "startIndex": 1,
18549
- "endIndex": 4
18550
- }
18551
- }
18552
- ],
18553
- "extendsTokenRanges": []
18554
- },
18555
18759
  {
18556
18760
  "kind": "Interface",
18557
18761
  "canonicalReference": "@genesislcap/foundation-comms!HttpRequestInit:interface",
@@ -22728,105 +22932,6 @@
22728
22932
  "endIndex": 5
22729
22933
  }
22730
22934
  },
22731
- {
22732
- "kind": "Interface",
22733
- "canonicalReference": "@genesislcap/foundation-comms!PollingConfiguration:interface",
22734
- "docComment": "/**\n * Configuration options for http polling.\n *\n * @public\n */\n",
22735
- "excerptTokens": [
22736
- {
22737
- "kind": "Content",
22738
- "text": "export interface PollingConfiguration "
22739
- }
22740
- ],
22741
- "fileUrlPath": "src/connect/connect.types.ts",
22742
- "releaseTag": "Public",
22743
- "name": "PollingConfiguration",
22744
- "preserveMemberOrder": false,
22745
- "members": [
22746
- {
22747
- "kind": "PropertySignature",
22748
- "canonicalReference": "@genesislcap/foundation-comms!PollingConfiguration#AMOUNT_OF_POLLS:member",
22749
- "docComment": "/**\n * The expected amount of HTTP polling attempts to be performed.\n *\n * @remarks\n *\n * TEMP_FREQUENCY * AMOUNT_OF_POLLS = the total polling time/duration\n */\n",
22750
- "excerptTokens": [
22751
- {
22752
- "kind": "Content",
22753
- "text": "AMOUNT_OF_POLLS: "
22754
- },
22755
- {
22756
- "kind": "Content",
22757
- "text": "number"
22758
- },
22759
- {
22760
- "kind": "Content",
22761
- "text": ";"
22762
- }
22763
- ],
22764
- "isReadonly": false,
22765
- "isOptional": false,
22766
- "releaseTag": "Public",
22767
- "name": "AMOUNT_OF_POLLS",
22768
- "propertyTypeTokenRange": {
22769
- "startIndex": 1,
22770
- "endIndex": 2
22771
- }
22772
- },
22773
- {
22774
- "kind": "PropertySignature",
22775
- "canonicalReference": "@genesislcap/foundation-comms!PollingConfiguration#QUERIES:member",
22776
- "docComment": "/**\n * The queries to be polled.\n */\n",
22777
- "excerptTokens": [
22778
- {
22779
- "kind": "Content",
22780
- "text": "QUERIES: "
22781
- },
22782
- {
22783
- "kind": "Content",
22784
- "text": "string[]"
22785
- },
22786
- {
22787
- "kind": "Content",
22788
- "text": ";"
22789
- }
22790
- ],
22791
- "isReadonly": false,
22792
- "isOptional": false,
22793
- "releaseTag": "Public",
22794
- "name": "QUERIES",
22795
- "propertyTypeTokenRange": {
22796
- "startIndex": 1,
22797
- "endIndex": 2
22798
- }
22799
- },
22800
- {
22801
- "kind": "PropertySignature",
22802
- "canonicalReference": "@genesislcap/foundation-comms!PollingConfiguration#TEMP_FREQUENCY:member",
22803
- "docComment": "/**\n * The temporary polling frequency.\n */\n",
22804
- "excerptTokens": [
22805
- {
22806
- "kind": "Content",
22807
- "text": "TEMP_FREQUENCY: "
22808
- },
22809
- {
22810
- "kind": "Content",
22811
- "text": "number"
22812
- },
22813
- {
22814
- "kind": "Content",
22815
- "text": ";"
22816
- }
22817
- ],
22818
- "isReadonly": false,
22819
- "isOptional": false,
22820
- "releaseTag": "Public",
22821
- "name": "TEMP_FREQUENCY",
22822
- "propertyTypeTokenRange": {
22823
- "startIndex": 1,
22824
- "endIndex": 2
22825
- }
22826
- }
22827
- ],
22828
- "extendsTokenRanges": []
22829
- },
22830
22935
  {
22831
22936
  "kind": "TypeAlias",
22832
22937
  "canonicalReference": "@genesislcap/foundation-comms!PongMessage:type",