@creatio/base 0.813.0 → 0.814.0
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/CHANGELOG.md +2 -0
- package/esm2020/lib/internal/enums/index.mjs +2 -1
- package/esm2020/lib/internal/enums/platform-apis.enum.mjs +11 -0
- package/esm2020/lib/public/enums/data-schema-type.enum.mjs +2 -1
- package/esm2020/lib/public/esq/data-model/enums/admin-unit-role-sources.enum.mjs +36 -0
- package/esm2020/lib/public/esq/data-model/enums/index.mjs +2 -2
- package/esm2020/lib/public/esq/data-model/queries/entity-schema-query.mjs +3 -2
- package/esm2020/lib/public/models/request/request-registration-config.model.mjs +1 -1
- package/esm2020/lib/public/services/model/data-source-parameter.mjs +2 -1
- package/fesm2015/creatio-base.mjs +56 -7
- package/fesm2015/creatio-base.mjs.map +1 -1
- package/fesm2020/creatio-base.mjs +56 -6
- package/fesm2020/creatio-base.mjs.map +1 -1
- package/index.d.ts +54 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2,6 +2,41 @@ declare interface BaseDataSourceFunctionConfig {
|
|
|
2
2
|
type: ɵFunctionStringType;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
+
export declare enum eAdminUnitRoleSources {
|
|
6
|
+
/**
|
|
7
|
+
* Empty value.
|
|
8
|
+
*/
|
|
9
|
+
None = 0,
|
|
10
|
+
/**
|
|
11
|
+
* Self.
|
|
12
|
+
*/
|
|
13
|
+
Self = 1,
|
|
14
|
+
/**
|
|
15
|
+
* Explicit entry into role.
|
|
16
|
+
*/
|
|
17
|
+
ExplicitEntry = 2,
|
|
18
|
+
/**
|
|
19
|
+
* Delegated role.
|
|
20
|
+
*/
|
|
21
|
+
Delegated = 4,
|
|
22
|
+
/**
|
|
23
|
+
* Gets functional role from organizational role.
|
|
24
|
+
*/
|
|
25
|
+
FuncRoleFromOrgRole = 8,
|
|
26
|
+
/**
|
|
27
|
+
* Gets role up hierarchy from role.
|
|
28
|
+
*/
|
|
29
|
+
UpHierarchy = 16,
|
|
30
|
+
/**
|
|
31
|
+
* Gets role as a manager.
|
|
32
|
+
*/
|
|
33
|
+
AsManager = 32,
|
|
34
|
+
/**
|
|
35
|
+
* Gets all roles.
|
|
36
|
+
*/
|
|
37
|
+
All = 63
|
|
38
|
+
}
|
|
39
|
+
|
|
5
40
|
/* Excluded from this release type: LookupMode */
|
|
6
41
|
|
|
7
42
|
/* Excluded from this release type: UsedColumn */
|
|
@@ -669,7 +704,8 @@ export declare interface ɵDataSchemaAttributeValidatorConfig {
|
|
|
669
704
|
*/
|
|
670
705
|
export declare enum ɵDataSchemaType {
|
|
671
706
|
Entity = "Entity",
|
|
672
|
-
ClientUnit = "ClientUnit"
|
|
707
|
+
ClientUnit = "ClientUnit",
|
|
708
|
+
Intent = "Intent"
|
|
673
709
|
}
|
|
674
710
|
|
|
675
711
|
/**
|
|
@@ -1018,6 +1054,10 @@ export declare class ɵEntitySchemaQuery extends ɵBaseFilterableQuery {
|
|
|
1018
1054
|
};
|
|
1019
1055
|
useLocalization: boolean;
|
|
1020
1056
|
useRecordDeactivation: boolean;
|
|
1057
|
+
/**
|
|
1058
|
+
* Bit mask that indicates which role sources will be considered when checking record rights.
|
|
1059
|
+
*/
|
|
1060
|
+
adminUnitRoleSources?: eAdminUnitRoleSources;
|
|
1021
1061
|
constructor(rootSchemaName: string);
|
|
1022
1062
|
private _internalAddColumn;
|
|
1023
1063
|
private _getIsPageable;
|
|
@@ -1612,6 +1652,7 @@ export declare enum ɵModelInPageAction {
|
|
|
1612
1652
|
*/
|
|
1613
1653
|
export declare enum ɵModelParameterType {
|
|
1614
1654
|
PrimaryColumnValue = "primaryColumnValue",
|
|
1655
|
+
ColumnValue = "columnValue",
|
|
1615
1656
|
Filter = "filter",
|
|
1616
1657
|
PrimaryDisplayValueFilter = "primaryDisplayValueFilter",
|
|
1617
1658
|
Empty = "empty",
|
|
@@ -1665,6 +1706,16 @@ export declare const ɵparserMock: {
|
|
|
1665
1706
|
clone: () => undefined;
|
|
1666
1707
|
};
|
|
1667
1708
|
|
|
1709
|
+
/**
|
|
1710
|
+
* Available platform APIs
|
|
1711
|
+
*/
|
|
1712
|
+
export declare enum ɵPlatformAPIs {
|
|
1713
|
+
/**
|
|
1714
|
+
* Selection metadata API.
|
|
1715
|
+
*/
|
|
1716
|
+
Selection = "selection"
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1668
1719
|
/**
|
|
1669
1720
|
* @public
|
|
1670
1721
|
*/
|
|
@@ -1787,6 +1838,7 @@ export declare interface ɵRequestHandler<TRequest = ɵBaseRequest, TResult = un
|
|
|
1787
1838
|
* @property {string} title - Title of request.
|
|
1788
1839
|
* @property {string} propertiesPanelComponentTypeName - Type of properties panel
|
|
1789
1840
|
* @property {number} position - Position of the request
|
|
1841
|
+
* @property {ɵPlatformAPIs} compatibleAPIs - Compatible platform APIs
|
|
1790
1842
|
*/
|
|
1791
1843
|
export declare interface ɵRequestRegistrationConfig {
|
|
1792
1844
|
/**
|
|
@@ -1802,6 +1854,7 @@ export declare interface ɵRequestRegistrationConfig {
|
|
|
1802
1854
|
/* Excluded from this release type: title */
|
|
1803
1855
|
/* Excluded from this release type: propertiesPanelComponentTypeName */
|
|
1804
1856
|
/* Excluded from this release type: position */
|
|
1857
|
+
/* Excluded from this release type: compatibleAPIs */
|
|
1805
1858
|
}
|
|
1806
1859
|
|
|
1807
1860
|
/**
|