@openremote/rest 1.12.0-snapshot.20251204103102 → 1.12.0-snapshot.20251209124232
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/umd/index.bundle.js +1 -1
- package/dist/umd/index.bundle.js.map +1 -1
- package/dist/umd/index.js +1 -1
- package/dist/umd/index.js.map +1 -1
- package/lib/restclient.d.ts +477 -477
- package/lib/restclient.js +1 -1
- package/lib/restclient.js.map +1 -1
- package/package.json +1 -1
package/dist/umd/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["webpack://ORRest/webpack/runtime/compat_get_default_export","webpack://ORRest/webpack/runtime/define_property_getters","webpack://ORRest/webpack/runtime/has_own_property","webpack://ORRest/webpack/runtime/make_namespace_object","webpack://ORRest/./src/restclient.ts","webpack://ORRest/./src/index.ts"],"sourcesContent":["// getDefaultExport function for compatibility with non-ESM modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};\n","__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n }\n }\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","/* tslint:disable */\n/* eslint-disable */\n// Generated using typescript-generator version 3.2.1263 on 2025-12-04 10:43:14.\n\nimport * as Model from \"@openremote/model\";\n\nexport interface HttpClient<O> {\n\n request<R>(requestConfig: { method: string; url: string; queryParams?: any; data?: any; copyFn?: (data: R) => R; options?: O; }): RestResponse<R>;\n}\n\nexport class AlarmResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /alarm\n * Java method: org.openremote.model.alarm.AlarmResource.createAlarm\n */\n createAlarm(alarm: Model.Alarm, queryParams?: { assetIds?: string[]; }, options?: O): RestResponse<Model.SentAlarm> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`alarm`, queryParams: queryParams, data: alarm, options: options });\n }\n\n /**\n * HTTP GET /alarm\n * Java method: org.openremote.model.alarm.AlarmResource.getAlarms\n */\n getAlarms(queryParams?: { realm?: string; status?: Model.AlarmStatus; assetId?: string; assigneeId?: string; }, options?: O): RestResponse<Model.SentAlarm[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`alarm`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP DELETE /alarm\n * Java method: org.openremote.model.alarm.AlarmResource.removeAlarms\n */\n removeAlarms(ids: number[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`alarm`, data: ids, options: options });\n }\n\n /**\n * HTTP PUT /alarm/assets\n * Java method: org.openremote.model.alarm.AlarmResource.setAssetLinks\n */\n setAssetLinks(links: Model.AlarmAssetLink[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`alarm/assets`, data: links, options: options });\n }\n\n /**\n * HTTP GET /alarm/{alarmId}\n * Java method: org.openremote.model.alarm.AlarmResource.getAlarm\n */\n getAlarm(alarmId: number, options?: O): RestResponse<Model.SentAlarm> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`alarm/${alarmId}`, options: options });\n }\n\n /**\n * HTTP DELETE /alarm/{alarmId}\n * Java method: org.openremote.model.alarm.AlarmResource.removeAlarm\n */\n removeAlarm(alarmId: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`alarm/${alarmId}`, options: options });\n }\n\n /**\n * HTTP PUT /alarm/{alarmId}\n * Java method: org.openremote.model.alarm.AlarmResource.updateAlarm\n */\n updateAlarm(alarmId: number, alarm: Model.SentAlarm, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`alarm/${alarmId}`, data: alarm, options: options });\n }\n\n /**\n * HTTP GET /alarm/{alarmId}/assets\n * Java method: org.openremote.model.alarm.AlarmResource.getAssetLinks\n */\n getAssetLinks(alarmId: number, queryParams?: { realm?: string; }, options?: O): RestResponse<Model.AlarmAssetLink[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`alarm/${alarmId}/assets`, queryParams: queryParams, options: options });\n }\n}\n\nexport class AssetModelResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /model/assetDescriptors\n * Java method: org.openremote.model.asset.AssetModelResource.getAssetDescriptors\n */\n getAssetDescriptors(queryParams?: { parentId?: string; parentType?: string; }, options?: O): RestResponse<Model.AssetDescriptor[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`model/assetDescriptors`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /model/assetInfo/{assetType}\n * Java method: org.openremote.model.asset.AssetModelResource.getAssetInfo\n */\n getAssetInfo(assetType: string, queryParams?: { parentId?: string; }, options?: O): RestResponse<Model.AssetTypeInfo> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`model/assetInfo/${assetType}`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /model/assetInfos\n * Java method: org.openremote.model.asset.AssetModelResource.getAssetInfos\n */\n getAssetInfos(queryParams?: { parentId?: string; parentType?: string; }, options?: O): RestResponse<Model.AssetTypeInfo[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`model/assetInfos`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /model/getValueDescriptorSchema\n * Java method: org.openremote.model.asset.AssetModelResource.getValueDescriptorSchema\n */\n getValueDescriptorSchema(queryParams?: { name?: string; hash?: string; }, options?: O): RestResponse<any> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`model/getValueDescriptorSchema`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /model/metaItemDescriptors\n * Java method: org.openremote.model.asset.AssetModelResource.getMetaItemDescriptors\n */\n getMetaItemDescriptors(queryParams?: { parentId?: string; }, options?: O): RestResponse<{ [index: string]: Model.MetaItemDescriptor }> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`model/metaItemDescriptors`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /model/valueDescriptors\n * Java method: org.openremote.model.asset.AssetModelResource.getValueDescriptors\n */\n getValueDescriptors(queryParams?: { parentId?: string; }, options?: O): RestResponse<{ [index: string]: Model.ValueDescriptor }> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`model/valueDescriptors`, queryParams: queryParams, options: options });\n }\n}\n\nexport class AssetDatapointResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /asset/datapoint/export\n * Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport\n */\n getDatapointExport(queryParams?: { attributeRefs?: string; fromTimestamp?: number; toTimestamp?: number; }, options?: O): RestResponse<any> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`asset/datapoint/export`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /asset/datapoint/periods\n * Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod\n */\n getDatapointPeriod(queryParams?: { assetId?: string; attributeName?: string; }, options?: O): RestResponse<Model.DatapointPeriod> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`asset/datapoint/periods`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP POST /asset/datapoint/{assetId}/{attributeName}\n * Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints\n */\n getDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`asset/datapoint/${assetId}/${attributeName}`, data: query, options: options });\n }\n}\n\nexport class SyslogResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /syslog/config\n * Java method: org.openremote.model.syslog.SyslogResource.getConfig\n */\n getConfig(options?: O): RestResponse<Model.SyslogConfig> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`syslog/config`, options: options });\n }\n\n /**\n * HTTP PUT /syslog/config\n * Java method: org.openremote.model.syslog.SyslogResource.updateConfig\n */\n updateConfig(config: Model.SyslogConfig, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`syslog/config`, data: config, options: options });\n }\n\n /**\n * HTTP DELETE /syslog/event\n * Java method: org.openremote.model.syslog.SyslogResource.clearEvents\n */\n clearEvents(options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`syslog/event`, options: options });\n }\n\n /**\n * HTTP GET /syslog/event\n * Java method: org.openremote.model.syslog.SyslogResource.getEvents\n */\n getEvents(queryParams?: { level?: Model.SyslogLevel; per_page?: number; page?: number; from?: number; to?: number; category?: Model.SyslogCategory[]; subCategory?: string[]; }, options?: O): RestResponse<any> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`syslog/event`, queryParams: queryParams, options: options });\n }\n}\n\nexport class RealmResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /realm\n * Java method: org.openremote.model.security.RealmResource.create\n */\n create(realm: Model.Realm, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`realm`, data: realm, options: options });\n }\n\n /**\n * HTTP GET /realm\n * Java method: org.openremote.model.security.RealmResource.getAll\n */\n getAll(options?: O): RestResponse<Model.Realm[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`realm`, options: options });\n }\n\n /**\n * HTTP GET /realm/accessible\n * Java method: org.openremote.model.security.RealmResource.getAccessible\n */\n getAccessible(options?: O): RestResponse<Model.Realm[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`realm/accessible`, options: options });\n }\n\n /**\n * HTTP DELETE /realm/{name}\n * Java method: org.openremote.model.security.RealmResource.delete\n */\n delete(name: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`realm/${name}`, options: options });\n }\n\n /**\n * HTTP GET /realm/{name}\n * Java method: org.openremote.model.security.RealmResource.get\n */\n get(name: string, options?: O): RestResponse<Model.Realm> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`realm/${name}`, options: options });\n }\n\n /**\n * HTTP PUT /realm/{name}\n * Java method: org.openremote.model.security.RealmResource.update\n */\n update(name: string, realm: Model.Realm, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`realm/${name}`, data: realm, options: options });\n }\n}\n\nexport class ConfigurationResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /configuration/manager\n * Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfig\n */\n getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`configuration/manager`, options: options });\n }\n\n /**\n * HTTP PUT /configuration/manager\n * Java method: org.openremote.model.manager.ConfigurationResource.update\n */\n update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`configuration/manager`, data: managerConfiguration, options: options });\n }\n\n /**\n * HTTP POST /configuration/manager/file\n * Java method: org.openremote.model.manager.ConfigurationResource.fileUpload\n */\n fileUpload(fileInfo: Model.FileInfo, queryParams?: { path?: string; }, options?: O): RestResponse<string> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`configuration/manager/file`, queryParams: queryParams, data: fileInfo, options: options });\n }\n\n /**\n * HTTP GET /configuration/manager/image/{filename: .+}\n * Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfigImage\n */\n getManagerConfigImage(filename: string, options?: O): RestResponse<any> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`configuration/manager/image/${filename}`, options: options });\n }\n}\n\nexport class ConsoleResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /console/register\n * Java method: org.openremote.model.console.ConsoleResource.register\n */\n register(consoleRegistration: Model.ConsoleRegistration, options?: O): RestResponse<Model.ConsoleRegistration> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`console/register`, data: consoleRegistration, options: options });\n }\n}\n\nexport class FlowResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /flow\n * Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitions\n */\n getAllNodeDefinitions(options?: O): RestResponse<Model.Node[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`flow`, options: options });\n }\n\n /**\n * HTTP GET /flow/{name}\n * Java method: org.openremote.model.rules.flow.FlowResource.getNodeDefinition\n */\n getNodeDefinition(name: string, options?: O): RestResponse<Model.Node> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`flow/${name}`, options: options });\n }\n\n /**\n * HTTP GET /flow/{type}\n * Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitionsByType\n */\n getAllNodeDefinitionsByType(type: Model.NodeType, options?: O): RestResponse<Model.Node[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`flow/${type}`, options: options });\n }\n}\n\nexport class RulesResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /rules\n * Java method: org.openremote.model.rules.RulesResource.createGlobalRuleset\n */\n createGlobalRuleset(ruleset: Model.GlobalRuleset, options?: O): RestResponse<number> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`rules`, data: ruleset, options: options });\n }\n\n /**\n * HTTP GET /rules\n * Java method: org.openremote.model.rules.RulesResource.getGlobalRulesets\n */\n getGlobalRulesets(queryParams?: { language?: Model.RulesetLang[]; fullyPopulate?: boolean; }, options?: O): RestResponse<Model.GlobalRuleset[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP POST /rules/asset\n * Java method: org.openremote.model.rules.RulesResource.createAssetRuleset\n */\n createAssetRuleset(ruleset: Model.AssetRuleset, options?: O): RestResponse<number> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`rules/asset`, data: ruleset, options: options });\n }\n\n /**\n * HTTP GET /rules/asset/for/{assetId}\n * Java method: org.openremote.model.rules.RulesResource.getAssetRulesets\n */\n getAssetRulesets(assetId: string, queryParams?: { language?: Model.RulesetLang[]; fullyPopulate?: boolean; }, options?: O): RestResponse<Model.AssetRuleset[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/asset/for/${assetId}`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP DELETE /rules/asset/{id}\n * Java method: org.openremote.model.rules.RulesResource.deleteAssetRuleset\n */\n deleteAssetRuleset(id: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`rules/asset/${id}`, options: options });\n }\n\n /**\n * HTTP GET /rules/asset/{id}\n * Java method: org.openremote.model.rules.RulesResource.getAssetRuleset\n */\n getAssetRuleset(id: number, options?: O): RestResponse<Model.AssetRuleset> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/asset/${id}`, options: options });\n }\n\n /**\n * HTTP PUT /rules/asset/{id}\n * Java method: org.openremote.model.rules.RulesResource.updateAssetRuleset\n */\n updateAssetRuleset(id: number, ruleset: Model.AssetRuleset, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`rules/asset/${id}`, data: ruleset, options: options });\n }\n\n /**\n * HTTP GET /rules/geofences/{assetId}\n * Java method: org.openremote.model.rules.RulesResource.getAssetGeofences\n */\n getAssetGeofences(assetId: string, options?: O): RestResponse<Model.GeofenceDefinition[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/geofences/${assetId}`, options: options });\n }\n\n /**\n * HTTP GET /rules/info/asset/{assetId}\n * Java method: org.openremote.model.rules.RulesResource.getAssetEngineInfo\n */\n getAssetEngineInfo(assetId: string, options?: O): RestResponse<Model.RulesEngineInfo> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/info/asset/${assetId}`, options: options });\n }\n\n /**\n * HTTP GET /rules/info/global\n * Java method: org.openremote.model.rules.RulesResource.getGlobalEngineInfo\n */\n getGlobalEngineInfo(options?: O): RestResponse<Model.RulesEngineInfo> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/info/global`, options: options });\n }\n\n /**\n * HTTP GET /rules/info/realm/{realm}\n * Java method: org.openremote.model.rules.RulesResource.getRealmEngineInfo\n */\n getRealmEngineInfo(realm: string, options?: O): RestResponse<Model.RulesEngineInfo> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/info/realm/${realm}`, options: options });\n }\n\n /**\n * HTTP POST /rules/realm\n * Java method: org.openremote.model.rules.RulesResource.createRealmRuleset\n */\n createRealmRuleset(ruleset: Model.RealmRuleset, options?: O): RestResponse<number> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`rules/realm`, data: ruleset, options: options });\n }\n\n /**\n * HTTP GET /rules/realm/for/{realm}\n * Java method: org.openremote.model.rules.RulesResource.getRealmRulesets\n */\n getRealmRulesets(realm: string, queryParams?: { language?: Model.RulesetLang[]; fullyPopulate?: boolean; }, options?: O): RestResponse<Model.RealmRuleset[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/realm/for/${realm}`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP DELETE /rules/realm/{id}\n * Java method: org.openremote.model.rules.RulesResource.deleteRealmRuleset\n */\n deleteRealmRuleset(id: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`rules/realm/${id}`, options: options });\n }\n\n /**\n * HTTP GET /rules/realm/{id}\n * Java method: org.openremote.model.rules.RulesResource.getRealmRuleset\n */\n getRealmRuleset(id: number, options?: O): RestResponse<Model.RealmRuleset> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/realm/${id}`, options: options });\n }\n\n /**\n * HTTP PUT /rules/realm/{id}\n * Java method: org.openremote.model.rules.RulesResource.updateRealmRuleset\n */\n updateRealmRuleset(id: number, ruleset: Model.RealmRuleset, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`rules/realm/${id}`, data: ruleset, options: options });\n }\n\n /**\n * HTTP DELETE /rules/{id}\n * Java method: org.openremote.model.rules.RulesResource.deleteGlobalRuleset\n */\n deleteGlobalRuleset(id: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`rules/${id}`, options: options });\n }\n\n /**\n * HTTP GET /rules/{id}\n * Java method: org.openremote.model.rules.RulesResource.getGlobalRuleset\n */\n getGlobalRuleset(id: number, options?: O): RestResponse<Model.GlobalRuleset> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/${id}`, options: options });\n }\n\n /**\n * HTTP PUT /rules/{id}\n * Java method: org.openremote.model.rules.RulesResource.updateGlobalRuleset\n */\n updateGlobalRuleset(id: number, ruleset: Model.GlobalRuleset, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`rules/${id}`, data: ruleset, options: options });\n }\n}\n\nexport class MapResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /map\n * Java method: org.openremote.model.map.MapResource.getSettings\n */\n getSettings(options?: O): RestResponse<{ [id: string]: unknown }> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`map`, options: options });\n }\n\n /**\n * HTTP PUT /map\n * Java method: org.openremote.model.map.MapResource.saveSettings\n */\n saveSettings(mapConfig: Model.MapConfig, options?: O): RestResponse<{ [id: string]: unknown }> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`map`, data: mapConfig, options: options });\n }\n\n /**\n * HTTP DELETE /map/deleteMap\n * Java method: org.openremote.model.map.MapResource.deleteMap\n */\n deleteMap(options?: O): RestResponse<{ [id: string]: unknown }> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`map/deleteMap`, options: options });\n }\n\n /**\n * HTTP GET /map/getCustomMapInfo\n * Java method: org.openremote.model.map.MapResource.getCustomMapInfo\n */\n getCustomMapInfo(options?: O): RestResponse<{ [id: string]: unknown }> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`map/getCustomMapInfo`, options: options });\n }\n\n /**\n * HTTP GET /map/js\n * Java method: org.openremote.model.map.MapResource.getSettingsJs\n */\n getSettingsJs(options?: O): RestResponse<{ [id: string]: unknown }> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`map/js`, options: options });\n }\n\n /**\n * HTTP GET /map/tile/{zoom}/{column}/{row}\n * Java method: org.openremote.model.map.MapResource.getTile\n */\n getTile(zoom: number, column: number, row: number, options?: O): RestResponse<any> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`map/tile/${zoom}/${column}/${row}`, options: options });\n }\n\n /**\n * HTTP POST /map/upload\n * Java method: org.openremote.model.map.MapResource.uploadMap\n */\n uploadMap(queryParams?: { filename?: string; }, options?: O): RestResponse<{ [id: string]: unknown }> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`map/upload`, queryParams: queryParams, options: options });\n }\n}\n\nexport class AssetResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /asset\n * Java method: org.openremote.model.asset.AssetResource.create\n */\n create(asset: Model.Asset, options?: O): RestResponse<Model.Asset> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`asset`, data: asset, options: options });\n }\n\n /**\n * HTTP DELETE /asset\n * Java method: org.openremote.model.asset.AssetResource.delete\n */\n delete(queryParams?: { assetId?: string[]; }, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`asset`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP PUT /asset/attributes\n * Java method: org.openremote.model.asset.AssetResource.writeAttributeValues\n */\n writeAttributeValues(attributeStates: Model.AttributeState[], options?: O): RestResponse<Model.AttributeWriteResult[]> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`asset/attributes`, data: attributeStates, options: options });\n }\n\n /**\n * HTTP PUT /asset/attributes/timestamp\n * Java method: org.openremote.model.asset.AssetResource.writeAttributeEvents\n */\n writeAttributeEvents(attributeEvents: Model.AttributeEvent[], options?: O): RestResponse<Model.AttributeWriteResult[]> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`asset/attributes/timestamp`, data: attributeEvents, options: options });\n }\n\n /**\n * HTTP DELETE /asset/parent\n * Java method: org.openremote.model.asset.AssetResource.updateNoneParent\n */\n updateNoneParent(queryParams?: { assetIds?: string[]; }, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`asset/parent`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /asset/partial/{assetId}\n * Java method: org.openremote.model.asset.AssetResource.getPartial\n */\n getPartial(assetId: string, options?: O): RestResponse<Model.Asset> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`asset/partial/${assetId}`, options: options });\n }\n\n /**\n * HTTP POST /asset/query\n * Java method: org.openremote.model.asset.AssetResource.queryAssets\n */\n queryAssets(query: Model.AssetQuery, options?: O): RestResponse<Model.Asset[]> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`asset/query`, data: query, options: options });\n }\n\n /**\n * HTTP POST /asset/tree\n * Java method: org.openremote.model.asset.AssetResource.queryAssetTree\n */\n queryAssetTree(query: Model.AssetQuery, options?: O): RestResponse<Model.AssetTree> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`asset/tree`, data: query, options: options });\n }\n\n /**\n * HTTP GET /asset/user/current\n * Java method: org.openremote.model.asset.AssetResource.getCurrentUserAssets\n */\n getCurrentUserAssets(options?: O): RestResponse<Model.Asset[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`asset/user/current`, options: options });\n }\n\n /**\n * HTTP POST /asset/user/link\n * Java method: org.openremote.model.asset.AssetResource.createUserAssetLinks\n */\n createUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`asset/user/link`, data: userAssets, options: options });\n }\n\n /**\n * HTTP GET /asset/user/link\n * Java method: org.openremote.model.asset.AssetResource.getUserAssetLinks\n */\n getUserAssetLinks(queryParams?: { realm?: string; userId?: string; assetId?: string; }, options?: O): RestResponse<Model.UserAssetLink[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`asset/user/link`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP POST /asset/user/link/delete\n * Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLinks\n */\n deleteUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`asset/user/link/delete`, data: userAssets, options: options });\n }\n\n /**\n * HTTP DELETE /asset/user/link/{realm}/{userId}\n * Java method: org.openremote.model.asset.AssetResource.deleteAllUserAssetLinks\n */\n deleteAllUserAssetLinks(realm: string, userId: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`asset/user/link/${realm}/${userId}`, options: options });\n }\n\n /**\n * HTTP DELETE /asset/user/link/{realm}/{userId}/{assetId}\n * Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLink\n */\n deleteUserAssetLink(realm: string, userId: string, assetId: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`asset/user/link/${realm}/${userId}/${assetId}`, options: options });\n }\n\n /**\n * HTTP GET /asset/{assetId}\n * Java method: org.openremote.model.asset.AssetResource.get\n */\n get(assetId: string, options?: O): RestResponse<Model.Asset> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`asset/${assetId}`, options: options });\n }\n\n /**\n * HTTP PUT /asset/{assetId}\n * Java method: org.openremote.model.asset.AssetResource.update\n */\n update(assetId: string, asset: Model.Asset, options?: O): RestResponse<Model.Asset> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`asset/${assetId}`, data: asset, options: options });\n }\n\n /**\n * HTTP PUT /asset/{assetId}/attribute/{attributeName}\n * Java method: org.openremote.model.asset.AssetResource.writeAttributeValue\n */\n writeAttributeValue$PUT$asset_assetId_attribute_attributeName(assetId: string, attributeName: string, value: any, options?: O): RestResponse<Model.AttributeWriteResult> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`asset/${assetId}/attribute/${attributeName}`, data: value, options: options });\n }\n\n /**\n * HTTP PUT /asset/{assetId}/attribute/{attributeName}/{timestamp}\n * Java method: org.openremote.model.asset.AssetResource.writeAttributeValue\n */\n writeAttributeValue$PUT$asset_assetId_attribute_attributeName_timestamp(assetId: string, attributeName: string, timestamp: number, value: any, options?: O): RestResponse<Model.AttributeWriteResult> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`asset/${assetId}/attribute/${attributeName}/${timestamp}`, data: value, options: options });\n }\n\n /**\n * HTTP PUT /asset/{parentAssetId}/child\n * Java method: org.openremote.model.asset.AssetResource.updateParent\n */\n updateParent(parentAssetId: string, queryParams?: { assetIds?: string[]; }, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`asset/${parentAssetId}/child`, queryParams: queryParams, options: options });\n }\n}\n\nexport class UserResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP PUT /user/locale\n * Java method: org.openremote.model.security.UserResource.updateCurrentUserLocale\n */\n updateCurrentUserLocale(locale: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/locale`, data: locale, options: options });\n }\n\n /**\n * HTTP POST /user/query\n * Java method: org.openremote.model.security.UserResource.query\n */\n query(query: Model.UserQuery, options?: O): RestResponse<Model.User[]> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`user/query`, data: query, options: options });\n }\n\n /**\n * HTTP PUT /user/request-password-reset\n * Java method: org.openremote.model.security.UserResource.requestPasswordResetCurrent\n */\n requestPasswordResetCurrent(options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/request-password-reset`, options: options });\n }\n\n /**\n * HTTP PUT /user/reset-password\n * Java method: org.openremote.model.security.UserResource.updatePasswordCurrent\n */\n updatePasswordCurrent(credential: Model.Credential, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/reset-password`, data: credential, options: options });\n }\n\n /**\n * HTTP PUT /user/update\n * Java method: org.openremote.model.security.UserResource.updateCurrent\n */\n updateCurrent(user: Model.User, options?: O): RestResponse<Model.User> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/update`, data: user, options: options });\n }\n\n /**\n * HTTP GET /user/user\n * Java method: org.openremote.model.security.UserResource.getCurrent\n */\n getCurrent(options?: O): RestResponse<Model.User> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/user`, options: options });\n }\n\n /**\n * HTTP GET /user/userRealmRoles\n * Java method: org.openremote.model.security.UserResource.getCurrentUserRealmRoles\n */\n getCurrentUserRealmRoles(options?: O): RestResponse<string[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/userRealmRoles`, options: options });\n }\n\n /**\n * HTTP GET /user/userRoles/{clientId}\n * Java method: org.openremote.model.security.UserResource.getCurrentUserClientRoles\n */\n getCurrentUserClientRoles(clientId: string, options?: O): RestResponse<string[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/userRoles/${clientId}`, options: options });\n }\n\n /**\n * HTTP GET /user/{realm}/disconnect/{sessionID}\n * Java method: org.openremote.model.security.UserResource.disconnectUserSession\n */\n disconnectUserSession(realm: string, sessionID: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/${realm}/disconnect/${sessionID}`, options: options });\n }\n\n /**\n * HTTP PUT /user/{realm}/request-password-reset/{userId}\n * Java method: org.openremote.model.security.UserResource.requestPasswordReset\n */\n requestPasswordReset(realm: string, userId: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/${realm}/request-password-reset/${userId}`, options: options });\n }\n\n /**\n * HTTP PUT /user/{realm}/reset-password/{userId}\n * Java method: org.openremote.model.security.UserResource.updatePassword\n */\n updatePassword(realm: string, userId: string, credential: Model.Credential, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/${realm}/reset-password/${userId}`, data: credential, options: options });\n }\n\n /**\n * HTTP GET /user/{realm}/reset-secret/{userId}\n * Java method: org.openremote.model.security.UserResource.resetSecret\n */\n resetSecret(realm: string, userId: string, options?: O): RestResponse<string> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/${realm}/reset-secret/${userId}`, options: options });\n }\n\n /**\n * HTTP PUT /user/{realm}/roles\n * Java method: org.openremote.model.security.UserResource.updateRoles\n */\n updateRoles(realm: string, roles: Model.Role[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/${realm}/roles`, data: roles, options: options });\n }\n\n /**\n * HTTP GET /user/{realm}/userRealmRoles/{userId}\n * Java method: org.openremote.model.security.UserResource.getUserRealmRoles\n */\n getUserRealmRoles(realm: string, userId: string, options?: O): RestResponse<string[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/${realm}/userRealmRoles/${userId}`, options: options });\n }\n\n /**\n * HTTP PUT /user/{realm}/userRealmRoles/{userId}\n * Java method: org.openremote.model.security.UserResource.updateUserRealmRoles\n */\n updateUserRealmRoles(realm: string, userId: string, roles: string[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/${realm}/userRealmRoles/${userId}`, data: roles, options: options });\n }\n\n /**\n * HTTP GET /user/{realm}/userRoles/{userId}/{clientId}\n * Java method: org.openremote.model.security.UserResource.getUserClientRoles\n */\n getUserClientRoles(realm: string, userId: string, clientId: string, options?: O): RestResponse<string[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/${realm}/userRoles/${userId}/${clientId}`, options: options });\n }\n\n /**\n * HTTP PUT /user/{realm}/userRoles/{userId}/{clientId}\n * Java method: org.openremote.model.security.UserResource.updateUserClientRoles\n */\n updateUserClientRoles(realm: string, userId: string, clientId: string, roles: string[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/${realm}/userRoles/${userId}/${clientId}`, data: roles, options: options });\n }\n\n /**\n * HTTP GET /user/{realm}/userSessions/{userId}\n * Java method: org.openremote.model.security.UserResource.getUserSessions\n */\n getUserSessions(realm: string, userId: string, options?: O): RestResponse<Model.UserSession[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/${realm}/userSessions/${userId}`, options: options });\n }\n\n /**\n * HTTP POST /user/{realm}/users\n * Java method: org.openremote.model.security.UserResource.create\n */\n create(realm: string, user: Model.User, options?: O): RestResponse<Model.User> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`user/${realm}/users`, data: user, options: options });\n }\n\n /**\n * HTTP PUT /user/{realm}/users\n * Java method: org.openremote.model.security.UserResource.update\n */\n update(realm: string, user: Model.User, options?: O): RestResponse<Model.User> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/${realm}/users`, data: user, options: options });\n }\n\n /**\n * HTTP DELETE /user/{realm}/users/{userId}\n * Java method: org.openremote.model.security.UserResource.delete\n */\n delete(realm: string, userId: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`user/${realm}/users/${userId}`, options: options });\n }\n\n /**\n * HTTP GET /user/{realm}/{clientId}/roles\n * Java method: org.openremote.model.security.UserResource.getClientRoles\n */\n getClientRoles(realm: string, clientId: string, options?: O): RestResponse<Model.Role[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/${realm}/${clientId}/roles`, options: options });\n }\n\n /**\n * HTTP PUT /user/{realm}/{clientId}/roles\n * Java method: org.openremote.model.security.UserResource.updateClientRoles\n */\n updateClientRoles(realm: string, clientId: string, roles: Model.Role[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/${realm}/${clientId}/roles`, data: roles, options: options });\n }\n\n /**\n * HTTP GET /user/{realm}/{userId}\n * Java method: org.openremote.model.security.UserResource.get\n */\n get(realm: string, userId: string, options?: O): RestResponse<Model.User> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/${realm}/${userId}`, options: options });\n }\n}\n\nexport class ExternalServiceResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * Response code 200 - List of registered external services\n * HTTP GET /service\n * Java method: org.openremote.model.services.ExternalServiceResource.getServices\n */\n getServices(queryParams?: { realm?: string; }, options?: O): RestResponse<Model.ExternalService[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`service`, queryParams: queryParams, options: options });\n }\n\n /**\n * Response code 200 - Service registered successfully\n * Response code 400 - Invalid external service object\n * Response code 409 - ExternalService instance already registered\n * HTTP POST /service\n * Java method: org.openremote.model.services.ExternalServiceResource.registerService\n */\n registerService(service: Model.ExternalService, options?: O): RestResponse<Model.ExternalService> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`service`, data: service, options: options });\n }\n\n /**\n * Response code 200 - List of registered external services\n * HTTP GET /service/global\n * Java method: org.openremote.model.services.ExternalServiceResource.getGlobalServices\n */\n getGlobalServices(options?: O): RestResponse<Model.ExternalService[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`service/global`, options: options });\n }\n\n /**\n * Response code 200 - Service registered successfully\n * Response code 400 - Invalid external service object\n * Response code 409 - ExternalService instance already registered\n * HTTP POST /service/global\n * Java method: org.openremote.model.services.ExternalServiceResource.registerGlobalService\n */\n registerGlobalService(service: Model.ExternalService, options?: O): RestResponse<Model.ExternalService> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`service/global`, data: service, options: options });\n }\n\n /**\n * Response code 204 - Service deregistered successfully\n * Response code 404 - Service instance not found\n * HTTP DELETE /service/{serviceId}/{instanceId}\n * Java method: org.openremote.model.services.ExternalServiceResource.deregisterService\n */\n deregisterService(serviceId: string, instanceId: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`service/${serviceId}/${instanceId}`, options: options });\n }\n\n /**\n * Response code 200 - ExternalService retrieved successfully\n * Response code 404 - ExternalService not found\n * HTTP GET /service/{serviceId}/{instanceId}\n * Java method: org.openremote.model.services.ExternalServiceResource.getService\n */\n getService(serviceId: string, instanceId: number, options?: O): RestResponse<Model.ExternalService> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`service/${serviceId}/${instanceId}`, options: options });\n }\n\n /**\n * Response code 204 - Heartbeat sent successfully\n * Response code 404 - Service instance not found\n * HTTP PUT /service/{serviceId}/{instanceId}\n * Java method: org.openremote.model.services.ExternalServiceResource.heartbeat\n */\n heartbeat(serviceId: string, instanceId: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`service/${serviceId}/${instanceId}`, options: options });\n }\n}\n\nexport class AppResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /apps\n * Java method: org.openremote.model.apps.AppResource.getApps\n */\n getApps(options?: O): RestResponse<string[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`apps`, options: options });\n }\n\n /**\n * HTTP GET /apps/consoleConfig\n * Java method: org.openremote.model.apps.AppResource.getConsoleConfig\n */\n getConsoleConfig(options?: O): RestResponse<any> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`apps/consoleConfig`, options: options });\n }\n\n /**\n * HTTP GET /apps/info\n * Java method: org.openremote.model.apps.AppResource.getAppInfos\n */\n getAppInfos(options?: O): RestResponse<any> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`apps/info`, options: options });\n }\n}\n\nexport class GatewayServiceResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /gateway/tunnel\n * Java method: org.openremote.model.gateway.GatewayServiceResource.startTunnel\n */\n startTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<Model.GatewayTunnelInfo> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`gateway/tunnel`, data: tunnelInfo, options: options });\n }\n\n /**\n * HTTP DELETE /gateway/tunnel\n * Java method: org.openremote.model.gateway.GatewayServiceResource.stopTunnel\n */\n stopTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`gateway/tunnel`, data: tunnelInfo, options: options });\n }\n\n /**\n * HTTP GET /gateway/tunnel/{realm}\n * Java method: org.openremote.model.gateway.GatewayServiceResource.getAllActiveTunnelInfos\n */\n getAllActiveTunnelInfos(realm: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`gateway/tunnel/${realm}`, options: options });\n }\n\n /**\n * HTTP GET /gateway/tunnel/{realm}/{id}\n * Java method: org.openremote.model.gateway.GatewayServiceResource.getGatewayActiveTunnelInfos\n */\n getGatewayActiveTunnelInfos(realm: string, id: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`gateway/tunnel/${realm}/${id}`, options: options });\n }\n\n /**\n * HTTP GET /gateway/tunnel/{realm}/{id}/{target}/{targetPort}\n * Java method: org.openremote.model.gateway.GatewayServiceResource.getActiveTunnelInfo\n */\n getActiveTunnelInfo(realm: string, id: string, target: string, targetPort: number, options?: O): RestResponse<Model.GatewayTunnelInfo> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`gateway/tunnel/${realm}/${id}/${target}/${targetPort}`, options: options });\n }\n}\n\nexport class ProvisioningResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /provisioning\n * Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig\n */\n createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`provisioning`, data: provisioningConfig, options: options });\n }\n\n /**\n * HTTP GET /provisioning\n * Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs\n */\n getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`provisioning`, options: options });\n }\n\n /**\n * HTTP DELETE /provisioning/{id}\n * Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig\n */\n deleteProvisioningConfig(id: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`provisioning/${id}`, options: options });\n }\n\n /**\n * HTTP PUT /provisioning/{id}\n * Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig\n */\n updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`provisioning/${id}`, data: provisioningConfig, options: options });\n }\n}\n\nexport class NotificationResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /notification\n * Java method: org.openremote.model.notification.NotificationResource.getNotifications\n */\n getNotifications(queryParams?: { id?: number; type?: string; from?: number; to?: number; realmId?: string; userId?: string; assetId?: string; }, options?: O): RestResponse<Model.SentNotification[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`notification`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP DELETE /notification\n * Java method: org.openremote.model.notification.NotificationResource.removeNotifications\n */\n removeNotifications(queryParams?: { id?: number; type?: string; from?: number; to?: number; realmId?: string; userId?: string; assetId?: string; }, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`notification`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP POST /notification/alert\n * Java method: org.openremote.model.notification.NotificationResource.sendNotification\n */\n sendNotification(notification: Model.Notification, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`notification/alert`, data: notification, options: options });\n }\n\n /**\n * HTTP DELETE /notification/{notificationId}\n * Java method: org.openremote.model.notification.NotificationResource.removeNotification\n */\n removeNotification(notificationId: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`notification/${notificationId}`, options: options });\n }\n\n /**\n * HTTP PUT /notification/{notificationId}/acknowledged\n * Java method: org.openremote.model.notification.NotificationResource.notificationAcknowledged\n */\n notificationAcknowledged(notificationId: number, acknowledgement: any, queryParams?: { targetId?: string; }, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`notification/${notificationId}/acknowledged`, queryParams: queryParams, data: acknowledgement, options: options });\n }\n\n /**\n * HTTP PUT /notification/{notificationId}/delivered\n * Java method: org.openremote.model.notification.NotificationResource.notificationDelivered\n */\n notificationDelivered(notificationId: number, queryParams?: { targetId?: string; }, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`notification/${notificationId}/delivered`, queryParams: queryParams, options: options });\n }\n}\n\nexport class AssetPredictedDatapointResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /asset/predicted/{assetId}/{attributeName}\n * Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints\n */\n getPredictedDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`asset/predicted/${assetId}/${attributeName}`, data: query, options: options });\n }\n\n /**\n * HTTP PUT /asset/predicted/{assetId}/{attributeName}\n * Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints\n */\n writePredictedDatapoints(assetId: string, attributeName: string, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`asset/predicted/${assetId}/${attributeName}`, data: predictedDatapoints, options: options });\n }\n}\n\nexport class StatusResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /health\n * Java method: org.openremote.model.system.StatusResource.getHealthStatus\n */\n getHealthStatus(options?: O): RestResponse<{ [index: string]: any }> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`health`, options: options });\n }\n\n /**\n * HTTP GET /info\n * Java method: org.openremote.model.system.StatusResource.getInfo\n */\n getInfo(options?: O): RestResponse<{ [index: string]: any }> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`info`, options: options });\n }\n}\n\nexport class GatewayClientResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP DELETE /gateway/connection\n * Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnections\n */\n deleteConnections(queryParams?: { realm?: string[]; }, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`gateway/connection`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /gateway/connection\n * Java method: org.openremote.model.gateway.GatewayClientResource.getConnections\n */\n getConnections(options?: O): RestResponse<Model.GatewayConnection[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`gateway/connection`, options: options });\n }\n\n /**\n * HTTP DELETE /gateway/connection/{realm}\n * Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnection\n */\n deleteConnection(realm: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`gateway/connection/${realm}`, options: options });\n }\n\n /**\n * HTTP GET /gateway/connection/{realm}\n * Java method: org.openremote.model.gateway.GatewayClientResource.getConnection\n */\n getConnection(realm: string, options?: O): RestResponse<Model.GatewayConnection> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`gateway/connection/${realm}`, options: options });\n }\n\n /**\n * HTTP PUT /gateway/connection/{realm}\n * Java method: org.openremote.model.gateway.GatewayClientResource.setConnection\n */\n setConnection(realm: string, connection: Model.GatewayConnection, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`gateway/connection/${realm}`, data: connection, options: options });\n }\n\n /**\n * HTTP GET /gateway/status/{realm}\n * Java method: org.openremote.model.gateway.GatewayClientResource.getConnectionStatus\n */\n getConnectionStatus(realm: string, options?: O): RestResponse<Model.ConnectionStatus> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`gateway/status/${realm}`, options: options });\n }\n}\n\nexport class DashboardResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /dashboard\n * Java method: org.openremote.model.dashboard.DashboardResource.create\n */\n create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`dashboard`, data: dashboard, options: options });\n }\n\n /**\n * HTTP PUT /dashboard\n * Java method: org.openremote.model.dashboard.DashboardResource.update\n */\n update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`dashboard`, data: dashboard, options: options });\n }\n\n /**\n * HTTP GET /dashboard/all/{realm}\n * Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards\n */\n getAllRealmDashboards(realm: string, options?: O): RestResponse<Model.Dashboard[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`dashboard/all/${realm}`, options: options });\n }\n\n /**\n * HTTP POST /dashboard/query\n * Java method: org.openremote.model.dashboard.DashboardResource.query\n */\n query(dashboardQuery: Model.DashboardQuery, options?: O): RestResponse<Model.Dashboard[]> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`dashboard/query`, data: dashboardQuery, options: options });\n }\n\n /**\n * HTTP DELETE /dashboard/{realm}/{dashboardId}\n * Java method: org.openremote.model.dashboard.DashboardResource.delete\n */\n delete(realm: string, dashboardId: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`dashboard/${realm}/${dashboardId}`, options: options });\n }\n\n /**\n * HTTP GET /dashboard/{realm}/{dashboardId}\n * Java method: org.openremote.model.dashboard.DashboardResource.get\n */\n get(realm: string, dashboardId: string, options?: O): RestResponse<Model.Dashboard> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`dashboard/${realm}/${dashboardId}`, options: options });\n }\n}\n\nexport class AgentResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /agent/assetDiscovery/{agentId}\n * Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery\n */\n doProtocolAssetDiscovery(agentId: string, queryParams?: { realm?: string; }, options?: O): RestResponse<Model.AssetTreeNode[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`agent/assetDiscovery/${agentId}`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP POST /agent/assetImport/{agentId}\n * Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport\n */\n doProtocolAssetImport(agentId: string, fileInfo: Model.FileInfo, queryParams?: { realm?: string; }, options?: O): RestResponse<Model.AssetTreeNode[]> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`agent/assetImport/${agentId}`, queryParams: queryParams, data: fileInfo, options: options });\n }\n\n /**\n * HTTP GET /agent/instanceDiscovery/{agentType}\n * Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery\n */\n doProtocolInstanceDiscovery(agentType: string, queryParams?: { parentId?: string; realm?: string; }, options?: O): RestResponse<Model.Agent[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`agent/instanceDiscovery/${agentType}`, queryParams: queryParams, options: options });\n }\n}\n\nexport type RestResponse<R> = Promise<Axios.GenericAxiosResponse<R>>;\n\nfunction uriEncoding(template: TemplateStringsArray, ...substitutions: any[]): string {\n let result = \"\";\n for (let i = 0; i < substitutions.length; i++) {\n result += template[i];\n result += encodeURIComponent(substitutions[i]);\n }\n result += template[template.length - 1];\n return result;\n}\n\n\n// Added by 'AggregatedApiClient' extension\nexport class ApiClient {\n\nprotected _alarmResource : AxiosAlarmResourceClient;\nprotected _assetModelResource : AxiosAssetModelResourceClient;\nprotected _assetDatapointResource : AxiosAssetDatapointResourceClient;\nprotected _syslogResource : AxiosSyslogResourceClient;\nprotected _realmResource : AxiosRealmResourceClient;\nprotected _configurationResource : AxiosConfigurationResourceClient;\nprotected _consoleResource : AxiosConsoleResourceClient;\nprotected _flowResource : AxiosFlowResourceClient;\nprotected _rulesResource : AxiosRulesResourceClient;\nprotected _mapResource : AxiosMapResourceClient;\nprotected _assetResource : AxiosAssetResourceClient;\nprotected _userResource : AxiosUserResourceClient;\nprotected _externalServiceResource : AxiosExternalServiceResourceClient;\nprotected _appResource : AxiosAppResourceClient;\nprotected _gatewayServiceResource : AxiosGatewayServiceResourceClient;\nprotected _provisioningResource : AxiosProvisioningResourceClient;\nprotected _notificationResource : AxiosNotificationResourceClient;\nprotected _assetPredictedDatapointResource : AxiosAssetPredictedDatapointResourceClient;\nprotected _statusResource : AxiosStatusResourceClient;\nprotected _gatewayClientResource : AxiosGatewayClientResourceClient;\nprotected _dashboardResource : AxiosDashboardResourceClient;\nprotected _agentResource : AxiosAgentResourceClient;\n\nconstructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\nthis._alarmResource = new AxiosAlarmResourceClient(baseURL, axiosInstance);\nthis._assetModelResource = new AxiosAssetModelResourceClient(baseURL, axiosInstance);\nthis._assetDatapointResource = new AxiosAssetDatapointResourceClient(baseURL, axiosInstance);\nthis._syslogResource = new AxiosSyslogResourceClient(baseURL, axiosInstance);\nthis._realmResource = new AxiosRealmResourceClient(baseURL, axiosInstance);\nthis._configurationResource = new AxiosConfigurationResourceClient(baseURL, axiosInstance);\nthis._consoleResource = new AxiosConsoleResourceClient(baseURL, axiosInstance);\nthis._flowResource = new AxiosFlowResourceClient(baseURL, axiosInstance);\nthis._rulesResource = new AxiosRulesResourceClient(baseURL, axiosInstance);\nthis._mapResource = new AxiosMapResourceClient(baseURL, axiosInstance);\nthis._assetResource = new AxiosAssetResourceClient(baseURL, axiosInstance);\nthis._userResource = new AxiosUserResourceClient(baseURL, axiosInstance);\nthis._externalServiceResource = new AxiosExternalServiceResourceClient(baseURL, axiosInstance);\nthis._appResource = new AxiosAppResourceClient(baseURL, axiosInstance);\nthis._gatewayServiceResource = new AxiosGatewayServiceResourceClient(baseURL, axiosInstance);\nthis._provisioningResource = new AxiosProvisioningResourceClient(baseURL, axiosInstance);\nthis._notificationResource = new AxiosNotificationResourceClient(baseURL, axiosInstance);\nthis._assetPredictedDatapointResource = new AxiosAssetPredictedDatapointResourceClient(baseURL, axiosInstance);\nthis._statusResource = new AxiosStatusResourceClient(baseURL, axiosInstance);\nthis._gatewayClientResource = new AxiosGatewayClientResourceClient(baseURL, axiosInstance);\nthis._dashboardResource = new AxiosDashboardResourceClient(baseURL, axiosInstance);\nthis._agentResource = new AxiosAgentResourceClient(baseURL, axiosInstance);\nthis._assetResource = new AxiosAssetResourceClient(baseURL, axiosInstance);\n}\n\nget AlarmResource() : AxiosAlarmResourceClient {\nreturn this._alarmResource;\n}\nget AssetModelResource() : AxiosAssetModelResourceClient {\nreturn this._assetModelResource;\n}\nget AssetDatapointResource() : AxiosAssetDatapointResourceClient {\nreturn this._assetDatapointResource;\n}\nget SyslogResource() : AxiosSyslogResourceClient {\nreturn this._syslogResource;\n}\nget RealmResource() : AxiosRealmResourceClient {\nreturn this._realmResource;\n}\nget ConfigurationResource() : AxiosConfigurationResourceClient {\nreturn this._configurationResource;\n}\nget ConsoleResource() : AxiosConsoleResourceClient {\nreturn this._consoleResource;\n}\nget FlowResource() : AxiosFlowResourceClient {\nreturn this._flowResource;\n}\nget RulesResource() : AxiosRulesResourceClient {\nreturn this._rulesResource;\n}\nget MapResource() : AxiosMapResourceClient {\nreturn this._mapResource;\n}\nget AssetResource() : AxiosAssetResourceClient {\nreturn this._assetResource;\n}\nget UserResource() : AxiosUserResourceClient {\nreturn this._userResource;\n}\nget ExternalServiceResource() : AxiosExternalServiceResourceClient {\nreturn this._externalServiceResource;\n}\nget AppResource() : AxiosAppResourceClient {\nreturn this._appResource;\n}\nget GatewayServiceResource() : AxiosGatewayServiceResourceClient {\nreturn this._gatewayServiceResource;\n}\nget ProvisioningResource() : AxiosProvisioningResourceClient {\nreturn this._provisioningResource;\n}\nget NotificationResource() : AxiosNotificationResourceClient {\nreturn this._notificationResource;\n}\nget AssetPredictedDatapointResource() : AxiosAssetPredictedDatapointResourceClient {\nreturn this._assetPredictedDatapointResource;\n}\nget StatusResource() : AxiosStatusResourceClient {\nreturn this._statusResource;\n}\nget GatewayClientResource() : AxiosGatewayClientResourceClient {\nreturn this._gatewayClientResource;\n}\nget DashboardResource() : AxiosDashboardResourceClient {\nreturn this._dashboardResource;\n}\nget AgentResource() : AxiosAgentResourceClient {\nreturn this._agentResource;\n}\n}\n\n\n// Added by 'AxiosClientExtension' extension\n\nimport axios from \"axios\";\nimport * as Axios from \"axios\";\n\ndeclare module \"axios\" {\n export interface GenericAxiosResponse<R> extends Axios.AxiosResponse {\n data: R;\n }\n}\n\nclass AxiosHttpClient implements HttpClient<Axios.AxiosRequestConfig> {\n\n constructor(private axios: Axios.AxiosInstance) {\n }\n\n request<R>(requestConfig: { method: string; url: string; queryParams?: any; data?: any; copyFn?: (data: R) => R; options?: Axios.AxiosRequestConfig; }): RestResponse<R> {\n function assign(target: any, source?: any) {\n if (source != undefined) {\n for (const key in source) {\n if (source.hasOwnProperty(key)) {\n target[key] = source[key];\n }\n }\n }\n return target;\n }\n\n const config: Axios.AxiosRequestConfig = {};\n config.method = requestConfig.method as typeof config.method; // `string` in axios 0.16.0, `Method` in axios 0.19.0\n config.url = requestConfig.url;\n config.params = requestConfig.queryParams;\n config.data = requestConfig.data;\n assign(config, requestConfig.options);\n const copyFn = requestConfig.copyFn;\n\n const axiosResponse = this.axios.request(config);\n return axiosResponse.then(axiosResponse => {\n if (copyFn && axiosResponse.data) {\n (axiosResponse as any).originalData = axiosResponse.data;\n axiosResponse.data = copyFn(axiosResponse.data);\n }\n return axiosResponse;\n });\n }\n}\n\nexport class AxiosAlarmResourceClient extends AlarmResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosSyslogResourceClient extends SyslogResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosRealmResourceClient extends RealmResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosConsoleResourceClient extends ConsoleResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosFlowResourceClient extends FlowResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosRulesResourceClient extends RulesResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosMapResourceClient extends MapResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosAssetResourceClient extends AssetResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosUserResourceClient extends UserResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosExternalServiceResourceClient extends ExternalServiceResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosAppResourceClient extends AppResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosGatewayServiceResourceClient extends GatewayServiceResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosProvisioningResourceClient extends ProvisioningResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosNotificationResourceClient extends NotificationResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosAssetPredictedDatapointResourceClient extends AssetPredictedDatapointResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosStatusResourceClient extends StatusResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosGatewayClientResourceClient extends GatewayClientResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosDashboardResourceClient extends DashboardResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosAgentResourceClient extends AgentResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n","import axios, {AxiosInstance, AxiosRequestConfig, GenericAxiosResponse, AxiosError} from \"axios\";\nimport {ApiClient, RestResponse} from \"./restclient\";\nimport Qs from \"qs\";\n\nconst isAxiosError = axios.isAxiosError;\n\nexport {RestResponse, GenericAxiosResponse, AxiosError, isAxiosError};\n\nexport class RestApi {\n\n get api() {\n return this._client;\n }\n\n protected _client!: ApiClient;\n protected _axiosInstance!: AxiosInstance;\n protected _baseUrl!: string;\n\n constructor() {\n this._axiosInstance = axios.create();\n this._axiosInstance.defaults.headers.common[\"Content-Type\"] = \"application/json\";\n this._axiosInstance.interceptors.request.use((config) => {\n config.paramsSerializer = (params) => Qs.stringify(params, {arrayFormat: \"repeat\"});\n return config;\n });\n }\n\n get axiosInstance() {\n return this._axiosInstance;\n }\n\n get baseUrl() {\n return this._baseUrl;\n }\n\n public setTimeout(timeout: number) {\n this._axiosInstance.defaults.timeout = timeout;\n }\n\n public addRequestInterceptor(interceptor: (config: AxiosRequestConfig) => AxiosRequestConfig) {\n this._axiosInstance.interceptors.request.use(interceptor);\n }\n\n public initialise(baseUrl: string) {\n this._baseUrl = baseUrl;\n this._client = new ApiClient(baseUrl, this._axiosInstance);\n }\n}\n\nexport default new RestApi();\n"],"names":["Object","Symbol","t","o","r","encodeURIComponent","A"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sources":["webpack://ORRest/webpack/runtime/compat_get_default_export","webpack://ORRest/webpack/runtime/define_property_getters","webpack://ORRest/webpack/runtime/has_own_property","webpack://ORRest/webpack/runtime/make_namespace_object","webpack://ORRest/./src/restclient.ts","webpack://ORRest/./src/index.ts"],"sourcesContent":["// getDefaultExport function for compatibility with non-ESM modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};\n","__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n }\n }\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","/* tslint:disable */\n/* eslint-disable */\n// Generated using typescript-generator version 3.2.1263 on 2025-12-09 12:54:10.\n\nimport * as Model from \"@openremote/model\";\n\nexport interface HttpClient<O> {\n\n request<R>(requestConfig: { method: string; url: string; queryParams?: any; data?: any; copyFn?: (data: R) => R; options?: O; }): RestResponse<R>;\n}\n\nexport class AssetModelResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /model/assetDescriptors\n * Java method: org.openremote.model.asset.AssetModelResource.getAssetDescriptors\n */\n getAssetDescriptors(queryParams?: { parentId?: string; parentType?: string; }, options?: O): RestResponse<Model.AssetDescriptor[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`model/assetDescriptors`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /model/assetInfo/{assetType}\n * Java method: org.openremote.model.asset.AssetModelResource.getAssetInfo\n */\n getAssetInfo(assetType: string, queryParams?: { parentId?: string; }, options?: O): RestResponse<Model.AssetTypeInfo> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`model/assetInfo/${assetType}`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /model/assetInfos\n * Java method: org.openremote.model.asset.AssetModelResource.getAssetInfos\n */\n getAssetInfos(queryParams?: { parentId?: string; parentType?: string; }, options?: O): RestResponse<Model.AssetTypeInfo[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`model/assetInfos`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /model/getValueDescriptorSchema\n * Java method: org.openremote.model.asset.AssetModelResource.getValueDescriptorSchema\n */\n getValueDescriptorSchema(queryParams?: { name?: string; hash?: string; }, options?: O): RestResponse<any> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`model/getValueDescriptorSchema`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /model/metaItemDescriptors\n * Java method: org.openremote.model.asset.AssetModelResource.getMetaItemDescriptors\n */\n getMetaItemDescriptors(queryParams?: { parentId?: string; }, options?: O): RestResponse<{ [index: string]: Model.MetaItemDescriptor }> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`model/metaItemDescriptors`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /model/valueDescriptors\n * Java method: org.openremote.model.asset.AssetModelResource.getValueDescriptors\n */\n getValueDescriptors(queryParams?: { parentId?: string; }, options?: O): RestResponse<{ [index: string]: Model.ValueDescriptor }> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`model/valueDescriptors`, queryParams: queryParams, options: options });\n }\n}\n\nexport class SyslogResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /syslog/config\n * Java method: org.openremote.model.syslog.SyslogResource.getConfig\n */\n getConfig(options?: O): RestResponse<Model.SyslogConfig> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`syslog/config`, options: options });\n }\n\n /**\n * HTTP PUT /syslog/config\n * Java method: org.openremote.model.syslog.SyslogResource.updateConfig\n */\n updateConfig(config: Model.SyslogConfig, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`syslog/config`, data: config, options: options });\n }\n\n /**\n * HTTP DELETE /syslog/event\n * Java method: org.openremote.model.syslog.SyslogResource.clearEvents\n */\n clearEvents(options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`syslog/event`, options: options });\n }\n\n /**\n * HTTP GET /syslog/event\n * Java method: org.openremote.model.syslog.SyslogResource.getEvents\n */\n getEvents(queryParams?: { level?: Model.SyslogLevel; per_page?: number; page?: number; from?: number; to?: number; category?: Model.SyslogCategory[]; subCategory?: string[]; }, options?: O): RestResponse<any> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`syslog/event`, queryParams: queryParams, options: options });\n }\n}\n\nexport class AgentResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /agent/assetDiscovery/{agentId}\n * Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery\n */\n doProtocolAssetDiscovery(agentId: string, queryParams?: { realm?: string; }, options?: O): RestResponse<Model.AssetTreeNode[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`agent/assetDiscovery/${agentId}`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP POST /agent/assetImport/{agentId}\n * Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport\n */\n doProtocolAssetImport(agentId: string, fileInfo: Model.FileInfo, queryParams?: { realm?: string; }, options?: O): RestResponse<Model.AssetTreeNode[]> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`agent/assetImport/${agentId}`, queryParams: queryParams, data: fileInfo, options: options });\n }\n\n /**\n * HTTP GET /agent/instanceDiscovery/{agentType}\n * Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery\n */\n doProtocolInstanceDiscovery(agentType: string, queryParams?: { parentId?: string; realm?: string; }, options?: O): RestResponse<Model.Agent[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`agent/instanceDiscovery/${agentType}`, queryParams: queryParams, options: options });\n }\n}\n\nexport class AssetPredictedDatapointResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /asset/predicted/{assetId}/{attributeName}\n * Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints\n */\n getPredictedDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`asset/predicted/${assetId}/${attributeName}`, data: query, options: options });\n }\n\n /**\n * HTTP PUT /asset/predicted/{assetId}/{attributeName}\n * Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints\n */\n writePredictedDatapoints(assetId: string, attributeName: string, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`asset/predicted/${assetId}/${attributeName}`, data: predictedDatapoints, options: options });\n }\n}\n\nexport class ConsoleResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /console/register\n * Java method: org.openremote.model.console.ConsoleResource.register\n */\n register(consoleRegistration: Model.ConsoleRegistration, options?: O): RestResponse<Model.ConsoleRegistration> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`console/register`, data: consoleRegistration, options: options });\n }\n}\n\nexport class AppResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /apps\n * Java method: org.openremote.model.apps.AppResource.getApps\n */\n getApps(options?: O): RestResponse<string[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`apps`, options: options });\n }\n\n /**\n * HTTP GET /apps/consoleConfig\n * Java method: org.openremote.model.apps.AppResource.getConsoleConfig\n */\n getConsoleConfig(options?: O): RestResponse<any> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`apps/consoleConfig`, options: options });\n }\n\n /**\n * HTTP GET /apps/info\n * Java method: org.openremote.model.apps.AppResource.getAppInfos\n */\n getAppInfos(options?: O): RestResponse<any> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`apps/info`, options: options });\n }\n}\n\nexport class FlowResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /flow\n * Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitions\n */\n getAllNodeDefinitions(options?: O): RestResponse<Model.Node[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`flow`, options: options });\n }\n\n /**\n * HTTP GET /flow/{name}\n * Java method: org.openremote.model.rules.flow.FlowResource.getNodeDefinition\n */\n getNodeDefinition(name: string, options?: O): RestResponse<Model.Node> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`flow/${name}`, options: options });\n }\n\n /**\n * HTTP GET /flow/{type}\n * Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitionsByType\n */\n getAllNodeDefinitionsByType(type: Model.NodeType, options?: O): RestResponse<Model.Node[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`flow/${type}`, options: options });\n }\n}\n\nexport class AlarmResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /alarm\n * Java method: org.openremote.model.alarm.AlarmResource.createAlarm\n */\n createAlarm(alarm: Model.Alarm, queryParams?: { assetIds?: string[]; }, options?: O): RestResponse<Model.SentAlarm> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`alarm`, queryParams: queryParams, data: alarm, options: options });\n }\n\n /**\n * HTTP GET /alarm\n * Java method: org.openremote.model.alarm.AlarmResource.getAlarms\n */\n getAlarms(queryParams?: { realm?: string; status?: Model.AlarmStatus; assetId?: string; assigneeId?: string; }, options?: O): RestResponse<Model.SentAlarm[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`alarm`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP DELETE /alarm\n * Java method: org.openremote.model.alarm.AlarmResource.removeAlarms\n */\n removeAlarms(ids: number[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`alarm`, data: ids, options: options });\n }\n\n /**\n * HTTP PUT /alarm/assets\n * Java method: org.openremote.model.alarm.AlarmResource.setAssetLinks\n */\n setAssetLinks(links: Model.AlarmAssetLink[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`alarm/assets`, data: links, options: options });\n }\n\n /**\n * HTTP GET /alarm/{alarmId}\n * Java method: org.openremote.model.alarm.AlarmResource.getAlarm\n */\n getAlarm(alarmId: number, options?: O): RestResponse<Model.SentAlarm> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`alarm/${alarmId}`, options: options });\n }\n\n /**\n * HTTP DELETE /alarm/{alarmId}\n * Java method: org.openremote.model.alarm.AlarmResource.removeAlarm\n */\n removeAlarm(alarmId: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`alarm/${alarmId}`, options: options });\n }\n\n /**\n * HTTP PUT /alarm/{alarmId}\n * Java method: org.openremote.model.alarm.AlarmResource.updateAlarm\n */\n updateAlarm(alarmId: number, alarm: Model.SentAlarm, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`alarm/${alarmId}`, data: alarm, options: options });\n }\n\n /**\n * HTTP GET /alarm/{alarmId}/assets\n * Java method: org.openremote.model.alarm.AlarmResource.getAssetLinks\n */\n getAssetLinks(alarmId: number, queryParams?: { realm?: string; }, options?: O): RestResponse<Model.AlarmAssetLink[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`alarm/${alarmId}/assets`, queryParams: queryParams, options: options });\n }\n}\n\nexport class StatusResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /health\n * Java method: org.openremote.model.system.StatusResource.getHealthStatus\n */\n getHealthStatus(options?: O): RestResponse<{ [index: string]: any }> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`health`, options: options });\n }\n\n /**\n * HTTP GET /info\n * Java method: org.openremote.model.system.StatusResource.getInfo\n */\n getInfo(options?: O): RestResponse<{ [index: string]: any }> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`info`, options: options });\n }\n}\n\nexport class ConfigurationResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /configuration/manager\n * Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfig\n */\n getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`configuration/manager`, options: options });\n }\n\n /**\n * HTTP PUT /configuration/manager\n * Java method: org.openremote.model.manager.ConfigurationResource.update\n */\n update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`configuration/manager`, data: managerConfiguration, options: options });\n }\n\n /**\n * HTTP POST /configuration/manager/file\n * Java method: org.openremote.model.manager.ConfigurationResource.fileUpload\n */\n fileUpload(fileInfo: Model.FileInfo, queryParams?: { path?: string; }, options?: O): RestResponse<string> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`configuration/manager/file`, queryParams: queryParams, data: fileInfo, options: options });\n }\n\n /**\n * HTTP GET /configuration/manager/image/{filename: .+}\n * Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfigImage\n */\n getManagerConfigImage(filename: string, options?: O): RestResponse<any> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`configuration/manager/image/${filename}`, options: options });\n }\n}\n\nexport class AssetResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /asset\n * Java method: org.openremote.model.asset.AssetResource.create\n */\n create(asset: Model.Asset, options?: O): RestResponse<Model.Asset> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`asset`, data: asset, options: options });\n }\n\n /**\n * HTTP DELETE /asset\n * Java method: org.openremote.model.asset.AssetResource.delete\n */\n delete(queryParams?: { assetId?: string[]; }, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`asset`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP PUT /asset/attributes\n * Java method: org.openremote.model.asset.AssetResource.writeAttributeValues\n */\n writeAttributeValues(attributeStates: Model.AttributeState[], options?: O): RestResponse<Model.AttributeWriteResult[]> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`asset/attributes`, data: attributeStates, options: options });\n }\n\n /**\n * HTTP PUT /asset/attributes/timestamp\n * Java method: org.openremote.model.asset.AssetResource.writeAttributeEvents\n */\n writeAttributeEvents(attributeEvents: Model.AttributeEvent[], options?: O): RestResponse<Model.AttributeWriteResult[]> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`asset/attributes/timestamp`, data: attributeEvents, options: options });\n }\n\n /**\n * HTTP DELETE /asset/parent\n * Java method: org.openremote.model.asset.AssetResource.updateNoneParent\n */\n updateNoneParent(queryParams?: { assetIds?: string[]; }, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`asset/parent`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /asset/partial/{assetId}\n * Java method: org.openremote.model.asset.AssetResource.getPartial\n */\n getPartial(assetId: string, options?: O): RestResponse<Model.Asset> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`asset/partial/${assetId}`, options: options });\n }\n\n /**\n * HTTP POST /asset/query\n * Java method: org.openremote.model.asset.AssetResource.queryAssets\n */\n queryAssets(query: Model.AssetQuery, options?: O): RestResponse<Model.Asset[]> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`asset/query`, data: query, options: options });\n }\n\n /**\n * HTTP POST /asset/tree\n * Java method: org.openremote.model.asset.AssetResource.queryAssetTree\n */\n queryAssetTree(query: Model.AssetQuery, options?: O): RestResponse<Model.AssetTree> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`asset/tree`, data: query, options: options });\n }\n\n /**\n * HTTP GET /asset/user/current\n * Java method: org.openremote.model.asset.AssetResource.getCurrentUserAssets\n */\n getCurrentUserAssets(options?: O): RestResponse<Model.Asset[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`asset/user/current`, options: options });\n }\n\n /**\n * HTTP POST /asset/user/link\n * Java method: org.openremote.model.asset.AssetResource.createUserAssetLinks\n */\n createUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`asset/user/link`, data: userAssets, options: options });\n }\n\n /**\n * HTTP GET /asset/user/link\n * Java method: org.openremote.model.asset.AssetResource.getUserAssetLinks\n */\n getUserAssetLinks(queryParams?: { realm?: string; userId?: string; assetId?: string; }, options?: O): RestResponse<Model.UserAssetLink[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`asset/user/link`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP POST /asset/user/link/delete\n * Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLinks\n */\n deleteUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`asset/user/link/delete`, data: userAssets, options: options });\n }\n\n /**\n * HTTP DELETE /asset/user/link/{realm}/{userId}\n * Java method: org.openremote.model.asset.AssetResource.deleteAllUserAssetLinks\n */\n deleteAllUserAssetLinks(realm: string, userId: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`asset/user/link/${realm}/${userId}`, options: options });\n }\n\n /**\n * HTTP DELETE /asset/user/link/{realm}/{userId}/{assetId}\n * Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLink\n */\n deleteUserAssetLink(realm: string, userId: string, assetId: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`asset/user/link/${realm}/${userId}/${assetId}`, options: options });\n }\n\n /**\n * HTTP GET /asset/{assetId}\n * Java method: org.openremote.model.asset.AssetResource.get\n */\n get(assetId: string, options?: O): RestResponse<Model.Asset> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`asset/${assetId}`, options: options });\n }\n\n /**\n * HTTP PUT /asset/{assetId}\n * Java method: org.openremote.model.asset.AssetResource.update\n */\n update(assetId: string, asset: Model.Asset, options?: O): RestResponse<Model.Asset> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`asset/${assetId}`, data: asset, options: options });\n }\n\n /**\n * HTTP PUT /asset/{assetId}/attribute/{attributeName}\n * Java method: org.openremote.model.asset.AssetResource.writeAttributeValue\n */\n writeAttributeValue$PUT$asset_assetId_attribute_attributeName(assetId: string, attributeName: string, value: any, options?: O): RestResponse<Model.AttributeWriteResult> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`asset/${assetId}/attribute/${attributeName}`, data: value, options: options });\n }\n\n /**\n * HTTP PUT /asset/{assetId}/attribute/{attributeName}/{timestamp}\n * Java method: org.openremote.model.asset.AssetResource.writeAttributeValue\n */\n writeAttributeValue$PUT$asset_assetId_attribute_attributeName_timestamp(assetId: string, attributeName: string, timestamp: number, value: any, options?: O): RestResponse<Model.AttributeWriteResult> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`asset/${assetId}/attribute/${attributeName}/${timestamp}`, data: value, options: options });\n }\n\n /**\n * HTTP PUT /asset/{parentAssetId}/child\n * Java method: org.openremote.model.asset.AssetResource.updateParent\n */\n updateParent(parentAssetId: string, queryParams?: { assetIds?: string[]; }, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`asset/${parentAssetId}/child`, queryParams: queryParams, options: options });\n }\n}\n\nexport class DashboardResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /dashboard\n * Java method: org.openremote.model.dashboard.DashboardResource.create\n */\n create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`dashboard`, data: dashboard, options: options });\n }\n\n /**\n * HTTP PUT /dashboard\n * Java method: org.openremote.model.dashboard.DashboardResource.update\n */\n update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`dashboard`, data: dashboard, options: options });\n }\n\n /**\n * HTTP GET /dashboard/all/{realm}\n * Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards\n */\n getAllRealmDashboards(realm: string, options?: O): RestResponse<Model.Dashboard[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`dashboard/all/${realm}`, options: options });\n }\n\n /**\n * HTTP POST /dashboard/query\n * Java method: org.openremote.model.dashboard.DashboardResource.query\n */\n query(dashboardQuery: Model.DashboardQuery, options?: O): RestResponse<Model.Dashboard[]> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`dashboard/query`, data: dashboardQuery, options: options });\n }\n\n /**\n * HTTP DELETE /dashboard/{realm}/{dashboardId}\n * Java method: org.openremote.model.dashboard.DashboardResource.delete\n */\n delete(realm: string, dashboardId: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`dashboard/${realm}/${dashboardId}`, options: options });\n }\n\n /**\n * HTTP GET /dashboard/{realm}/{dashboardId}\n * Java method: org.openremote.model.dashboard.DashboardResource.get\n */\n get(realm: string, dashboardId: string, options?: O): RestResponse<Model.Dashboard> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`dashboard/${realm}/${dashboardId}`, options: options });\n }\n}\n\nexport class ExternalServiceResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * Response code 200 - List of registered external services\n * HTTP GET /service\n * Java method: org.openremote.model.services.ExternalServiceResource.getServices\n */\n getServices(queryParams?: { realm?: string; }, options?: O): RestResponse<Model.ExternalService[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`service`, queryParams: queryParams, options: options });\n }\n\n /**\n * Response code 200 - Service registered successfully\n * Response code 400 - Invalid external service object\n * Response code 409 - ExternalService instance already registered\n * HTTP POST /service\n * Java method: org.openremote.model.services.ExternalServiceResource.registerService\n */\n registerService(service: Model.ExternalService, options?: O): RestResponse<Model.ExternalService> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`service`, data: service, options: options });\n }\n\n /**\n * Response code 200 - List of registered external services\n * HTTP GET /service/global\n * Java method: org.openremote.model.services.ExternalServiceResource.getGlobalServices\n */\n getGlobalServices(options?: O): RestResponse<Model.ExternalService[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`service/global`, options: options });\n }\n\n /**\n * Response code 200 - Service registered successfully\n * Response code 400 - Invalid external service object\n * Response code 409 - ExternalService instance already registered\n * HTTP POST /service/global\n * Java method: org.openremote.model.services.ExternalServiceResource.registerGlobalService\n */\n registerGlobalService(service: Model.ExternalService, options?: O): RestResponse<Model.ExternalService> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`service/global`, data: service, options: options });\n }\n\n /**\n * Response code 204 - Service deregistered successfully\n * Response code 404 - Service instance not found\n * HTTP DELETE /service/{serviceId}/{instanceId}\n * Java method: org.openremote.model.services.ExternalServiceResource.deregisterService\n */\n deregisterService(serviceId: string, instanceId: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`service/${serviceId}/${instanceId}`, options: options });\n }\n\n /**\n * Response code 200 - ExternalService retrieved successfully\n * Response code 404 - ExternalService not found\n * HTTP GET /service/{serviceId}/{instanceId}\n * Java method: org.openremote.model.services.ExternalServiceResource.getService\n */\n getService(serviceId: string, instanceId: number, options?: O): RestResponse<Model.ExternalService> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`service/${serviceId}/${instanceId}`, options: options });\n }\n\n /**\n * Response code 204 - Heartbeat sent successfully\n * Response code 404 - Service instance not found\n * HTTP PUT /service/{serviceId}/{instanceId}\n * Java method: org.openremote.model.services.ExternalServiceResource.heartbeat\n */\n heartbeat(serviceId: string, instanceId: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`service/${serviceId}/${instanceId}`, options: options });\n }\n}\n\nexport class ProvisioningResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /provisioning\n * Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig\n */\n createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`provisioning`, data: provisioningConfig, options: options });\n }\n\n /**\n * HTTP GET /provisioning\n * Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs\n */\n getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`provisioning`, options: options });\n }\n\n /**\n * HTTP DELETE /provisioning/{id}\n * Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig\n */\n deleteProvisioningConfig(id: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`provisioning/${id}`, options: options });\n }\n\n /**\n * HTTP PUT /provisioning/{id}\n * Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig\n */\n updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`provisioning/${id}`, data: provisioningConfig, options: options });\n }\n}\n\nexport class AssetDatapointResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /asset/datapoint/export\n * Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport\n */\n getDatapointExport(queryParams?: { attributeRefs?: string; fromTimestamp?: number; toTimestamp?: number; }, options?: O): RestResponse<any> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`asset/datapoint/export`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /asset/datapoint/periods\n * Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod\n */\n getDatapointPeriod(queryParams?: { assetId?: string; attributeName?: string; }, options?: O): RestResponse<Model.DatapointPeriod> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`asset/datapoint/periods`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP POST /asset/datapoint/{assetId}/{attributeName}\n * Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints\n */\n getDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`asset/datapoint/${assetId}/${attributeName}`, data: query, options: options });\n }\n}\n\nexport class UserResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP PUT /user/locale\n * Java method: org.openremote.model.security.UserResource.updateCurrentUserLocale\n */\n updateCurrentUserLocale(locale: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/locale`, data: locale, options: options });\n }\n\n /**\n * HTTP POST /user/query\n * Java method: org.openremote.model.security.UserResource.query\n */\n query(query: Model.UserQuery, options?: O): RestResponse<Model.User[]> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`user/query`, data: query, options: options });\n }\n\n /**\n * HTTP PUT /user/request-password-reset\n * Java method: org.openremote.model.security.UserResource.requestPasswordResetCurrent\n */\n requestPasswordResetCurrent(options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/request-password-reset`, options: options });\n }\n\n /**\n * HTTP PUT /user/reset-password\n * Java method: org.openremote.model.security.UserResource.updatePasswordCurrent\n */\n updatePasswordCurrent(credential: Model.Credential, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/reset-password`, data: credential, options: options });\n }\n\n /**\n * HTTP PUT /user/update\n * Java method: org.openremote.model.security.UserResource.updateCurrent\n */\n updateCurrent(user: Model.User, options?: O): RestResponse<Model.User> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/update`, data: user, options: options });\n }\n\n /**\n * HTTP GET /user/user\n * Java method: org.openremote.model.security.UserResource.getCurrent\n */\n getCurrent(options?: O): RestResponse<Model.User> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/user`, options: options });\n }\n\n /**\n * HTTP GET /user/userRealmRoles\n * Java method: org.openremote.model.security.UserResource.getCurrentUserRealmRoles\n */\n getCurrentUserRealmRoles(options?: O): RestResponse<string[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/userRealmRoles`, options: options });\n }\n\n /**\n * HTTP GET /user/userRoles/{clientId}\n * Java method: org.openremote.model.security.UserResource.getCurrentUserClientRoles\n */\n getCurrentUserClientRoles(clientId: string, options?: O): RestResponse<string[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/userRoles/${clientId}`, options: options });\n }\n\n /**\n * HTTP GET /user/{realm}/disconnect/{sessionID}\n * Java method: org.openremote.model.security.UserResource.disconnectUserSession\n */\n disconnectUserSession(realm: string, sessionID: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/${realm}/disconnect/${sessionID}`, options: options });\n }\n\n /**\n * HTTP PUT /user/{realm}/request-password-reset/{userId}\n * Java method: org.openremote.model.security.UserResource.requestPasswordReset\n */\n requestPasswordReset(realm: string, userId: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/${realm}/request-password-reset/${userId}`, options: options });\n }\n\n /**\n * HTTP PUT /user/{realm}/reset-password/{userId}\n * Java method: org.openremote.model.security.UserResource.updatePassword\n */\n updatePassword(realm: string, userId: string, credential: Model.Credential, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/${realm}/reset-password/${userId}`, data: credential, options: options });\n }\n\n /**\n * HTTP GET /user/{realm}/reset-secret/{userId}\n * Java method: org.openremote.model.security.UserResource.resetSecret\n */\n resetSecret(realm: string, userId: string, options?: O): RestResponse<string> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/${realm}/reset-secret/${userId}`, options: options });\n }\n\n /**\n * HTTP PUT /user/{realm}/roles\n * Java method: org.openremote.model.security.UserResource.updateRoles\n */\n updateRoles(realm: string, roles: Model.Role[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/${realm}/roles`, data: roles, options: options });\n }\n\n /**\n * HTTP GET /user/{realm}/userRealmRoles/{userId}\n * Java method: org.openremote.model.security.UserResource.getUserRealmRoles\n */\n getUserRealmRoles(realm: string, userId: string, options?: O): RestResponse<string[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/${realm}/userRealmRoles/${userId}`, options: options });\n }\n\n /**\n * HTTP PUT /user/{realm}/userRealmRoles/{userId}\n * Java method: org.openremote.model.security.UserResource.updateUserRealmRoles\n */\n updateUserRealmRoles(realm: string, userId: string, roles: string[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/${realm}/userRealmRoles/${userId}`, data: roles, options: options });\n }\n\n /**\n * HTTP GET /user/{realm}/userRoles/{userId}/{clientId}\n * Java method: org.openremote.model.security.UserResource.getUserClientRoles\n */\n getUserClientRoles(realm: string, userId: string, clientId: string, options?: O): RestResponse<string[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/${realm}/userRoles/${userId}/${clientId}`, options: options });\n }\n\n /**\n * HTTP PUT /user/{realm}/userRoles/{userId}/{clientId}\n * Java method: org.openremote.model.security.UserResource.updateUserClientRoles\n */\n updateUserClientRoles(realm: string, userId: string, clientId: string, roles: string[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/${realm}/userRoles/${userId}/${clientId}`, data: roles, options: options });\n }\n\n /**\n * HTTP GET /user/{realm}/userSessions/{userId}\n * Java method: org.openremote.model.security.UserResource.getUserSessions\n */\n getUserSessions(realm: string, userId: string, options?: O): RestResponse<Model.UserSession[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/${realm}/userSessions/${userId}`, options: options });\n }\n\n /**\n * HTTP POST /user/{realm}/users\n * Java method: org.openremote.model.security.UserResource.create\n */\n create(realm: string, user: Model.User, options?: O): RestResponse<Model.User> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`user/${realm}/users`, data: user, options: options });\n }\n\n /**\n * HTTP PUT /user/{realm}/users\n * Java method: org.openremote.model.security.UserResource.update\n */\n update(realm: string, user: Model.User, options?: O): RestResponse<Model.User> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/${realm}/users`, data: user, options: options });\n }\n\n /**\n * HTTP DELETE /user/{realm}/users/{userId}\n * Java method: org.openremote.model.security.UserResource.delete\n */\n delete(realm: string, userId: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`user/${realm}/users/${userId}`, options: options });\n }\n\n /**\n * HTTP GET /user/{realm}/{clientId}/roles\n * Java method: org.openremote.model.security.UserResource.getClientRoles\n */\n getClientRoles(realm: string, clientId: string, options?: O): RestResponse<Model.Role[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/${realm}/${clientId}/roles`, options: options });\n }\n\n /**\n * HTTP PUT /user/{realm}/{clientId}/roles\n * Java method: org.openremote.model.security.UserResource.updateClientRoles\n */\n updateClientRoles(realm: string, clientId: string, roles: Model.Role[], options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`user/${realm}/${clientId}/roles`, data: roles, options: options });\n }\n\n /**\n * HTTP GET /user/{realm}/{userId}\n * Java method: org.openremote.model.security.UserResource.get\n */\n get(realm: string, userId: string, options?: O): RestResponse<Model.User> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`user/${realm}/${userId}`, options: options });\n }\n}\n\nexport class GatewayServiceResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /gateway/tunnel\n * Java method: org.openremote.model.gateway.GatewayServiceResource.startTunnel\n */\n startTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<Model.GatewayTunnelInfo> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`gateway/tunnel`, data: tunnelInfo, options: options });\n }\n\n /**\n * HTTP DELETE /gateway/tunnel\n * Java method: org.openremote.model.gateway.GatewayServiceResource.stopTunnel\n */\n stopTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`gateway/tunnel`, data: tunnelInfo, options: options });\n }\n\n /**\n * HTTP GET /gateway/tunnel/{realm}\n * Java method: org.openremote.model.gateway.GatewayServiceResource.getAllActiveTunnelInfos\n */\n getAllActiveTunnelInfos(realm: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`gateway/tunnel/${realm}`, options: options });\n }\n\n /**\n * HTTP GET /gateway/tunnel/{realm}/{id}\n * Java method: org.openremote.model.gateway.GatewayServiceResource.getGatewayActiveTunnelInfos\n */\n getGatewayActiveTunnelInfos(realm: string, id: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`gateway/tunnel/${realm}/${id}`, options: options });\n }\n\n /**\n * HTTP GET /gateway/tunnel/{realm}/{id}/{target}/{targetPort}\n * Java method: org.openremote.model.gateway.GatewayServiceResource.getActiveTunnelInfo\n */\n getActiveTunnelInfo(realm: string, id: string, target: string, targetPort: number, options?: O): RestResponse<Model.GatewayTunnelInfo> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`gateway/tunnel/${realm}/${id}/${target}/${targetPort}`, options: options });\n }\n}\n\nexport class NotificationResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /notification\n * Java method: org.openremote.model.notification.NotificationResource.getNotifications\n */\n getNotifications(queryParams?: { id?: number; type?: string; from?: number; to?: number; realmId?: string; userId?: string; assetId?: string; }, options?: O): RestResponse<Model.SentNotification[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`notification`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP DELETE /notification\n * Java method: org.openremote.model.notification.NotificationResource.removeNotifications\n */\n removeNotifications(queryParams?: { id?: number; type?: string; from?: number; to?: number; realmId?: string; userId?: string; assetId?: string; }, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`notification`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP POST /notification/alert\n * Java method: org.openremote.model.notification.NotificationResource.sendNotification\n */\n sendNotification(notification: Model.Notification, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`notification/alert`, data: notification, options: options });\n }\n\n /**\n * HTTP DELETE /notification/{notificationId}\n * Java method: org.openremote.model.notification.NotificationResource.removeNotification\n */\n removeNotification(notificationId: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`notification/${notificationId}`, options: options });\n }\n\n /**\n * HTTP PUT /notification/{notificationId}/acknowledged\n * Java method: org.openremote.model.notification.NotificationResource.notificationAcknowledged\n */\n notificationAcknowledged(notificationId: number, acknowledgement: any, queryParams?: { targetId?: string; }, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`notification/${notificationId}/acknowledged`, queryParams: queryParams, data: acknowledgement, options: options });\n }\n\n /**\n * HTTP PUT /notification/{notificationId}/delivered\n * Java method: org.openremote.model.notification.NotificationResource.notificationDelivered\n */\n notificationDelivered(notificationId: number, queryParams?: { targetId?: string; }, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`notification/${notificationId}/delivered`, queryParams: queryParams, options: options });\n }\n}\n\nexport class RealmResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /realm\n * Java method: org.openremote.model.security.RealmResource.create\n */\n create(realm: Model.Realm, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`realm`, data: realm, options: options });\n }\n\n /**\n * HTTP GET /realm\n * Java method: org.openremote.model.security.RealmResource.getAll\n */\n getAll(options?: O): RestResponse<Model.Realm[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`realm`, options: options });\n }\n\n /**\n * HTTP GET /realm/accessible\n * Java method: org.openremote.model.security.RealmResource.getAccessible\n */\n getAccessible(options?: O): RestResponse<Model.Realm[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`realm/accessible`, options: options });\n }\n\n /**\n * HTTP DELETE /realm/{name}\n * Java method: org.openremote.model.security.RealmResource.delete\n */\n delete(name: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`realm/${name}`, options: options });\n }\n\n /**\n * HTTP GET /realm/{name}\n * Java method: org.openremote.model.security.RealmResource.get\n */\n get(name: string, options?: O): RestResponse<Model.Realm> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`realm/${name}`, options: options });\n }\n\n /**\n * HTTP PUT /realm/{name}\n * Java method: org.openremote.model.security.RealmResource.update\n */\n update(name: string, realm: Model.Realm, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`realm/${name}`, data: realm, options: options });\n }\n}\n\nexport class RulesResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP POST /rules\n * Java method: org.openremote.model.rules.RulesResource.createGlobalRuleset\n */\n createGlobalRuleset(ruleset: Model.GlobalRuleset, options?: O): RestResponse<number> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`rules`, data: ruleset, options: options });\n }\n\n /**\n * HTTP GET /rules\n * Java method: org.openremote.model.rules.RulesResource.getGlobalRulesets\n */\n getGlobalRulesets(queryParams?: { language?: Model.RulesetLang[]; fullyPopulate?: boolean; }, options?: O): RestResponse<Model.GlobalRuleset[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP POST /rules/asset\n * Java method: org.openremote.model.rules.RulesResource.createAssetRuleset\n */\n createAssetRuleset(ruleset: Model.AssetRuleset, options?: O): RestResponse<number> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`rules/asset`, data: ruleset, options: options });\n }\n\n /**\n * HTTP GET /rules/asset/for/{assetId}\n * Java method: org.openremote.model.rules.RulesResource.getAssetRulesets\n */\n getAssetRulesets(assetId: string, queryParams?: { language?: Model.RulesetLang[]; fullyPopulate?: boolean; }, options?: O): RestResponse<Model.AssetRuleset[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/asset/for/${assetId}`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP DELETE /rules/asset/{id}\n * Java method: org.openremote.model.rules.RulesResource.deleteAssetRuleset\n */\n deleteAssetRuleset(id: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`rules/asset/${id}`, options: options });\n }\n\n /**\n * HTTP GET /rules/asset/{id}\n * Java method: org.openremote.model.rules.RulesResource.getAssetRuleset\n */\n getAssetRuleset(id: number, options?: O): RestResponse<Model.AssetRuleset> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/asset/${id}`, options: options });\n }\n\n /**\n * HTTP PUT /rules/asset/{id}\n * Java method: org.openremote.model.rules.RulesResource.updateAssetRuleset\n */\n updateAssetRuleset(id: number, ruleset: Model.AssetRuleset, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`rules/asset/${id}`, data: ruleset, options: options });\n }\n\n /**\n * HTTP GET /rules/geofences/{assetId}\n * Java method: org.openremote.model.rules.RulesResource.getAssetGeofences\n */\n getAssetGeofences(assetId: string, options?: O): RestResponse<Model.GeofenceDefinition[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/geofences/${assetId}`, options: options });\n }\n\n /**\n * HTTP GET /rules/info/asset/{assetId}\n * Java method: org.openremote.model.rules.RulesResource.getAssetEngineInfo\n */\n getAssetEngineInfo(assetId: string, options?: O): RestResponse<Model.RulesEngineInfo> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/info/asset/${assetId}`, options: options });\n }\n\n /**\n * HTTP GET /rules/info/global\n * Java method: org.openremote.model.rules.RulesResource.getGlobalEngineInfo\n */\n getGlobalEngineInfo(options?: O): RestResponse<Model.RulesEngineInfo> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/info/global`, options: options });\n }\n\n /**\n * HTTP GET /rules/info/realm/{realm}\n * Java method: org.openremote.model.rules.RulesResource.getRealmEngineInfo\n */\n getRealmEngineInfo(realm: string, options?: O): RestResponse<Model.RulesEngineInfo> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/info/realm/${realm}`, options: options });\n }\n\n /**\n * HTTP POST /rules/realm\n * Java method: org.openremote.model.rules.RulesResource.createRealmRuleset\n */\n createRealmRuleset(ruleset: Model.RealmRuleset, options?: O): RestResponse<number> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`rules/realm`, data: ruleset, options: options });\n }\n\n /**\n * HTTP GET /rules/realm/for/{realm}\n * Java method: org.openremote.model.rules.RulesResource.getRealmRulesets\n */\n getRealmRulesets(realm: string, queryParams?: { language?: Model.RulesetLang[]; fullyPopulate?: boolean; }, options?: O): RestResponse<Model.RealmRuleset[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/realm/for/${realm}`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP DELETE /rules/realm/{id}\n * Java method: org.openremote.model.rules.RulesResource.deleteRealmRuleset\n */\n deleteRealmRuleset(id: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`rules/realm/${id}`, options: options });\n }\n\n /**\n * HTTP GET /rules/realm/{id}\n * Java method: org.openremote.model.rules.RulesResource.getRealmRuleset\n */\n getRealmRuleset(id: number, options?: O): RestResponse<Model.RealmRuleset> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/realm/${id}`, options: options });\n }\n\n /**\n * HTTP PUT /rules/realm/{id}\n * Java method: org.openremote.model.rules.RulesResource.updateRealmRuleset\n */\n updateRealmRuleset(id: number, ruleset: Model.RealmRuleset, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`rules/realm/${id}`, data: ruleset, options: options });\n }\n\n /**\n * HTTP DELETE /rules/{id}\n * Java method: org.openremote.model.rules.RulesResource.deleteGlobalRuleset\n */\n deleteGlobalRuleset(id: number, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`rules/${id}`, options: options });\n }\n\n /**\n * HTTP GET /rules/{id}\n * Java method: org.openremote.model.rules.RulesResource.getGlobalRuleset\n */\n getGlobalRuleset(id: number, options?: O): RestResponse<Model.GlobalRuleset> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`rules/${id}`, options: options });\n }\n\n /**\n * HTTP PUT /rules/{id}\n * Java method: org.openremote.model.rules.RulesResource.updateGlobalRuleset\n */\n updateGlobalRuleset(id: number, ruleset: Model.GlobalRuleset, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`rules/${id}`, data: ruleset, options: options });\n }\n}\n\nexport class MapResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP GET /map\n * Java method: org.openremote.model.map.MapResource.getSettings\n */\n getSettings(options?: O): RestResponse<{ [id: string]: unknown }> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`map`, options: options });\n }\n\n /**\n * HTTP PUT /map\n * Java method: org.openremote.model.map.MapResource.saveSettings\n */\n saveSettings(mapConfig: Model.MapConfig, options?: O): RestResponse<{ [id: string]: unknown }> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`map`, data: mapConfig, options: options });\n }\n\n /**\n * HTTP DELETE /map/deleteMap\n * Java method: org.openremote.model.map.MapResource.deleteMap\n */\n deleteMap(options?: O): RestResponse<{ [id: string]: unknown }> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`map/deleteMap`, options: options });\n }\n\n /**\n * HTTP GET /map/getCustomMapInfo\n * Java method: org.openremote.model.map.MapResource.getCustomMapInfo\n */\n getCustomMapInfo(options?: O): RestResponse<{ [id: string]: unknown }> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`map/getCustomMapInfo`, options: options });\n }\n\n /**\n * HTTP GET /map/js\n * Java method: org.openremote.model.map.MapResource.getSettingsJs\n */\n getSettingsJs(options?: O): RestResponse<{ [id: string]: unknown }> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`map/js`, options: options });\n }\n\n /**\n * HTTP GET /map/tile/{zoom}/{column}/{row}\n * Java method: org.openremote.model.map.MapResource.getTile\n */\n getTile(zoom: number, column: number, row: number, options?: O): RestResponse<any> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`map/tile/${zoom}/${column}/${row}`, options: options });\n }\n\n /**\n * HTTP POST /map/upload\n * Java method: org.openremote.model.map.MapResource.uploadMap\n */\n uploadMap(queryParams?: { filename?: string; }, options?: O): RestResponse<{ [id: string]: unknown }> {\n return this.httpClient.request({ method: \"POST\", url: uriEncoding`map/upload`, queryParams: queryParams, options: options });\n }\n}\n\nexport class GatewayClientResourceClient<O> {\n\n constructor(protected httpClient: HttpClient<O>) {\n }\n\n /**\n * HTTP DELETE /gateway/connection\n * Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnections\n */\n deleteConnections(queryParams?: { realm?: string[]; }, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`gateway/connection`, queryParams: queryParams, options: options });\n }\n\n /**\n * HTTP GET /gateway/connection\n * Java method: org.openremote.model.gateway.GatewayClientResource.getConnections\n */\n getConnections(options?: O): RestResponse<Model.GatewayConnection[]> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`gateway/connection`, options: options });\n }\n\n /**\n * HTTP DELETE /gateway/connection/{realm}\n * Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnection\n */\n deleteConnection(realm: string, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"DELETE\", url: uriEncoding`gateway/connection/${realm}`, options: options });\n }\n\n /**\n * HTTP GET /gateway/connection/{realm}\n * Java method: org.openremote.model.gateway.GatewayClientResource.getConnection\n */\n getConnection(realm: string, options?: O): RestResponse<Model.GatewayConnection> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`gateway/connection/${realm}`, options: options });\n }\n\n /**\n * HTTP PUT /gateway/connection/{realm}\n * Java method: org.openremote.model.gateway.GatewayClientResource.setConnection\n */\n setConnection(realm: string, connection: Model.GatewayConnection, options?: O): RestResponse<void> {\n return this.httpClient.request({ method: \"PUT\", url: uriEncoding`gateway/connection/${realm}`, data: connection, options: options });\n }\n\n /**\n * HTTP GET /gateway/status/{realm}\n * Java method: org.openremote.model.gateway.GatewayClientResource.getConnectionStatus\n */\n getConnectionStatus(realm: string, options?: O): RestResponse<Model.ConnectionStatus> {\n return this.httpClient.request({ method: \"GET\", url: uriEncoding`gateway/status/${realm}`, options: options });\n }\n}\n\nexport type RestResponse<R> = Promise<Axios.GenericAxiosResponse<R>>;\n\nfunction uriEncoding(template: TemplateStringsArray, ...substitutions: any[]): string {\n let result = \"\";\n for (let i = 0; i < substitutions.length; i++) {\n result += template[i];\n result += encodeURIComponent(substitutions[i]);\n }\n result += template[template.length - 1];\n return result;\n}\n\n\n// Added by 'AggregatedApiClient' extension\nexport class ApiClient {\n\nprotected _assetModelResource : AxiosAssetModelResourceClient;\nprotected _syslogResource : AxiosSyslogResourceClient;\nprotected _agentResource : AxiosAgentResourceClient;\nprotected _assetPredictedDatapointResource : AxiosAssetPredictedDatapointResourceClient;\nprotected _consoleResource : AxiosConsoleResourceClient;\nprotected _appResource : AxiosAppResourceClient;\nprotected _flowResource : AxiosFlowResourceClient;\nprotected _alarmResource : AxiosAlarmResourceClient;\nprotected _statusResource : AxiosStatusResourceClient;\nprotected _configurationResource : AxiosConfigurationResourceClient;\nprotected _assetResource : AxiosAssetResourceClient;\nprotected _dashboardResource : AxiosDashboardResourceClient;\nprotected _externalServiceResource : AxiosExternalServiceResourceClient;\nprotected _provisioningResource : AxiosProvisioningResourceClient;\nprotected _assetDatapointResource : AxiosAssetDatapointResourceClient;\nprotected _userResource : AxiosUserResourceClient;\nprotected _gatewayServiceResource : AxiosGatewayServiceResourceClient;\nprotected _notificationResource : AxiosNotificationResourceClient;\nprotected _realmResource : AxiosRealmResourceClient;\nprotected _rulesResource : AxiosRulesResourceClient;\nprotected _mapResource : AxiosMapResourceClient;\nprotected _gatewayClientResource : AxiosGatewayClientResourceClient;\n\nconstructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\nthis._assetModelResource = new AxiosAssetModelResourceClient(baseURL, axiosInstance);\nthis._syslogResource = new AxiosSyslogResourceClient(baseURL, axiosInstance);\nthis._agentResource = new AxiosAgentResourceClient(baseURL, axiosInstance);\nthis._assetPredictedDatapointResource = new AxiosAssetPredictedDatapointResourceClient(baseURL, axiosInstance);\nthis._consoleResource = new AxiosConsoleResourceClient(baseURL, axiosInstance);\nthis._appResource = new AxiosAppResourceClient(baseURL, axiosInstance);\nthis._flowResource = new AxiosFlowResourceClient(baseURL, axiosInstance);\nthis._alarmResource = new AxiosAlarmResourceClient(baseURL, axiosInstance);\nthis._statusResource = new AxiosStatusResourceClient(baseURL, axiosInstance);\nthis._configurationResource = new AxiosConfigurationResourceClient(baseURL, axiosInstance);\nthis._assetResource = new AxiosAssetResourceClient(baseURL, axiosInstance);\nthis._dashboardResource = new AxiosDashboardResourceClient(baseURL, axiosInstance);\nthis._externalServiceResource = new AxiosExternalServiceResourceClient(baseURL, axiosInstance);\nthis._provisioningResource = new AxiosProvisioningResourceClient(baseURL, axiosInstance);\nthis._assetDatapointResource = new AxiosAssetDatapointResourceClient(baseURL, axiosInstance);\nthis._userResource = new AxiosUserResourceClient(baseURL, axiosInstance);\nthis._gatewayServiceResource = new AxiosGatewayServiceResourceClient(baseURL, axiosInstance);\nthis._notificationResource = new AxiosNotificationResourceClient(baseURL, axiosInstance);\nthis._realmResource = new AxiosRealmResourceClient(baseURL, axiosInstance);\nthis._rulesResource = new AxiosRulesResourceClient(baseURL, axiosInstance);\nthis._mapResource = new AxiosMapResourceClient(baseURL, axiosInstance);\nthis._gatewayClientResource = new AxiosGatewayClientResourceClient(baseURL, axiosInstance);\nthis._assetResource = new AxiosAssetResourceClient(baseURL, axiosInstance);\n}\n\nget AssetModelResource() : AxiosAssetModelResourceClient {\nreturn this._assetModelResource;\n}\nget SyslogResource() : AxiosSyslogResourceClient {\nreturn this._syslogResource;\n}\nget AgentResource() : AxiosAgentResourceClient {\nreturn this._agentResource;\n}\nget AssetPredictedDatapointResource() : AxiosAssetPredictedDatapointResourceClient {\nreturn this._assetPredictedDatapointResource;\n}\nget ConsoleResource() : AxiosConsoleResourceClient {\nreturn this._consoleResource;\n}\nget AppResource() : AxiosAppResourceClient {\nreturn this._appResource;\n}\nget FlowResource() : AxiosFlowResourceClient {\nreturn this._flowResource;\n}\nget AlarmResource() : AxiosAlarmResourceClient {\nreturn this._alarmResource;\n}\nget StatusResource() : AxiosStatusResourceClient {\nreturn this._statusResource;\n}\nget ConfigurationResource() : AxiosConfigurationResourceClient {\nreturn this._configurationResource;\n}\nget AssetResource() : AxiosAssetResourceClient {\nreturn this._assetResource;\n}\nget DashboardResource() : AxiosDashboardResourceClient {\nreturn this._dashboardResource;\n}\nget ExternalServiceResource() : AxiosExternalServiceResourceClient {\nreturn this._externalServiceResource;\n}\nget ProvisioningResource() : AxiosProvisioningResourceClient {\nreturn this._provisioningResource;\n}\nget AssetDatapointResource() : AxiosAssetDatapointResourceClient {\nreturn this._assetDatapointResource;\n}\nget UserResource() : AxiosUserResourceClient {\nreturn this._userResource;\n}\nget GatewayServiceResource() : AxiosGatewayServiceResourceClient {\nreturn this._gatewayServiceResource;\n}\nget NotificationResource() : AxiosNotificationResourceClient {\nreturn this._notificationResource;\n}\nget RealmResource() : AxiosRealmResourceClient {\nreturn this._realmResource;\n}\nget RulesResource() : AxiosRulesResourceClient {\nreturn this._rulesResource;\n}\nget MapResource() : AxiosMapResourceClient {\nreturn this._mapResource;\n}\nget GatewayClientResource() : AxiosGatewayClientResourceClient {\nreturn this._gatewayClientResource;\n}\n}\n\n\n// Added by 'AxiosClientExtension' extension\n\nimport axios from \"axios\";\nimport * as Axios from \"axios\";\n\ndeclare module \"axios\" {\n export interface GenericAxiosResponse<R> extends Axios.AxiosResponse {\n data: R;\n }\n}\n\nclass AxiosHttpClient implements HttpClient<Axios.AxiosRequestConfig> {\n\n constructor(private axios: Axios.AxiosInstance) {\n }\n\n request<R>(requestConfig: { method: string; url: string; queryParams?: any; data?: any; copyFn?: (data: R) => R; options?: Axios.AxiosRequestConfig; }): RestResponse<R> {\n function assign(target: any, source?: any) {\n if (source != undefined) {\n for (const key in source) {\n if (source.hasOwnProperty(key)) {\n target[key] = source[key];\n }\n }\n }\n return target;\n }\n\n const config: Axios.AxiosRequestConfig = {};\n config.method = requestConfig.method as typeof config.method; // `string` in axios 0.16.0, `Method` in axios 0.19.0\n config.url = requestConfig.url;\n config.params = requestConfig.queryParams;\n config.data = requestConfig.data;\n assign(config, requestConfig.options);\n const copyFn = requestConfig.copyFn;\n\n const axiosResponse = this.axios.request(config);\n return axiosResponse.then(axiosResponse => {\n if (copyFn && axiosResponse.data) {\n (axiosResponse as any).originalData = axiosResponse.data;\n axiosResponse.data = copyFn(axiosResponse.data);\n }\n return axiosResponse;\n });\n }\n}\n\nexport class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosSyslogResourceClient extends SyslogResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosAgentResourceClient extends AgentResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosAssetPredictedDatapointResourceClient extends AssetPredictedDatapointResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosConsoleResourceClient extends ConsoleResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosAppResourceClient extends AppResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosFlowResourceClient extends FlowResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosAlarmResourceClient extends AlarmResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosStatusResourceClient extends StatusResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosAssetResourceClient extends AssetResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosDashboardResourceClient extends DashboardResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosExternalServiceResourceClient extends ExternalServiceResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosProvisioningResourceClient extends ProvisioningResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosUserResourceClient extends UserResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosGatewayServiceResourceClient extends GatewayServiceResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosNotificationResourceClient extends NotificationResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosRealmResourceClient extends RealmResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosRulesResourceClient extends RulesResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosMapResourceClient extends MapResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n\nexport class AxiosGatewayClientResourceClient extends GatewayClientResourceClient<Axios.AxiosRequestConfig> {\n\n constructor(baseURL: string, axiosInstance: Axios.AxiosInstance = axios.create()) {\n axiosInstance.defaults.baseURL = baseURL;\n super(new AxiosHttpClient(axiosInstance));\n }\n}\n","import axios, {AxiosInstance, AxiosRequestConfig, GenericAxiosResponse, AxiosError} from \"axios\";\nimport {ApiClient, RestResponse} from \"./restclient\";\nimport Qs from \"qs\";\n\nconst isAxiosError = axios.isAxiosError;\n\nexport {RestResponse, GenericAxiosResponse, AxiosError, isAxiosError};\n\nexport class RestApi {\n\n get api() {\n return this._client;\n }\n\n protected _client!: ApiClient;\n protected _axiosInstance!: AxiosInstance;\n protected _baseUrl!: string;\n\n constructor() {\n this._axiosInstance = axios.create();\n this._axiosInstance.defaults.headers.common[\"Content-Type\"] = \"application/json\";\n this._axiosInstance.interceptors.request.use((config) => {\n config.paramsSerializer = (params) => Qs.stringify(params, {arrayFormat: \"repeat\"});\n return config;\n });\n }\n\n get axiosInstance() {\n return this._axiosInstance;\n }\n\n get baseUrl() {\n return this._baseUrl;\n }\n\n public setTimeout(timeout: number) {\n this._axiosInstance.defaults.timeout = timeout;\n }\n\n public addRequestInterceptor(interceptor: (config: AxiosRequestConfig) => AxiosRequestConfig) {\n this._axiosInstance.interceptors.request.use(interceptor);\n }\n\n public initialise(baseUrl: string) {\n this._baseUrl = baseUrl;\n this._client = new ApiClient(baseUrl, this._axiosInstance);\n }\n}\n\nexport default new RestApi();\n"],"names":["Object","Symbol","t","o","r","encodeURIComponent","A"],"mappings":"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"}
|