@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
|
@@ -54,6 +54,7 @@ export declare const DatasourceEventHandler: (Target: new () => HTMLElement & FA
|
|
|
54
54
|
accessKey: string;
|
|
55
55
|
readonly accessKeyLabel: string;
|
|
56
56
|
autocapitalize: string;
|
|
57
|
+
autocorrect: boolean;
|
|
57
58
|
dir: string;
|
|
58
59
|
draggable: boolean;
|
|
59
60
|
hidden: boolean;
|
|
@@ -62,74 +63,90 @@ export declare const DatasourceEventHandler: (Target: new () => HTMLElement & FA
|
|
|
62
63
|
lang: string;
|
|
63
64
|
readonly offsetHeight: number;
|
|
64
65
|
readonly offsetLeft: number;
|
|
65
|
-
readonly offsetParent: Element;
|
|
66
|
+
readonly offsetParent: Element | null;
|
|
66
67
|
readonly offsetTop: number;
|
|
67
68
|
readonly offsetWidth: number;
|
|
68
69
|
outerText: string;
|
|
70
|
+
popover: string | null;
|
|
69
71
|
spellcheck: boolean;
|
|
70
72
|
title: string;
|
|
71
73
|
translate: boolean;
|
|
74
|
+
writingSuggestions: string;
|
|
72
75
|
attachInternals(): ElementInternals;
|
|
73
76
|
click(): void;
|
|
77
|
+
hidePopover(): void;
|
|
78
|
+
showPopover(): void;
|
|
79
|
+
togglePopover(options?: boolean): boolean;
|
|
74
80
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
75
81
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
76
|
-
removeEventListener<
|
|
82
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
77
83
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
78
84
|
readonly attributes: NamedNodeMap;
|
|
79
|
-
|
|
85
|
+
get classList(): DOMTokenList;
|
|
86
|
+
set classList(value: string);
|
|
80
87
|
className: string;
|
|
81
88
|
readonly clientHeight: number;
|
|
82
89
|
readonly clientLeft: number;
|
|
83
90
|
readonly clientTop: number;
|
|
84
91
|
readonly clientWidth: number;
|
|
92
|
+
readonly currentCSSZoom: number;
|
|
85
93
|
id: string;
|
|
94
|
+
innerHTML: string;
|
|
86
95
|
readonly localName: string;
|
|
87
|
-
readonly namespaceURI: string;
|
|
88
|
-
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
89
|
-
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
96
|
+
readonly namespaceURI: string | null;
|
|
97
|
+
onfullscreenchange: ((this: Element, ev: Event) => any) | null;
|
|
98
|
+
onfullscreenerror: ((this: Element, ev: Event) => any) | null;
|
|
90
99
|
outerHTML: string;
|
|
91
100
|
readonly ownerDocument: Document;
|
|
92
|
-
|
|
93
|
-
|
|
101
|
+
get part(): DOMTokenList;
|
|
102
|
+
set part(value: string);
|
|
103
|
+
readonly prefix: string | null;
|
|
94
104
|
readonly scrollHeight: number;
|
|
95
105
|
scrollLeft: number;
|
|
96
106
|
scrollTop: number;
|
|
97
107
|
readonly scrollWidth: number;
|
|
98
|
-
readonly shadowRoot: ShadowRoot;
|
|
108
|
+
readonly shadowRoot: ShadowRoot | null;
|
|
99
109
|
slot: string;
|
|
100
110
|
readonly tagName: string;
|
|
101
111
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
102
|
-
|
|
103
|
-
closest<
|
|
104
|
-
closest<
|
|
105
|
-
|
|
106
|
-
|
|
112
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
113
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
|
114
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
|
115
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
|
116
|
+
closest<E extends Element = Element>(selectors: string): E | null;
|
|
117
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
118
|
+
getAttribute(qualifiedName: string): string | null;
|
|
119
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
107
120
|
getAttributeNames(): string[];
|
|
108
|
-
getAttributeNode(qualifiedName: string): Attr;
|
|
109
|
-
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
121
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
|
122
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
|
110
123
|
getBoundingClientRect(): DOMRect;
|
|
111
124
|
getClientRects(): DOMRectList;
|
|
112
125
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
113
|
-
getElementsByTagName<
|
|
114
|
-
getElementsByTagName<
|
|
126
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
127
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
128
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
129
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
115
130
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
116
131
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
117
132
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
118
|
-
getElementsByTagNameNS(
|
|
133
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
134
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
135
|
+
getHTML(options?: GetHTMLOptions): string;
|
|
119
136
|
hasAttribute(qualifiedName: string): boolean;
|
|
120
|
-
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
137
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
|
121
138
|
hasAttributes(): boolean;
|
|
122
139
|
hasPointerCapture(pointerId: number): boolean;
|
|
123
|
-
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
124
|
-
insertAdjacentHTML(position: InsertPosition,
|
|
140
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
141
|
+
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
125
142
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
126
143
|
matches(selectors: string): boolean;
|
|
127
144
|
releasePointerCapture(pointerId: number): void;
|
|
128
145
|
removeAttribute(qualifiedName: string): void;
|
|
129
|
-
removeAttributeNS(namespace: string, localName: string): void;
|
|
146
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
130
147
|
removeAttributeNode(attr: Attr): Attr;
|
|
131
148
|
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
132
|
-
requestPointerLock(): void
|
|
149
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
|
133
150
|
scroll(options?: ScrollToOptions): void;
|
|
134
151
|
scroll(x: number, y: number): void;
|
|
135
152
|
scrollBy(options?: ScrollToOptions): void;
|
|
@@ -138,221 +155,245 @@ export declare const DatasourceEventHandler: (Target: new () => HTMLElement & FA
|
|
|
138
155
|
scrollTo(options?: ScrollToOptions): void;
|
|
139
156
|
scrollTo(x: number, y: number): void;
|
|
140
157
|
setAttribute(qualifiedName: string, value: string): void;
|
|
141
|
-
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
|
142
|
-
setAttributeNode(attr: Attr): Attr;
|
|
143
|
-
setAttributeNodeNS(attr: Attr): Attr;
|
|
158
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
159
|
+
setAttributeNode(attr: Attr): Attr | null;
|
|
160
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
161
|
+
setHTMLUnsafe(html: string): void;
|
|
144
162
|
setPointerCapture(pointerId: number): void;
|
|
145
163
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
146
164
|
webkitMatchesSelector(selectors: string): boolean;
|
|
165
|
+
textContent: string;
|
|
147
166
|
readonly baseURI: string;
|
|
148
167
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
149
|
-
readonly firstChild: ChildNode;
|
|
168
|
+
readonly firstChild: ChildNode | null;
|
|
150
169
|
readonly isConnected: boolean;
|
|
151
|
-
readonly lastChild: ChildNode;
|
|
152
|
-
readonly nextSibling: ChildNode;
|
|
170
|
+
readonly lastChild: ChildNode | null;
|
|
171
|
+
readonly nextSibling: ChildNode | null;
|
|
153
172
|
readonly nodeName: string;
|
|
154
173
|
readonly nodeType: number;
|
|
155
|
-
nodeValue: string;
|
|
156
|
-
readonly parentElement: HTMLElement;
|
|
157
|
-
readonly parentNode: ParentNode;
|
|
158
|
-
readonly previousSibling: ChildNode;
|
|
159
|
-
textContent: string;
|
|
174
|
+
nodeValue: string | null;
|
|
175
|
+
readonly parentElement: HTMLElement | null;
|
|
176
|
+
readonly parentNode: ParentNode | null;
|
|
177
|
+
readonly previousSibling: ChildNode | null;
|
|
160
178
|
appendChild<T extends Node>(node: T): T;
|
|
161
|
-
cloneNode(
|
|
179
|
+
cloneNode(subtree?: boolean): Node;
|
|
162
180
|
compareDocumentPosition(other: Node): number;
|
|
163
|
-
contains(other: Node): boolean;
|
|
181
|
+
contains(other: Node | null): boolean;
|
|
164
182
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
165
183
|
hasChildNodes(): boolean;
|
|
166
|
-
insertBefore<
|
|
167
|
-
isDefaultNamespace(namespace: string): boolean;
|
|
168
|
-
isEqualNode(otherNode: Node): boolean;
|
|
169
|
-
isSameNode(otherNode: Node): boolean;
|
|
170
|
-
lookupNamespaceURI(prefix: string): string;
|
|
171
|
-
lookupPrefix(namespace: string): string;
|
|
184
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
|
185
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
|
186
|
+
isEqualNode(otherNode: Node | null): boolean;
|
|
187
|
+
isSameNode(otherNode: Node | null): boolean;
|
|
188
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
|
189
|
+
lookupPrefix(namespace: string | null): string | null;
|
|
172
190
|
normalize(): void;
|
|
173
|
-
removeChild<
|
|
174
|
-
replaceChild<
|
|
175
|
-
readonly
|
|
176
|
-
readonly
|
|
177
|
-
readonly
|
|
178
|
-
readonly
|
|
179
|
-
readonly
|
|
180
|
-
readonly
|
|
181
|
-
readonly
|
|
182
|
-
readonly
|
|
183
|
-
readonly
|
|
184
|
-
readonly
|
|
185
|
-
readonly
|
|
186
|
-
readonly
|
|
187
|
-
readonly
|
|
188
|
-
readonly
|
|
189
|
-
readonly
|
|
190
|
-
readonly
|
|
191
|
-
readonly
|
|
192
|
-
readonly
|
|
191
|
+
removeChild<T extends Node>(child: T): T;
|
|
192
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
|
193
|
+
readonly ELEMENT_NODE: 1;
|
|
194
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
195
|
+
readonly TEXT_NODE: 3;
|
|
196
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
197
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
198
|
+
readonly ENTITY_NODE: 6;
|
|
199
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
200
|
+
readonly COMMENT_NODE: 8;
|
|
201
|
+
readonly DOCUMENT_NODE: 9;
|
|
202
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
203
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
204
|
+
readonly NOTATION_NODE: 12;
|
|
205
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
206
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
207
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
208
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
209
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
210
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
193
211
|
dispatchEvent(event: Event): boolean;
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
212
|
+
ariaActiveDescendantElement: Element | null;
|
|
213
|
+
ariaAtomic: string | null;
|
|
214
|
+
ariaAutoComplete: string | null;
|
|
215
|
+
ariaBrailleLabel: string | null;
|
|
216
|
+
ariaBrailleRoleDescription: string | null;
|
|
217
|
+
ariaBusy: string | null;
|
|
218
|
+
ariaChecked: string | null;
|
|
219
|
+
ariaColCount: string | null;
|
|
220
|
+
ariaColIndex: string | null;
|
|
221
|
+
ariaColIndexText: string | null;
|
|
222
|
+
ariaColSpan: string | null;
|
|
223
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
224
|
+
ariaCurrent: string | null;
|
|
225
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
226
|
+
ariaDescription: string | null;
|
|
227
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
228
|
+
ariaDisabled: string | null;
|
|
229
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
230
|
+
ariaExpanded: string | null;
|
|
231
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
232
|
+
ariaHasPopup: string | null;
|
|
233
|
+
ariaHidden: string | null;
|
|
234
|
+
ariaInvalid: string | null;
|
|
235
|
+
ariaKeyShortcuts: string | null;
|
|
236
|
+
ariaLabel: string | null;
|
|
237
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
238
|
+
ariaLevel: string | null;
|
|
239
|
+
ariaLive: string | null;
|
|
240
|
+
ariaModal: string | null;
|
|
241
|
+
ariaMultiLine: string | null;
|
|
242
|
+
ariaMultiSelectable: string | null;
|
|
243
|
+
ariaOrientation: string | null;
|
|
244
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
245
|
+
ariaPlaceholder: string | null;
|
|
246
|
+
ariaPosInSet: string | null;
|
|
247
|
+
ariaPressed: string | null;
|
|
248
|
+
ariaReadOnly: string | null;
|
|
249
|
+
ariaRelevant: string | null;
|
|
250
|
+
ariaRequired: string | null;
|
|
251
|
+
ariaRoleDescription: string | null;
|
|
252
|
+
ariaRowCount: string | null;
|
|
253
|
+
ariaRowIndex: string | null;
|
|
254
|
+
ariaRowIndexText: string | null;
|
|
255
|
+
ariaRowSpan: string | null;
|
|
256
|
+
ariaSelected: string | null;
|
|
257
|
+
ariaSetSize: string | null;
|
|
258
|
+
ariaSort: string | null;
|
|
259
|
+
ariaValueMax: string | null;
|
|
260
|
+
ariaValueMin: string | null;
|
|
261
|
+
ariaValueNow: string | null;
|
|
262
|
+
ariaValueText: string | null;
|
|
263
|
+
role: string | null;
|
|
264
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
235
265
|
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
236
|
-
after(...nodes: (
|
|
237
|
-
before(...nodes: (
|
|
266
|
+
after(...nodes: (Node | string)[]): void;
|
|
267
|
+
before(...nodes: (Node | string)[]): void;
|
|
238
268
|
remove(): void;
|
|
239
|
-
replaceWith(...nodes: (
|
|
240
|
-
|
|
241
|
-
readonly
|
|
242
|
-
readonly previousElementSibling: Element;
|
|
269
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
270
|
+
readonly nextElementSibling: Element | null;
|
|
271
|
+
readonly previousElementSibling: Element | null;
|
|
243
272
|
readonly childElementCount: number;
|
|
244
273
|
readonly children: HTMLCollection;
|
|
245
|
-
readonly firstElementChild: Element;
|
|
246
|
-
readonly lastElementChild: Element;
|
|
247
|
-
append(...nodes: (
|
|
248
|
-
prepend(...nodes: (
|
|
249
|
-
querySelector<
|
|
250
|
-
querySelector<
|
|
251
|
-
querySelector<
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
querySelectorAll<
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
readonly
|
|
274
|
+
readonly firstElementChild: Element | null;
|
|
275
|
+
readonly lastElementChild: Element | null;
|
|
276
|
+
append(...nodes: (Node | string)[]): void;
|
|
277
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
278
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
279
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
280
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
281
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
282
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
283
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
284
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
285
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
286
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
287
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
288
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
289
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
290
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
291
|
+
get style(): CSSStyleDeclaration;
|
|
292
|
+
set style(cssText: string);
|
|
261
293
|
contentEditable: string;
|
|
262
294
|
enterKeyHint: string;
|
|
263
295
|
inputMode: string;
|
|
264
296
|
readonly isContentEditable: boolean;
|
|
265
|
-
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
266
|
-
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
267
|
-
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
268
|
-
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
269
|
-
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
270
|
-
onauxclick: (this: GlobalEventHandlers, ev:
|
|
271
|
-
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
297
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
298
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
299
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
300
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
301
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
302
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
303
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
304
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
305
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
306
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
307
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
308
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
309
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
310
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
311
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
312
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
313
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
314
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
315
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
316
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
317
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
318
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
319
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
320
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
321
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
322
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
323
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
324
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
325
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
326
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
327
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
328
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
329
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
330
|
+
onerror: OnErrorEventHandler;
|
|
331
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
332
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
333
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
334
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
335
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
336
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
337
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
338
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
339
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
340
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
341
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
342
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
343
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
344
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
345
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
346
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
347
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
348
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
349
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
350
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
351
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
352
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
353
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
354
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
355
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
356
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
357
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
358
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
359
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
360
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
361
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
362
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
363
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
364
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
365
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
366
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
367
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
368
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
369
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
370
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
371
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
372
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
373
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
374
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
375
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
376
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
377
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
378
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
379
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
380
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
381
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
382
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
383
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
384
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
385
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
386
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
387
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
388
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
389
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
390
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
391
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
392
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
393
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
394
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
395
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
396
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
356
397
|
autofocus: boolean;
|
|
357
398
|
readonly dataset: DOMStringMap;
|
|
358
399
|
nonce?: string;
|
|
@@ -360,7 +401,7 @@ export declare const DatasourceEventHandler: (Target: new () => HTMLElement & FA
|
|
|
360
401
|
blur(): void;
|
|
361
402
|
focus(options?: FocusOptions): void;
|
|
362
403
|
readonly $fastController: import("@microsoft/fast-element").Controller;
|
|
363
|
-
$emit(type: string, detail?: any, options?: Omit<CustomEventInit
|
|
404
|
+
$emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
|
|
364
405
|
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
365
406
|
};
|
|
366
407
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"datasource.mixins.d.ts","sourceRoot":"","sources":["../../../src/datasource/datasource.mixins.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAE3D,OAAO,EACL,gBAAgB,EAEhB,4BAA4B,EAC7B,MAAM,oBAAoB,CAAC;AAE5B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,eAAO,MAAM,sBAAsB,
|
|
1
|
+
{"version":3,"file":"datasource.mixins.d.ts","sourceRoot":"","sources":["../../../src/datasource/datasource.mixins.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAE3D,OAAO,EACL,gBAAgB,EAEhB,4BAA4B,EAC7B,MAAM,oBAAoB,CAAC;AAE5B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,eAAO,MAAM,sBAAsB,GAAI,QAAQ,UAAU,WAAW,GAAG,WAAW;;0BAGhD,gBAAgB;QAC9C;;WAEG;sBACW,MAAM;QACpB;;;;;WAKG;mCACwB,CAAC,KAAK,EAAE,4BAA4B,KAAK,IAAI;QA4BxE;;;WAGG;sCAC2B,gBAAgB,QAAQ,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsBzE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entityDatasource.d.ts","sourceRoot":"","sources":["../../../src/datasource/entityDatasource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAG/D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAC5D,OAAO,KAAK,EACV,wBAAwB,EAExB,OAAO,EACR,MAAM,4BAA4B,CAAC;AAEpC,OAAO,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAC7D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAE5D;;GAEG;AAEH;;;;GAIG;AACH,MAAM,WAAW,oBAAoB,CAAC,IAAI,EAAE,OAAO;IACjD,OAAO,EAAE,IAAI,CAAC,iBAAiB,EAAE,YAAY,CAAC,CAAC;IAC/C,MAAM,EAAE,SAAS,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IACjC,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiEG;AACH,MAAM,WAAW,gBAAgB,CAAC,IAAI,EAAE,OAAO,CAAE,SAAQ,UAAU;IACjE;;;OAGG;IACH,UAAU,CAAC,IAAI,EAAE,oBAAoB,CAAC,IAAI,EAAE,OAAO,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACxE;;;;;;OAMG;IACH,QAAQ,CAAC,KAAK,EAAE,OAAO,EAAE,CAAC;IAC1B;;;OAGG;IACH,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;IAC1B;;;OAGG;IACH,UAAU,IAAI,IAAI,CAAC;CACpB;AAED;;;;GAIG;AACH,qBAAa,uBAAuB,CAAC,IAAI,EAAE,OAAO,CAChD,SAAQ,iBACR,YAAW,gBAAgB,CAAC,IAAI,EAAE,OAAO,CAAC;IAE1C,SAAS,CAAC,MAAM,EAAE,SAAS,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAC3C,SAAS,CAAC,SAAS,EAAE,MAAM,CAAC;IAC5B,SAAS,CAAC,YAAY,EAAE,kBAAkB,CAAC;IAC3C,SAAS,CAAC,qBAAqB,EAAE,OAAO,CAAC;IACzC,SAAS,CAAC,WAAW,EAAE,OAAO,EAAE,CAAM;IACtC,SAAS,CAAC,SAAS,EAAE,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,CAAa;IACtD,SAAS,CAAC,KAAK,EAAE,MAAM,CAAa;IAEpC,iDAAiD;IACjD,SAAS,CAAC,YAAY,EAAE,OAAO,CAAC;IAChC,IAAI,WAAW,IAAI,OAAO,CAEzB;IACD,IAAI,WAAW,CAAC,KAAK,EAAE,OAAO,EAE7B;IAED,gDAAgD;IAChD,UAAU,
|
|
1
|
+
{"version":3,"file":"entityDatasource.d.ts","sourceRoot":"","sources":["../../../src/datasource/entityDatasource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAG/D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAC5D,OAAO,KAAK,EACV,wBAAwB,EAExB,OAAO,EACR,MAAM,4BAA4B,CAAC;AAEpC,OAAO,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAC7D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAE5D;;GAEG;AAEH;;;;GAIG;AACH,MAAM,WAAW,oBAAoB,CAAC,IAAI,EAAE,OAAO;IACjD,OAAO,EAAE,IAAI,CAAC,iBAAiB,EAAE,YAAY,CAAC,CAAC;IAC/C,MAAM,EAAE,SAAS,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IACjC,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiEG;AACH,MAAM,WAAW,gBAAgB,CAAC,IAAI,EAAE,OAAO,CAAE,SAAQ,UAAU;IACjE;;;OAGG;IACH,UAAU,CAAC,IAAI,EAAE,oBAAoB,CAAC,IAAI,EAAE,OAAO,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACxE;;;;;;OAMG;IACH,QAAQ,CAAC,KAAK,EAAE,OAAO,EAAE,CAAC;IAC1B;;;OAGG;IACH,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;IAC1B;;;OAGG;IACH,UAAU,IAAI,IAAI,CAAC;CACpB;AAED;;;;GAIG;AACH,qBAAa,uBAAuB,CAAC,IAAI,EAAE,OAAO,CAChD,SAAQ,iBACR,YAAW,gBAAgB,CAAC,IAAI,EAAE,OAAO,CAAC;IAE1C,SAAS,CAAC,MAAM,EAAE,SAAS,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAC3C,SAAS,CAAC,SAAS,EAAE,MAAM,CAAC;IAC5B,SAAS,CAAC,YAAY,EAAE,kBAAkB,CAAC;IAC3C,SAAS,CAAC,qBAAqB,EAAE,OAAO,CAAC;IACzC,SAAS,CAAC,WAAW,EAAE,OAAO,EAAE,CAAM;IACtC,SAAS,CAAC,SAAS,EAAE,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,CAAa;IACtD,SAAS,CAAC,KAAK,EAAE,MAAM,CAAa;IAEpC,iDAAiD;IACjD,SAAS,CAAC,YAAY,EAAE,OAAO,CAAC;IAChC,IAAI,WAAW,IAAI,OAAO,CAEzB;IACD,IAAI,WAAW,CAAC,KAAK,EAAE,OAAO,EAE7B;IAED,gDAAgD;IAChD,UAAU,GAAU,MAAM,oBAAoB,CAAC,IAAI,EAAE,OAAO,CAAC,KAAG,OAAO,CAAC,OAAO,CAAC,CAqB9E;IAEF,2CAA2C;IAC3C,IAAI,KAAK,IAAI,OAAO,EAAE,CAKrB;IAED,6CAA6C;IAC7C,IAAI,OAAO,IAAI,OAAO,CAErB;IAED,gDAAgD;IAChD,UAAU,QAAO,IAAI,CAGnB;IAEF,SAAS,CAAC,WAAW,CAAC,MAAM,EAAE,wBAAwB,GAAG,IAAI;IAoB7D,SAAS,CAAC,oBAAoB,CAAC,OAAO,EAAE,OAAO,EAAE,EAAE,SAAS,GAAE,OAAe,GAAG,IAAI;CAarF;AAED;;;;;;;GAOG;AACH,eAAO,MAAM,gBAAgB,kFAE5B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"metadata.utils.d.ts","sourceRoot":"","sources":["../../../src/metadata/metadata.utils.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,aAAa,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAEhF;;;;;GAKG;AACH,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"metadata.utils.d.ts","sourceRoot":"","sources":["../../../src/metadata/metadata.utils.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,aAAa,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAEhF;;;;;GAKG;AACH,eAAO,MAAM,eAAe,GAAI,UAAU,cAAc,EAAE,KAAG,aAAa,EAmBzE,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,uBAAuB,GAAI,UAAU,QAAQ,KAAG,cAAc,EAY1E,CAAC"}
|