@aristid/leav-types 1.3.0-1cddc9d2 → 1.3.0-2e4cb2a7

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.
@@ -77,6 +77,13 @@ export declare namespace bugsnag {
77
77
  export let appType: string;
78
78
  export let releaseStage: string;
79
79
  }
80
+ export declare namespace matomo {
81
+ let enable_2: boolean;
82
+ export { enable_2 as enable };
83
+ let url_1: string;
84
+ export { url_1 as url };
85
+ export let siteId: string;
86
+ }
80
87
  export declare namespace lang {
81
88
  export let available: string | string[];
82
89
  let _default: string;
@@ -200,13 +207,13 @@ export declare namespace files {
200
207
  let originalsPathPrefix: string;
201
208
  }
202
209
  export declare namespace dbProfiler {
203
- let enable_2: boolean;
204
- export { enable_2 as enable };
210
+ let enable_3: boolean;
211
+ export { enable_3 as enable };
205
212
  }
206
213
  export declare namespace elasticSearch {
207
214
  export let indexPrefix: string;
208
- let url_1: string;
209
- export { url_1 as url };
215
+ let url_2: string;
216
+ export { url_2 as url };
210
217
  }
211
218
  export declare let pluginsPath: string | any[];
212
219
  export { _export as export, _import as import };
@@ -32,6 +32,7 @@ export interface IConfig {
32
32
  elasticSearch: IElasticSearchConfig;
33
33
  pluginsPath: string[];
34
34
  bugsnag: IBugsnag;
35
+ matomo: IMatomo;
35
36
  }
36
37
  export declare enum CoreMode {
37
38
  SERVER = "server",
@@ -232,3 +233,8 @@ export interface IBugsnag {
232
233
  appType?: string;
233
234
  releaseStage?: string;
234
235
  }
236
+ export interface IMatomo {
237
+ enable: boolean;
238
+ url?: string;
239
+ siteId?: string;
240
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aristid/leav-types",
3
- "version": "1.3.0-1cddc9d2",
3
+ "version": "1.3.0-2e4cb2a7",
4
4
  "description": "Shared Leav types",
5
5
  "scripts": {
6
6
  "tscheck": "",