@aristid/leav-types 1.3.0-a6c06b99 → 1.3.0-aa625ed7
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.
|
@@ -75,6 +75,14 @@ export declare namespace bugsnag {
|
|
|
75
75
|
export let apiKey: string;
|
|
76
76
|
export let appVersion: string;
|
|
77
77
|
export let appType: string;
|
|
78
|
+
export let releaseStage: string;
|
|
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;
|
|
78
86
|
}
|
|
79
87
|
export declare namespace lang {
|
|
80
88
|
export let available: string | string[];
|
|
@@ -199,13 +207,13 @@ export declare namespace files {
|
|
|
199
207
|
let originalsPathPrefix: string;
|
|
200
208
|
}
|
|
201
209
|
export declare namespace dbProfiler {
|
|
202
|
-
let
|
|
203
|
-
export {
|
|
210
|
+
let enable_3: boolean;
|
|
211
|
+
export { enable_3 as enable };
|
|
204
212
|
}
|
|
205
213
|
export declare namespace elasticSearch {
|
|
206
214
|
export let indexPrefix: string;
|
|
207
|
-
let
|
|
208
|
-
export {
|
|
215
|
+
let url_2: string;
|
|
216
|
+
export { url_2 as url };
|
|
209
217
|
}
|
|
210
218
|
export declare let pluginsPath: string | any[];
|
|
211
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",
|
|
@@ -230,4 +231,10 @@ export interface IBugsnag {
|
|
|
230
231
|
apiKey?: string;
|
|
231
232
|
appVersion?: string;
|
|
232
233
|
appType?: string;
|
|
234
|
+
releaseStage?: string;
|
|
235
|
+
}
|
|
236
|
+
export interface IMatomo {
|
|
237
|
+
enable: boolean;
|
|
238
|
+
url?: string;
|
|
239
|
+
siteId?: string;
|
|
233
240
|
}
|
|
@@ -20,6 +20,7 @@ export declare enum LibraryPermissionsActions {
|
|
|
20
20
|
}
|
|
21
21
|
export declare enum RecordPermissionsActions {
|
|
22
22
|
ACCESS_RECORD = "access_record",
|
|
23
|
+
ACCESS_RECORD_BY_DEFAULT = "access_record_by_default",
|
|
23
24
|
CREATE_RECORD = "create_record",
|
|
24
25
|
EDIT_RECORD = "edit_record",
|
|
25
26
|
DELETE_RECORD = "delete_record"
|
|
@@ -39,11 +39,13 @@ export interface IRecordDomain {
|
|
|
39
39
|
library: string;
|
|
40
40
|
recordId: string;
|
|
41
41
|
formId?: string;
|
|
42
|
+
skipVerifyRequiredAttributes?: boolean;
|
|
42
43
|
ctx: IQueryInfos;
|
|
43
44
|
}): Promise<ICreateRecordResult>;
|
|
44
45
|
createRecord(params: {
|
|
45
46
|
library: string;
|
|
46
47
|
values?: ISaveValue[];
|
|
48
|
+
verifyRequiredAttributes?: boolean;
|
|
47
49
|
ctx: IQueryInfos;
|
|
48
50
|
}): Promise<ICreateRecordResult>;
|
|
49
51
|
/**
|