@kohost/api-client 3.2.1 → 3.2.2

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.
@@ -92,6 +92,11 @@ export interface Property {
92
92
  DigitalKey?: {
93
93
  system?: "salto" | "dormakaba";
94
94
  systemOnline?: boolean;
95
+ systemConfig?: {
96
+ legicAppId?: string;
97
+ legicTechUsername?: string;
98
+ legicTechPassword?: string;
99
+ };
95
100
  enableApp?: boolean;
96
101
  branding?: {
97
102
  logo?: string;
@@ -202,6 +202,22 @@
202
202
  "type": "boolean",
203
203
  "default": false
204
204
  },
205
+ "systemConfig": {
206
+ "type": "object",
207
+ "properties": {
208
+ "legicAppId": {
209
+ "type": "string"
210
+ },
211
+ "legicTechUsername": {
212
+ "type": "string"
213
+ },
214
+ "legicTechPassword": {
215
+ "type": "string"
216
+ }
217
+ },
218
+ "additionalProperties": false,
219
+ "default": {}
220
+ },
205
221
  "enableApp": {
206
222
  "type": "boolean"
207
223
  },
@@ -13388,6 +13388,22 @@ var require_property = __commonJS({
13388
13388
  type: "boolean",
13389
13389
  default: false
13390
13390
  },
13391
+ systemConfig: {
13392
+ type: "object",
13393
+ properties: {
13394
+ legicAppId: {
13395
+ type: "string"
13396
+ },
13397
+ legicTechUsername: {
13398
+ type: "string"
13399
+ },
13400
+ legicTechPassword: {
13401
+ type: "string"
13402
+ }
13403
+ },
13404
+ additionalProperties: false,
13405
+ default: {}
13406
+ },
13391
13407
  enableApp: {
13392
13408
  type: "boolean"
13393
13409
  },