@genesislcap/foundation-comms 14.302.0 → 14.302.1-alpha-945e484.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.
- package/dist/dts/auth/loginDTOMapper.d.ts.map +1 -1
- package/dist/dts/connect/message.d.ts.map +1 -1
- package/dist/dts/connect/reconnectStrategy.d.ts.map +1 -1
- package/dist/dts/connect/socket.d.ts.map +1 -1
- package/dist/dts/connect/ticker.d.ts +1 -1
- package/dist/dts/connect/ticker.d.ts.map +1 -1
- package/dist/dts/connect/updateState.d.ts.map +1 -1
- package/dist/dts/credentialManager/credentialManager.types.d.ts +0 -1
- package/dist/dts/credentialManager/credentialManager.types.d.ts.map +1 -1
- package/dist/dts/datasource/datasource.mixins.d.ts +259 -218
- package/dist/dts/datasource/datasource.mixins.d.ts.map +1 -1
- package/dist/dts/datasource/entityDatasource.d.ts.map +1 -1
- package/dist/dts/metadata/metadata.utils.d.ts.map +1 -1
- package/dist/dts/networkMonitor/service.d.ts.map +1 -1
- package/dist/dts/testing/mocks/auth/auth.d.ts +1 -2
- package/dist/dts/testing/mocks/auth/auth.d.ts.map +1 -1
- package/dist/dts/testing/mocks/connect/socket.d.ts +1 -1
- package/dist/dts/testing/mocks/connect/socket.d.ts.map +1 -1
- package/dist/dts/tsdoc-metadata.json +1 -1
- package/dist/esm/auth/auth.js +2 -2
- package/dist/esm/connect/connect.js +8 -8
- package/dist/esm/connect/http.connect.js +8 -7
- package/dist/esm/connect/socket.js +16 -19
- package/dist/esm/connect/ticker.js +8 -6
- package/dist/esm/credentialManager/credentialManager.js +2 -2
- package/dist/esm/datasource/datasource.js +7 -7
- package/dist/esm/networkMonitor/config.js +1 -2
- package/dist/esm/resources/genesis/genesis.js +1 -1
- package/dist/esm/storage/kv/kv.service.js +3 -3
- package/dist/foundation-comms.api.json +3341 -626
- package/dist/foundation-comms.d.ts +261 -222
- package/docs/api/foundation-comms.auth.login.md +33 -3
- package/docs/api/foundation-comms.auth.md +128 -10
- package/docs/api/foundation-comms.autherror._constructor_.md +63 -5
- package/docs/api/foundation-comms.autherror.haserrorcode.md +31 -3
- package/docs/api/foundation-comms.autherror.md +178 -15
- package/docs/api/foundation-comms.authtype.md +73 -6
- package/docs/api/foundation-comms.connect.commitevent.md +47 -4
- package/docs/api/foundation-comms.connect.connect.md +33 -3
- package/docs/api/foundation-comms.connect.datalogoff.md +33 -3
- package/docs/api/foundation-comms.connect.getavailableresources.md +33 -3
- package/docs/api/foundation-comms.connect.getjsonschema.md +33 -3
- package/docs/api/foundation-comms.connect.getmetadata.md +49 -4
- package/docs/api/foundation-comms.connect.getmorecolumns.md +33 -3
- package/docs/api/foundation-comms.connect.getmorerows.md +49 -4
- package/docs/api/foundation-comms.connect.md +287 -22
- package/docs/api/foundation-comms.connect.request.md +49 -4
- package/docs/api/foundation-comms.connect.snapshot.md +49 -4
- package/docs/api/foundation-comms.connect.stream.md +81 -6
- package/docs/api/foundation-comms.connect.streamstate.md +97 -7
- package/docs/api/foundation-comms.connect.streamwithoutautoteardown.md +112 -0
- package/docs/api/foundation-comms.connectconfig.md +79 -5
- package/docs/api/foundation-comms.connectevents.addcommitlistener.md +33 -3
- package/docs/api/foundation-comms.connectevents.addcommitresponselistener.md +33 -3
- package/docs/api/foundation-comms.connectevents.addmetadatalistener.md +33 -3
- package/docs/api/foundation-comms.connectevents.addstreamlistener.md +65 -5
- package/docs/api/foundation-comms.connectevents.md +56 -6
- package/docs/api/foundation-comms.connecteventsemitter.md +78 -8
- package/docs/api/foundation-comms.connecteventsemitter.oncommitevent.md +49 -4
- package/docs/api/foundation-comms.connecteventsemitter.oncommitresponseevent.md +49 -4
- package/docs/api/foundation-comms.connecteventsemitter.onmetadataevent.md +65 -5
- package/docs/api/foundation-comms.connecteventsemitter.onstreamcompleteevent.md +49 -4
- package/docs/api/foundation-comms.connecteventsemitter.onstreamerrorevent.md +65 -5
- package/docs/api/foundation-comms.connecteventsemitter.onstreamevent.md +81 -6
- package/docs/api/foundation-comms.credentialmanager.createbasiccredentials.md +33 -3
- package/docs/api/foundation-comms.credentialmanager.createrefreshcredentials.md +33 -3
- package/docs/api/foundation-comms.credentialmanager.createssocredentials.md +33 -3
- package/docs/api/foundation-comms.credentialmanager.getcredentials.md +33 -3
- package/docs/api/foundation-comms.credentialmanager.getcredentialsfromcontainer.md +33 -3
- package/docs/api/foundation-comms.credentialmanager.md +287 -27
- package/docs/api/foundation-comms.credentialmanager.normaliselegacycredentialdata.md +49 -4
- package/docs/api/foundation-comms.credentialmanager.storecredentials.md +33 -3
- package/docs/api/foundation-comms.credentialmanager.storecredentialsincontainer.md +33 -3
- package/docs/api/foundation-comms.credentialmanager.storecredentialsincookie.md +33 -3
- package/docs/api/foundation-comms.credentialmanager.validatebasiccredentials.md +33 -3
- package/docs/api/foundation-comms.credentialmanager.validaterefreshcredentials.md +33 -3
- package/docs/api/foundation-comms.credentialmanager.validatessocredentials.md +33 -3
- package/docs/api/foundation-comms.credentialmanager.validateusercredentialdata.md +49 -4
- package/docs/api/foundation-comms.credentialmanagerconfig.md +39 -3
- package/docs/api/foundation-comms.credentialmanagercookieconfig.md +92 -6
- package/docs/api/foundation-comms.criteriafilterstofields.md +33 -3
- package/docs/api/foundation-comms.dataserverresultfilter.md +49 -4
- package/docs/api/foundation-comms.datasource.addview.md +33 -3
- package/docs/api/foundation-comms.datasource.clearfilter.md +33 -3
- package/docs/api/foundation-comms.datasource.createitem.md +33 -3
- package/docs/api/foundation-comms.datasource.datahandler.md +33 -3
- package/docs/api/foundation-comms.datasource.deleteitem.md +33 -3
- package/docs/api/foundation-comms.datasource.dropview.md +33 -3
- package/docs/api/foundation-comms.datasource.getmetadata.md +33 -3
- package/docs/api/foundation-comms.datasource.init.md +65 -5
- package/docs/api/foundation-comms.datasource.md +304 -25
- package/docs/api/foundation-comms.datasource.setfilter.md +65 -5
- package/docs/api/foundation-comms.datasource.snapshot.md +33 -3
- package/docs/api/foundation-comms.datasource.snapshotfiltered.md +33 -3
- package/docs/api/foundation-comms.datasource.updatedata.md +33 -3
- package/docs/api/foundation-comms.datasource.updateitem.md +49 -4
- package/docs/api/foundation-comms.datasource.validresourcename.md +31 -3
- package/docs/api/foundation-comms.datasourceconfig.criteriatofields.md +31 -3
- package/docs/api/foundation-comms.datasourceconfig.dataserverresultfilter.md +47 -4
- package/docs/api/foundation-comms.datasourceconfig.md +88 -8
- package/docs/api/foundation-comms.datasourcedefaults.md +148 -8
- package/docs/api/foundation-comms.datasourceeventhandler.md +300 -219
- package/docs/api/foundation-comms.datasourcemetadata.md +151 -9
- package/docs/api/foundation-comms.datasourceoptions.md +307 -17
- package/docs/api/foundation-comms.dataupdate.md +79 -5
- package/docs/api/foundation-comms.dataview.md +98 -6
- package/docs/api/foundation-comms.defaultauth._constructor_.md +87 -7
- package/docs/api/foundation-comms.defaultauth.login.md +31 -3
- package/docs/api/foundation-comms.defaultauth.md +195 -15
- package/docs/api/foundation-comms.defaultconnect._constructor_.md +87 -7
- package/docs/api/foundation-comms.defaultconnect.commitevent.md +47 -4
- package/docs/api/foundation-comms.defaultconnect.connect.md +33 -3
- package/docs/api/foundation-comms.defaultconnect.datalogoff.md +31 -3
- package/docs/api/foundation-comms.defaultconnect.getavailableresources.md +33 -3
- package/docs/api/foundation-comms.defaultconnect.getjsonschema.md +47 -4
- package/docs/api/foundation-comms.defaultconnect.getmetadata.md +47 -4
- package/docs/api/foundation-comms.defaultconnect.getmorecolumns.md +31 -3
- package/docs/api/foundation-comms.defaultconnect.getmorerows.md +47 -4
- package/docs/api/foundation-comms.defaultconnect.md +384 -30
- package/docs/api/foundation-comms.defaultconnect.request.md +47 -4
- package/docs/api/foundation-comms.defaultconnect.send.md +47 -4
- package/docs/api/foundation-comms.defaultconnect.setvalidsession.md +31 -3
- package/docs/api/foundation-comms.defaultconnect.snapshot.md +47 -4
- package/docs/api/foundation-comms.defaultconnect.stream.md +75 -6
- package/docs/api/foundation-comms.defaultconnect.streamstate.md +95 -7
- package/docs/api/foundation-comms.defaultconnect.streamwithoutautoteardown.md +75 -6
- package/docs/api/foundation-comms.defaultconnectevents.addcommitlistener.md +33 -3
- package/docs/api/foundation-comms.defaultconnectevents.addcommitresponselistener.md +33 -3
- package/docs/api/foundation-comms.defaultconnectevents.addmetadatalistener.md +33 -3
- package/docs/api/foundation-comms.defaultconnectevents.addstreamlistener.md +65 -5
- package/docs/api/foundation-comms.defaultconnectevents.md +157 -12
- package/docs/api/foundation-comms.defaultconnectevents.oncommitevent.md +47 -4
- package/docs/api/foundation-comms.defaultconnectevents.oncommitresponseevent.md +49 -4
- package/docs/api/foundation-comms.defaultconnectevents.onmetadataevent.md +65 -5
- package/docs/api/foundation-comms.defaultconnectevents.onstreamcompleteevent.md +49 -4
- package/docs/api/foundation-comms.defaultconnectevents.onstreamerrorevent.md +65 -5
- package/docs/api/foundation-comms.defaultconnectevents.onstreamevent.md +81 -6
- package/docs/api/foundation-comms.defaultcredentialmanager._constructor_.md +47 -4
- package/docs/api/foundation-comms.defaultcredentialmanager.createbasiccredentials.md +31 -3
- package/docs/api/foundation-comms.defaultcredentialmanager.createrefreshcredentials.md +33 -3
- package/docs/api/foundation-comms.defaultcredentialmanager.createssocredentials.md +33 -3
- package/docs/api/foundation-comms.defaultcredentialmanager.getcredentials.md +33 -3
- package/docs/api/foundation-comms.defaultcredentialmanager.getcredentialsfromcontainer.md +33 -3
- package/docs/api/foundation-comms.defaultcredentialmanager.md +348 -30
- package/docs/api/foundation-comms.defaultcredentialmanager.normaliselegacycredentialdata.md +49 -4
- package/docs/api/foundation-comms.defaultcredentialmanager.storecredentials.md +31 -3
- package/docs/api/foundation-comms.defaultcredentialmanager.storecredentialsincontainer.md +31 -3
- package/docs/api/foundation-comms.defaultcredentialmanager.storecredentialsincookie.md +31 -3
- package/docs/api/foundation-comms.defaultcredentialmanager.validatebasiccredentials.md +31 -3
- package/docs/api/foundation-comms.defaultcredentialmanager.validaterefreshcredentials.md +31 -3
- package/docs/api/foundation-comms.defaultcredentialmanager.validatessocredentials.md +31 -3
- package/docs/api/foundation-comms.defaultcredentialmanager.validateusercredentialdata.md +47 -4
- package/docs/api/foundation-comms.defaultdatasource._constructor_.md +87 -7
- package/docs/api/foundation-comms.defaultdatasource.fetchandapplymetadata.md +31 -3
- package/docs/api/foundation-comms.defaultdatasource.init.md +63 -5
- package/docs/api/foundation-comms.defaultdatasource.md +488 -32
- package/docs/api/foundation-comms.defaultdatasource.snapshot.md +33 -3
- package/docs/api/foundation-comms.defaultdatasource.snapshotfiltered.md +33 -3
- package/docs/api/foundation-comms.defaultdatasource.validresourcename.md +31 -3
- package/docs/api/foundation-comms.defaultentitydatasource._initialized.md +15 -0
- package/docs/api/foundation-comms.defaultentitydatasource.cache.md +19 -0
- package/docs/api/foundation-comms.defaultentitydatasource.disconnect.md +19 -0
- package/docs/api/foundation-comms.defaultentitydatasource.entitycache.md +14 -0
- package/docs/api/foundation-comms.defaultentitydatasource.entitymap.md +14 -0
- package/docs/api/foundation-comms.defaultentitydatasource.initialize.md +19 -0
- package/docs/api/foundation-comms.defaultentitydatasource.initialized.md +16 -0
- package/docs/api/foundation-comms.defaultentitydatasource.isempty.md +19 -0
- package/docs/api/foundation-comms.defaultentitydatasource.mapper.md +14 -0
- package/docs/api/foundation-comms.defaultentitydatasource.md +312 -0
- package/docs/api/foundation-comms.defaultentitydatasource.rowid.md +14 -0
- package/docs/api/foundation-comms.defaultentitydatasource.sourceref.md +14 -0
- package/docs/api/foundation-comms.defaultentitydatasource.subscription.md +14 -0
- package/docs/api/foundation-comms.defaultentitydatasource.subscriptionloggedoff.md +14 -0
- package/docs/api/foundation-comms.defaultfoundationanalytics._constructor_.md +31 -3
- package/docs/api/foundation-comms.defaultfoundationanalytics.md +74 -7
- package/docs/api/foundation-comms.defaultfoundationanalytics.trackevent.md +45 -4
- package/docs/api/foundation-comms.defaultfoundationanalytics.trackevent_1.md +45 -4
- package/docs/api/foundation-comms.defaultgenesisresources._constructor_.md +45 -4
- package/docs/api/foundation-comms.defaultgenesisresources.getresourcetypefor.md +33 -3
- package/docs/api/foundation-comms.defaultgenesisresources.isvalidresource.md +33 -3
- package/docs/api/foundation-comms.defaultgenesisresources.md +230 -17
- package/docs/api/foundation-comms.defaulthttp._constructor_.md +31 -3
- package/docs/api/foundation-comms.defaulthttp.get.md +45 -4
- package/docs/api/foundation-comms.defaulthttp.md +72 -7
- package/docs/api/foundation-comms.defaulthttp.post.md +45 -4
- package/docs/api/foundation-comms.defaulthttpconnect._constructor_.md +101 -8
- package/docs/api/foundation-comms.defaulthttpconnect.commitevent.md +47 -4
- package/docs/api/foundation-comms.defaulthttpconnect.connect.md +31 -3
- package/docs/api/foundation-comms.defaulthttpconnect.datalogoff.md +31 -3
- package/docs/api/foundation-comms.defaulthttpconnect.getavailableresources.md +33 -3
- package/docs/api/foundation-comms.defaulthttpconnect.getjsonschema.md +31 -3
- package/docs/api/foundation-comms.defaulthttpconnect.getmetadata.md +47 -4
- package/docs/api/foundation-comms.defaulthttpconnect.getmorecolumns.md +31 -3
- package/docs/api/foundation-comms.defaulthttpconnect.getmorerows.md +31 -3
- package/docs/api/foundation-comms.defaulthttpconnect.md +376 -30
- package/docs/api/foundation-comms.defaulthttpconnect.request.md +47 -4
- package/docs/api/foundation-comms.defaulthttpconnect.send.md +47 -4
- package/docs/api/foundation-comms.defaulthttpconnect.setvalidsession.md +31 -3
- package/docs/api/foundation-comms.defaulthttpconnect.snapshot.md +47 -4
- package/docs/api/foundation-comms.defaulthttpconnect.stream.md +75 -6
- package/docs/api/foundation-comms.defaulthttpconnect.streamstate.md +95 -7
- package/docs/api/foundation-comms.defaulthttpconnect.streamwithoutautoteardown.md +75 -6
- package/docs/api/foundation-comms.defaultkvstorage._constructor_.md +81 -0
- package/docs/api/foundation-comms.defaultkvstorage.md +98 -0
- package/docs/api/foundation-comms.defaultkvstorage.user.md +14 -0
- package/docs/api/foundation-comms.defaultkvstorageconfig.md +16 -0
- package/docs/api/foundation-comms.defaultmessagebuilder._constructor_.md +45 -4
- package/docs/api/foundation-comms.defaultmessagebuilder.createchangepasswordmessage.md +59 -5
- package/docs/api/foundation-comms.defaultmessagebuilder.createcommitmessage.md +47 -4
- package/docs/api/foundation-comms.defaultmessagebuilder.createdatalogoffmessage.md +31 -3
- package/docs/api/foundation-comms.defaultmessagebuilder.createdatalogonmessage.md +47 -4
- package/docs/api/foundation-comms.defaultmessagebuilder.createforgotpasswordmessage.md +61 -5
- package/docs/api/foundation-comms.defaultmessagebuilder.createforgotpasswordtokenmessage.md +75 -6
- package/docs/api/foundation-comms.defaultmessagebuilder.createheartbeatpingmessage.md +33 -3
- package/docs/api/foundation-comms.defaultmessagebuilder.createhttpheadersfrommessage.md +47 -4
- package/docs/api/foundation-comms.defaultmessagebuilder.createloginmessage.md +31 -3
- package/docs/api/foundation-comms.defaultmessagebuilder.createlogoutmessage.md +33 -3
- package/docs/api/foundation-comms.defaultmessagebuilder.createmetarequestmessage.md +47 -4
- package/docs/api/foundation-comms.defaultmessagebuilder.createmorecolumnsmessage.md +31 -3
- package/docs/api/foundation-comms.defaultmessagebuilder.createmorerowsmessage.md +47 -4
- package/docs/api/foundation-comms.defaultmessagebuilder.createrequestmessage.md +47 -4
- package/docs/api/foundation-comms.defaultmessagebuilder.createresourcesmessage.md +33 -3
- package/docs/api/foundation-comms.defaultmessagebuilder.md +240 -21
- package/docs/api/foundation-comms.defaultmetacache.getjsonschemafor.md +31 -3
- package/docs/api/foundation-comms.defaultmetacache.getmetadatafor.md +31 -3
- package/docs/api/foundation-comms.defaultmetacache.hasjsonschemafor.md +31 -3
- package/docs/api/foundation-comms.defaultmetacache.hasmetadatafor.md +31 -3
- package/docs/api/foundation-comms.defaultmetacache.md +145 -12
- package/docs/api/foundation-comms.defaultmetacache.setjsonschemafor.md +45 -4
- package/docs/api/foundation-comms.defaultmetacache.setmetadatafor.md +45 -4
- package/docs/api/foundation-comms.defaultnetworkmonitor.addresource.md +49 -4
- package/docs/api/foundation-comms.defaultnetworkmonitor.md +155 -13
- package/docs/api/foundation-comms.defaultnetworkmonitor.removeresource.md +33 -3
- package/docs/api/foundation-comms.defaultsession.getitem.md +45 -4
- package/docs/api/foundation-comms.defaultsession.getlocalstorageitem.md +31 -3
- package/docs/api/foundation-comms.defaultsession.getsessionstorageitem.md +31 -3
- package/docs/api/foundation-comms.defaultsession.md +212 -18
- package/docs/api/foundation-comms.defaultsession.removeitem.md +45 -4
- package/docs/api/foundation-comms.defaultsession.removelocalstorageitem.md +31 -3
- package/docs/api/foundation-comms.defaultsession.removesessionstorageitem.md +31 -3
- package/docs/api/foundation-comms.defaultsession.setauthresult.md +31 -3
- package/docs/api/foundation-comms.defaultsession.setitem.md +59 -5
- package/docs/api/foundation-comms.defaultsession.setlocalstorageitem.md +45 -4
- package/docs/api/foundation-comms.defaultsession.setsessionstorageitem.md +45 -4
- package/docs/api/foundation-comms.defaultsession.setstoragekeyprefix.md +31 -3
- package/docs/api/foundation-comms.defaultsocket._constructor_.md +115 -9
- package/docs/api/foundation-comms.defaultsocket.connect.md +65 -5
- package/docs/api/foundation-comms.defaultsocket.md +373 -25
- package/docs/api/foundation-comms.defaultsocket.send.md +47 -4
- package/docs/api/foundation-comms.defaultsocket.sendforstream.md +75 -6
- package/docs/api/foundation-comms.defaultsocket.sendforstreamwithoutteardown.md +59 -5
- package/docs/api/foundation-comms.defaultsocketstatus.md +334 -22
- package/docs/api/foundation-comms.defaultsocketstatus.onclose.md +31 -3
- package/docs/api/foundation-comms.entitydatasource.cache.md +19 -0
- package/docs/api/foundation-comms.entitydatasource.disconnect.md +22 -0
- package/docs/api/foundation-comms.entitydatasource.initialize.md +57 -0
- package/docs/api/foundation-comms.entitydatasource.isempty.md +19 -0
- package/docs/api/foundation-comms.entitydatasource.md +171 -0
- package/docs/api/foundation-comms.entitydatasourceinit.fetchmeta.md +14 -0
- package/docs/api/foundation-comms.entitydatasourceinit.mapper.md +14 -0
- package/docs/api/foundation-comms.entitydatasourceinit.md +99 -0
- package/docs/api/foundation-comms.entitydatasourceinit.options.md +14 -0
- package/docs/api/foundation-comms.eventmessagetype.md +213 -16
- package/docs/api/foundation-comms.extractfielddefinitions.md +44 -1
- package/docs/api/foundation-comms.fieldtypeenum.md +129 -10
- package/docs/api/foundation-comms.foundationanalytics.md +45 -5
- package/docs/api/foundation-comms.foundationanalytics.trackevent.md +49 -4
- package/docs/api/foundation-comms.foundationanalytics.trackevent_1.md +49 -4
- package/docs/api/foundation-comms.foundationanalytics.trackevent_2.md +49 -4
- package/docs/api/foundation-comms.foundationanalyticsevent.controlclicked.md +39 -3
- package/docs/api/foundation-comms.foundationanalyticsevent.md +34 -4
- package/docs/api/foundation-comms.foundationanalyticsevent.routechanged.md +58 -4
- package/docs/api/foundation-comms.foundationanalyticseventtype.md +45 -4
- package/docs/api/foundation-comms.genesisresources.md +98 -6
- package/docs/api/foundation-comms.genesisresourcesconfig.md +60 -4
- package/docs/api/foundation-comms.genesisresourcesmock.getresourcetypefor.md +33 -3
- package/docs/api/foundation-comms.genesisresourcesmock.isvalidresource.md +33 -3
- package/docs/api/foundation-comms.genesisresourcesmock.md +142 -11
- package/docs/api/foundation-comms.getkvstorage.md +1 -1
- package/docs/api/foundation-comms.http.get.md +45 -4
- package/docs/api/foundation-comms.http.md +30 -4
- package/docs/api/foundation-comms.http.post.md +45 -4
- package/docs/api/foundation-comms.httprequestinit.md +41 -3
- package/docs/api/foundation-comms.jsonschemacache.getjsonschemafor.md +31 -3
- package/docs/api/foundation-comms.jsonschemacache.hasjsonschemafor.md +31 -3
- package/docs/api/foundation-comms.jsonschemacache.md +78 -8
- package/docs/api/foundation-comms.jsonschemacache.setjsonschemafor.md +45 -4
- package/docs/api/foundation-comms.keyvalue.base64.md +16 -0
- package/docs/api/foundation-comms.keyvalue.expiration.md +16 -0
- package/docs/api/foundation-comms.keyvalue.key.md +16 -0
- package/docs/api/foundation-comms.keyvalue.md +137 -0
- package/docs/api/foundation-comms.keyvalue.metadata.md +18 -0
- package/docs/api/foundation-comms.keyvalue.value.md +16 -0
- package/docs/api/foundation-comms.keyvaluetransfer.deserialize.md +53 -0
- package/docs/api/foundation-comms.keyvaluetransfer.kv.md +14 -0
- package/docs/api/foundation-comms.keyvaluetransfer.md +98 -0
- package/docs/api/foundation-comms.keyvaluetransfer.serialize.md +53 -0
- package/docs/api/foundation-comms.kveventfailureresponse.md +21 -0
- package/docs/api/foundation-comms.kveventmessagetype.md +69 -0
- package/docs/api/foundation-comms.kvmessagetype.md +69 -0
- package/docs/api/foundation-comms.kvstorage.delete.md +53 -0
- package/docs/api/foundation-comms.kvstorage.get.md +18 -0
- package/docs/api/foundation-comms.kvstorage.get_1.md +53 -0
- package/docs/api/foundation-comms.kvstorage.list.md +18 -0
- package/docs/api/foundation-comms.kvstorage.md +91 -0
- package/docs/api/foundation-comms.kvstorage.put.md +53 -0
- package/docs/api/foundation-comms.kvstorageconfig.account.md +16 -0
- package/docs/api/foundation-comms.kvstorageconfig.authemail.md +21 -0
- package/docs/api/foundation-comms.kvstorageconfig.authkey.md +16 -0
- package/docs/api/foundation-comms.kvstorageconfig.md +118 -0
- package/docs/api/foundation-comms.kvstorageconfig.namespace.md +16 -0
- package/docs/api/foundation-comms.kvvalue.md +16 -0
- package/docs/api/foundation-comms.logoutresult.md +60 -4
- package/docs/api/foundation-comms.md +2081 -189
- package/docs/api/foundation-comms.messagebuilder.createchangepasswordmessage.md +65 -5
- package/docs/api/foundation-comms.messagebuilder.createcommitmessage.md +49 -4
- package/docs/api/foundation-comms.messagebuilder.createdatalogoffmessage.md +33 -3
- package/docs/api/foundation-comms.messagebuilder.createdatalogonmessage.md +49 -4
- package/docs/api/foundation-comms.messagebuilder.createforgotpasswordmessage.md +65 -5
- package/docs/api/foundation-comms.messagebuilder.createforgotpasswordtokenmessage.md +81 -6
- package/docs/api/foundation-comms.messagebuilder.createheartbeatpingmessage.md +33 -3
- package/docs/api/foundation-comms.messagebuilder.createhttpheadersfrommessage.md +49 -4
- package/docs/api/foundation-comms.messagebuilder.createloginmessage.md +33 -3
- package/docs/api/foundation-comms.messagebuilder.createlogoutmessage.md +33 -3
- package/docs/api/foundation-comms.messagebuilder.createmetarequestmessage.md +49 -4
- package/docs/api/foundation-comms.messagebuilder.createmorecolumnsmessage.md +33 -3
- package/docs/api/foundation-comms.messagebuilder.createmorerowsmessage.md +49 -4
- package/docs/api/foundation-comms.messagebuilder.createrequestmessage.md +49 -4
- package/docs/api/foundation-comms.messagebuilder.createresourcesmessage.md +33 -3
- package/docs/api/foundation-comms.messagebuilder.md +186 -18
- package/docs/api/foundation-comms.messagecode.md +45 -4
- package/docs/api/foundation-comms.messagedetails.md +188 -18
- package/docs/api/foundation-comms.messagehaserrorcode.md +58 -1
- package/docs/api/foundation-comms.messageorthrow.md +44 -1
- package/docs/api/foundation-comms.messagetype.md +213 -16
- package/docs/api/foundation-comms.metadatacache.getmetadatafor.md +33 -3
- package/docs/api/foundation-comms.metadatacache.hasmetadatafor.md +33 -3
- package/docs/api/foundation-comms.metadatacache.md +86 -8
- package/docs/api/foundation-comms.metadatacache.setmetadatafor.md +49 -4
- package/docs/api/foundation-comms.monitoredresourcechecksresult.md +94 -6
- package/docs/api/foundation-comms.networkmonitor.addresource.md +49 -4
- package/docs/api/foundation-comms.networkmonitor.md +96 -10
- package/docs/api/foundation-comms.networkmonitor.removeresource.md +33 -3
- package/docs/api/foundation-comms.networkmonitor.runallchecks.md +49 -4
- package/docs/api/foundation-comms.networkmonitorconfig.md +231 -13
- package/docs/api/foundation-comms.normalisecriteria.md +49 -4
- package/docs/api/foundation-comms.resourcetype.md +59 -5
- package/docs/api/foundation-comms.retryinterval.md +60 -1
- package/docs/api/foundation-comms.serializedsocketstatus.md +217 -13
- package/docs/api/foundation-comms.serializer.deserialize.md +33 -3
- package/docs/api/foundation-comms.serializer.deserialize_1.md +33 -3
- package/docs/api/foundation-comms.serializer.deserialize_2.md +33 -3
- package/docs/api/foundation-comms.serializer.md +56 -6
- package/docs/api/foundation-comms.serializer.serialize.md +33 -3
- package/docs/api/foundation-comms.session.getitem.md +49 -4
- package/docs/api/foundation-comms.session.getlocalstorageitem.md +33 -3
- package/docs/api/foundation-comms.session.getsessionstorageitem.md +33 -3
- package/docs/api/foundation-comms.session.md +196 -18
- package/docs/api/foundation-comms.session.removeitem.md +49 -4
- package/docs/api/foundation-comms.session.removelocalstorageitem.md +33 -3
- package/docs/api/foundation-comms.session.removesessionstorageitem.md +33 -3
- package/docs/api/foundation-comms.session.setauthresult.md +33 -3
- package/docs/api/foundation-comms.session.setitem.md +65 -5
- package/docs/api/foundation-comms.session.setlocalstorageitem.md +49 -4
- package/docs/api/foundation-comms.session.setsessionstorageitem.md +49 -4
- package/docs/api/foundation-comms.session.setstoragekeyprefix.md +33 -3
- package/docs/api/foundation-comms.socket.connect.md +63 -5
- package/docs/api/foundation-comms.socket.md +109 -10
- package/docs/api/foundation-comms.socket.send.md +47 -4
- package/docs/api/foundation-comms.socket.sendforstream.md +75 -6
- package/docs/api/foundation-comms.socket.sendforstreamwithoutteardown.md +91 -0
- package/docs/api/foundation-comms.socketmessagehandler._constructor_.md +73 -6
- package/docs/api/foundation-comms.socketmessagehandler.md +137 -9
- package/docs/api/foundation-comms.socketobservable._constructor_.md +31 -3
- package/docs/api/foundation-comms.socketobservable.md +31 -3
- package/docs/api/foundation-comms.socketreconnectstrategy.md +45 -4
- package/docs/api/foundation-comms.socketstatus.md +69 -7
- package/docs/api/foundation-comms.socketstatus.onclose.md +31 -3
- package/docs/api/foundation-comms.socketsubject.md +31 -3
- package/docs/api/foundation-comms.tofieldmetadata.md +44 -1
- package/docs/api/foundation-comms.until.md +49 -4
- package/docs/api/index.md +21 -3
- package/docs/api-report.md.api.md +2909 -0
- package/package.json +14 -14
|
@@ -18,17 +18,103 @@ UIs can listen for 'system-health-changed' events and display visual overlays to
|
|
|
18
18
|
|
|
19
19
|
## Properties
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
<table><thead><tr><th>
|
|
22
|
+
|
|
23
|
+
Property
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
</th><th>
|
|
27
|
+
|
|
28
|
+
Modifiers
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
</th><th>
|
|
32
|
+
|
|
33
|
+
Type
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
</th><th>
|
|
37
|
+
|
|
38
|
+
Description
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
</th></tr></thead>
|
|
42
|
+
<tbody><tr><td>
|
|
43
|
+
|
|
44
|
+
[status](./foundation-comms.networkmonitor.status.md)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
</td><td>
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
</td><td>
|
|
51
|
+
|
|
52
|
+
[SystemHealthStatus](./foundation-comms.systemhealthstatus.md)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
</td><td>
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
</td></tr>
|
|
59
|
+
</tbody></table>
|
|
24
60
|
|
|
25
61
|
## Methods
|
|
26
62
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
63
|
+
<table><thead><tr><th>
|
|
64
|
+
|
|
65
|
+
Method
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
</th><th>
|
|
69
|
+
|
|
70
|
+
Description
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
</th></tr></thead>
|
|
74
|
+
<tbody><tr><td>
|
|
75
|
+
|
|
76
|
+
[addResource(resource, metadata)](./foundation-comms.networkmonitor.addresource.md)
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
</td><td>
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
</td></tr>
|
|
83
|
+
<tr><td>
|
|
84
|
+
|
|
85
|
+
[create()](./foundation-comms.networkmonitor.create.md)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
</td><td>
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
</td></tr>
|
|
92
|
+
<tr><td>
|
|
93
|
+
|
|
94
|
+
[destroy()](./foundation-comms.networkmonitor.destroy.md)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
</td><td>
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
</td></tr>
|
|
101
|
+
<tr><td>
|
|
102
|
+
|
|
103
|
+
[removeResource(resource)](./foundation-comms.networkmonitor.removeresource.md)
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
</td><td>
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
</td></tr>
|
|
110
|
+
<tr><td>
|
|
111
|
+
|
|
112
|
+
[runAllChecks(source, force)](./foundation-comms.networkmonitor.runallchecks.md)
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
</td><td>
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
</td></tr>
|
|
119
|
+
</tbody></table>
|
|
34
120
|
|
|
@@ -12,9 +12,39 @@ removeResource(resource: MonitoredResource): void;
|
|
|
12
12
|
|
|
13
13
|
## Parameters
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
<table><thead><tr><th>
|
|
16
|
+
|
|
17
|
+
Parameter
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
</th><th>
|
|
21
|
+
|
|
22
|
+
Type
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
</th><th>
|
|
26
|
+
|
|
27
|
+
Description
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
</th></tr></thead>
|
|
31
|
+
<tbody><tr><td>
|
|
32
|
+
|
|
33
|
+
resource
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
</td><td>
|
|
37
|
+
|
|
38
|
+
[MonitoredResource](./foundation-comms.monitoredresource.md)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
</td><td>
|
|
42
|
+
|
|
43
|
+
The resource reference.
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
</td></tr>
|
|
47
|
+
</tbody></table>
|
|
18
48
|
|
|
19
49
|
**Returns:**
|
|
20
50
|
|
|
@@ -12,10 +12,55 @@ runAllChecks(source?: unknown, force?: boolean): Promise<void>;
|
|
|
12
12
|
|
|
13
13
|
## Parameters
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
<table><thead><tr><th>
|
|
16
|
+
|
|
17
|
+
Parameter
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
</th><th>
|
|
21
|
+
|
|
22
|
+
Type
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
</th><th>
|
|
26
|
+
|
|
27
|
+
Description
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
</th></tr></thead>
|
|
31
|
+
<tbody><tr><td>
|
|
32
|
+
|
|
33
|
+
source
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
</td><td>
|
|
37
|
+
|
|
38
|
+
unknown
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
</td><td>
|
|
42
|
+
|
|
43
|
+
_(Optional)_ The source of the call, which may have been an event or scheduled interval.
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
</td></tr>
|
|
47
|
+
<tr><td>
|
|
48
|
+
|
|
49
|
+
force
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
</td><td>
|
|
53
|
+
|
|
54
|
+
boolean
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
</td><td>
|
|
58
|
+
|
|
59
|
+
_(Optional)_ A flag to bypass abort if already in progress logic.
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
</td></tr>
|
|
63
|
+
</tbody></table>
|
|
19
64
|
|
|
20
65
|
**Returns:**
|
|
21
66
|
|
|
@@ -14,17 +14,235 @@ export interface NetworkMonitorConfig
|
|
|
14
14
|
|
|
15
15
|
## Properties
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
17
|
+
<table><thead><tr><th>
|
|
18
|
+
|
|
19
|
+
Property
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
</th><th>
|
|
23
|
+
|
|
24
|
+
Modifiers
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
</th><th>
|
|
28
|
+
|
|
29
|
+
Type
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
</th><th>
|
|
33
|
+
|
|
34
|
+
Description
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
</th></tr></thead>
|
|
38
|
+
<tbody><tr><td>
|
|
39
|
+
|
|
40
|
+
[checkInterval?](./foundation-comms.networkmonitorconfig.checkinterval.md)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
</td><td>
|
|
47
|
+
|
|
48
|
+
number
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
</td><td>
|
|
52
|
+
|
|
53
|
+
_(Optional)_ Periodic check internal in ms
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
</td></tr>
|
|
57
|
+
<tr><td>
|
|
58
|
+
|
|
59
|
+
[checkTimeout?](./foundation-comms.networkmonitorconfig.checktimeout.md)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
</td><td>
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
</td><td>
|
|
66
|
+
|
|
67
|
+
number
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
</td><td>
|
|
71
|
+
|
|
72
|
+
_(Optional)_ Check timeout in ms
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
</td></tr>
|
|
76
|
+
<tr><td>
|
|
77
|
+
|
|
78
|
+
[documentEvents?](./foundation-comms.networkmonitorconfig.documentevents.md)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
</td><td>
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
</td><td>
|
|
85
|
+
|
|
86
|
+
(keyof DocumentEventMap)\[\]
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
</td><td>
|
|
90
|
+
|
|
91
|
+
_(Optional)_ Document events that invoke checks
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
</td></tr>
|
|
95
|
+
<tr><td>
|
|
96
|
+
|
|
97
|
+
[eventEmitter?](./foundation-comms.networkmonitorconfig.eventemitter.md)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
</td><td>
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
</td><td>
|
|
104
|
+
|
|
105
|
+
HTMLElement
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
</td><td>
|
|
109
|
+
|
|
110
|
+
_(Optional)_ The element to emit events from
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
</td></tr>
|
|
114
|
+
<tr><td>
|
|
115
|
+
|
|
116
|
+
[genesisConnectEvents?](./foundation-comms.networkmonitorconfig.genesisconnectevents.md)
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
</td><td>
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
</td><td>
|
|
123
|
+
|
|
124
|
+
[GenesisConnectEvents](./foundation-comms.genesisconnectevents.md)<!-- -->\[\]
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
</td><td>
|
|
128
|
+
|
|
129
|
+
_(Optional)_ Genesis connect events that invoke checks
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
</td></tr>
|
|
133
|
+
<tr><td>
|
|
134
|
+
|
|
135
|
+
[ignoredGenesisResources?](./foundation-comms.networkmonitorconfig.ignoredgenesisresources.md)
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
</td><td>
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
</td><td>
|
|
142
|
+
|
|
143
|
+
string\[\]
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
</td><td>
|
|
147
|
+
|
|
148
|
+
_(Optional)_ Ignored Genesis resources that will NOT invoke checks
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
</td></tr>
|
|
152
|
+
<tr><td>
|
|
153
|
+
|
|
154
|
+
[logLevel?](./foundation-comms.networkmonitorconfig.loglevel.md)
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
</td><td>
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
</td><td>
|
|
161
|
+
|
|
162
|
+
LogLevel
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
</td><td>
|
|
166
|
+
|
|
167
|
+
_(Optional)_ Default log level
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
</td></tr>
|
|
171
|
+
<tr><td>
|
|
172
|
+
|
|
173
|
+
[resourceChecks?](./foundation-comms.networkmonitorconfig.resourcechecks.md)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
</td><td>
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
</td><td>
|
|
180
|
+
|
|
181
|
+
[MonitoredResourceChecks](./foundation-comms.monitoredresourcechecks.md)
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
</td><td>
|
|
185
|
+
|
|
186
|
+
_(Optional)_ Default resource checks function
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
</td></tr>
|
|
190
|
+
<tr><td>
|
|
191
|
+
|
|
192
|
+
[resourceDataLogon?](./foundation-comms.networkmonitorconfig.resourcedatalogon.md)
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
</td><td>
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
</td><td>
|
|
199
|
+
|
|
200
|
+
[MonitoredResourceDataLogon](./foundation-comms.monitoredresourcedatalogon.md)
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
</td><td>
|
|
204
|
+
|
|
205
|
+
_(Optional)_ Default resource data logon function
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
</td></tr>
|
|
209
|
+
<tr><td>
|
|
210
|
+
|
|
211
|
+
[startDelay?](./foundation-comms.networkmonitorconfig.startdelay.md)
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
</td><td>
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
</td><td>
|
|
218
|
+
|
|
219
|
+
number
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
</td><td>
|
|
223
|
+
|
|
224
|
+
_(Optional)_ Start delay in ms
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
</td></tr>
|
|
228
|
+
<tr><td>
|
|
229
|
+
|
|
230
|
+
[windowEvents?](./foundation-comms.networkmonitorconfig.windowevents.md)
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
</td><td>
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
</td><td>
|
|
237
|
+
|
|
238
|
+
(keyof WindowEventHandlersEventMap)\[\]
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
</td><td>
|
|
242
|
+
|
|
243
|
+
_(Optional)_ Window events that invoke checks
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
</td></tr>
|
|
247
|
+
</tbody></table>
|
|
30
248
|
|
|
@@ -14,10 +14,55 @@ export declare function normaliseCriteria(criteria: string, delimiter?: string):
|
|
|
14
14
|
|
|
15
15
|
## Parameters
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
<table><thead><tr><th>
|
|
18
|
+
|
|
19
|
+
Parameter
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
</th><th>
|
|
23
|
+
|
|
24
|
+
Type
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
</th><th>
|
|
28
|
+
|
|
29
|
+
Description
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
</th></tr></thead>
|
|
33
|
+
<tbody><tr><td>
|
|
34
|
+
|
|
35
|
+
criteria
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
string
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
Original concat criteria.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
</td></tr>
|
|
49
|
+
<tr><td>
|
|
50
|
+
|
|
51
|
+
delimiter
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
</td><td>
|
|
55
|
+
|
|
56
|
+
string
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
</td><td>
|
|
60
|
+
|
|
61
|
+
_(Optional)_ Criteria delimiter.
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
</td></tr>
|
|
65
|
+
</tbody></table>
|
|
21
66
|
|
|
22
67
|
**Returns:**
|
|
23
68
|
|
|
@@ -14,9 +14,63 @@ export declare enum ResourceType
|
|
|
14
14
|
|
|
15
15
|
## Enumeration Members
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
17
|
+
<table><thead><tr><th>
|
|
18
|
+
|
|
19
|
+
Member
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
</th><th>
|
|
23
|
+
|
|
24
|
+
Value
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
</th><th>
|
|
28
|
+
|
|
29
|
+
Description
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
</th></tr></thead>
|
|
33
|
+
<tbody><tr><td>
|
|
34
|
+
|
|
35
|
+
DATASERVER
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
`"DATASERVER"`
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
</td></tr>
|
|
47
|
+
<tr><td>
|
|
48
|
+
|
|
49
|
+
EVENT\_HANDLER
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
</td><td>
|
|
53
|
+
|
|
54
|
+
`"EVENT_HANDLER"`
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
</td><td>
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
</td></tr>
|
|
61
|
+
<tr><td>
|
|
62
|
+
|
|
63
|
+
REQUEST\_SERVER
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
</td><td>
|
|
67
|
+
|
|
68
|
+
`"REQUEST_SERVER"`
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
</td><td>
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
</td></tr>
|
|
75
|
+
</tbody></table>
|
|
22
76
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[Home](./index.md) > [@genesislcap/foundation-comms](./foundation-comms.md) > [retryInterval](./foundation-comms.retryinterval.md)
|
|
4
4
|
|
|
5
|
-
## retryInterval
|
|
5
|
+
## retryInterval() function
|
|
6
6
|
|
|
7
7
|
Generate reconnect interval based on scheduler
|
|
8
8
|
|
|
@@ -11,3 +11,62 @@ Generate reconnect interval based on scheduler
|
|
|
11
11
|
```typescript
|
|
12
12
|
retryInterval: (reconnectOptions: SocketReconnectOptions, scheduler: SocketReconnectScheduler) => Observable<number>
|
|
13
13
|
```
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
<table><thead><tr><th>
|
|
18
|
+
|
|
19
|
+
Parameter
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
</th><th>
|
|
23
|
+
|
|
24
|
+
Type
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
</th><th>
|
|
28
|
+
|
|
29
|
+
Description
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
</th></tr></thead>
|
|
33
|
+
<tbody><tr><td>
|
|
34
|
+
|
|
35
|
+
reconnectOptions
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
[SocketReconnectOptions](./foundation-comms.socketreconnectoptions.md)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
[SocketReconnectOptions](./foundation-comms.socketreconnectoptions.md) options
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
</td></tr>
|
|
49
|
+
<tr><td>
|
|
50
|
+
|
|
51
|
+
scheduler
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
</td><td>
|
|
55
|
+
|
|
56
|
+
[SocketReconnectScheduler](./foundation-comms.socketreconnectscheduler.md)
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
</td><td>
|
|
60
|
+
|
|
61
|
+
[SocketReconnectScheduler](./foundation-comms.socketreconnectscheduler.md) function
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
</td></tr>
|
|
65
|
+
</tbody></table>
|
|
66
|
+
|
|
67
|
+
**Returns:**
|
|
68
|
+
|
|
69
|
+
Observable<number>
|
|
70
|
+
|
|
71
|
+
Observable<number>
|
|
72
|
+
|