46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import { Feature } from 'oak-frontend-base/es/types/Feature';
|
|
import { EntityDict } from '../oak-app-domain';
|
|
import { Cache } from 'oak-frontend-base/es/features/cache';
|
|
import { LocalStorage } from 'oak-frontend-base/es/features/localStorage';
|
|
export declare class UserWechatPublicTag<ED extends EntityDict> extends Feature {
|
|
private cache;
|
|
private storage;
|
|
constructor(cache: Cache<ED>, storage: LocalStorage);
|
|
getTagUsers(params: {
|
|
applicationId: string;
|
|
tagId: number;
|
|
}): Promise<any>;
|
|
batchtagging(params: {
|
|
applicationId: string;
|
|
openIdList: string[];
|
|
tagId: number;
|
|
}): Promise<any>;
|
|
batchuntagging(params: {
|
|
applicationId: string;
|
|
openIdList: string[];
|
|
tagId: number;
|
|
}): Promise<any>;
|
|
getUserTags(params: {
|
|
applicationId: string;
|
|
openId: string;
|
|
}): Promise<any>;
|
|
getUsers(params: {
|
|
applicationId: string;
|
|
nextOpenId: string;
|
|
}): Promise<any>;
|
|
tagging(params: {
|
|
applicationId: string;
|
|
openId: string;
|
|
tagIdList: number[];
|
|
}): Promise<any>;
|
|
syncToLocale(params: {
|
|
applicationId: string;
|
|
openId: string;
|
|
}): Promise<any>;
|
|
syncToWechat(params: {
|
|
applicationId: string;
|
|
id: string;
|
|
openId: string;
|
|
}): Promise<any>;
|
|
}
|