@freelog/tools-lib 0.1.184 → 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.
@@ -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: string;
346
+ parentCode?: string;
347
347
  name?: string;
348
348
  category?: 1 | 2;
349
349
  excludeParentCode?: boolean;