@freelog/tools-lib 0.1.128 → 0.1.129

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.
@@ -62,4 +62,10 @@ interface LotteryShowParamsType {
62
62
  limitDate: string;
63
63
  }
64
64
  export declare function lotteryShow(params: LotteryShowParamsType): Promise<any>;
65
+ declare type ListInviteFriendInfosParamsType = {
66
+ userId: number;
67
+ username: string;
68
+ createDate: string;
69
+ }[];
70
+ export declare function listInviteFriendInfos(params: ListInviteFriendInfosParamsType): Promise<any>;
65
71
  export {};
@@ -45,4 +45,12 @@ interface TransitionRecordsParamsType {
45
45
  isTranslate?: 0 | 1;
46
46
  }
47
47
  export declare function transitionRecords({ contractId, ...params }: TransitionRecordsParamsType): Promise<any>;
48
+ interface ContractsSignCountParamsType {
49
+ objectIds: string | number;
50
+ objectType: 1 | 2 | 3 | 4 | 5;
51
+ subjectType: 1 | 2 | 3;
52
+ startDate?: string;
53
+ endDate?: string;
54
+ }
55
+ export declare function contractsSignCount(params: ContractsSignCountParamsType): Promise<any>;
48
56
  export {};
@@ -13,6 +13,7 @@ import * as Activity from './activities';
13
13
  import * as TestQualification from './testQualifications';
14
14
  import * as Statistic from './statistics';
15
15
  import * as I18n from './i18n';
16
+ import * as Policy from './policies';
16
17
  import * as recombination from './recombinations';
17
18
  declare const FServiceAPI: {
18
19
  Node: typeof Node;
@@ -30,6 +31,7 @@ declare const FServiceAPI: {
30
31
  TestQualification: typeof TestQualification;
31
32
  Statistic: typeof Statistic;
32
33
  I18n: typeof I18n;
34
+ Policy: typeof Policy;
33
35
  recombination: typeof recombination;
34
36
  };
35
37
  export default FServiceAPI;
@@ -12,4 +12,7 @@ interface PoliciesListParamsType {
12
12
  projection?: string;
13
13
  }
14
14
  export declare function policiesList(params: PoliciesListParamsType): Promise<any>;
15
+ interface PolicyTemplatesParamsType {
16
+ }
17
+ export declare function policyTemplates(params?: PolicyTemplatesParamsType): Promise<any>;
15
18
  export {};