@aristid/leav-types 1.3.0-4cc0a7af → 1.3.0-4e2e9904
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.
|
@@ -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
|
/**
|