@freelog/tools-lib 0.1.183 → 0.1.185
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/dist/service-API/policies.d.ts +9 -0
- package/dist/service-API/resources.d.ts +1 -1
- package/dist/tools-lib.cjs.development.js +502 -696
- package/dist/tools-lib.cjs.development.js.map +1 -1
- package/dist/tools-lib.cjs.production.min.js +1 -1
- package/dist/tools-lib.cjs.production.min.js.map +1 -1
- package/dist/tools-lib.esm.js +502 -696
- package/dist/tools-lib.esm.js.map +1 -1
- package/dist/utils/linkTo.d.ts +8 -1
- package/package.json +1 -1
- package/src/i18n/I18nNext.ts +156 -156
- package/src/service-API/contracts.ts +157 -157
- package/src/service-API/policies.ts +93 -75
- package/src/service-API/presentables.ts +605 -605
- package/src/service-API/resources.ts +1379 -1379
- package/src/service-API/storages.ts +418 -418
- package/src/service-API/user.ts +324 -324
- package/src/utils/linkTo.ts +683 -666
|
@@ -15,6 +15,15 @@ export declare function policiesList(params: PoliciesListParamsType): Promise<an
|
|
|
15
15
|
interface PolicyTemplatesParamsType {
|
|
16
16
|
}
|
|
17
17
|
export declare function policyTemplates(params?: PolicyTemplatesParamsType): Promise<any>;
|
|
18
|
+
interface PolicyReCompileParamsType {
|
|
19
|
+
_id?: string;
|
|
20
|
+
contract?: string;
|
|
21
|
+
fillArgs: {
|
|
22
|
+
name: string;
|
|
23
|
+
value: string;
|
|
24
|
+
}[];
|
|
25
|
+
}
|
|
26
|
+
export declare function policyReCompile(data: PolicyReCompileParamsType): Promise<any>;
|
|
18
27
|
interface PolicyTranslationParamsType {
|
|
19
28
|
contract: string;
|
|
20
29
|
}
|
|
@@ -343,7 +343,7 @@ interface ResourceTypesParamsType {
|
|
|
343
343
|
}
|
|
344
344
|
export declare function resourceTypes({ ...params }?: ResourceTypesParamsType): Promise<any>;
|
|
345
345
|
interface ListSimpleByParentCodeParamsType {
|
|
346
|
-
parentCode
|
|
346
|
+
parentCode?: string;
|
|
347
347
|
name?: string;
|
|
348
348
|
category?: 1 | 2;
|
|
349
349
|
excludeParentCode?: boolean;
|