@be-link/ecs-cli-nodejs 0.0.3 → 0.0.6
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/ecs/modules/ecsMember/service.d.ts +11 -0
- package/ecs/modules/ecsMember/service.js +21 -0
- package/ecs/modules/ecsMember/types.d.ts +12 -0
- package/ecs/modules/ecsMember/types.js +2 -0
- package/ecs/modules/group/service.d.ts +16 -0
- package/ecs/modules/group/service.js +42 -0
- package/ecs/modules/group/types.d.ts +104 -0
- package/ecs/modules/group/types.js +2 -0
- package/ecs/modules/userBindRelationJob/service.d.ts +10 -0
- package/ecs/modules/userBindRelationJob/service.js +24 -0
- package/ecs/modules/userBindRelationJob/types.d.ts +11 -0
- package/ecs/modules/userBindRelationJob/types.js +2 -0
- package/ecs/modules/vzanData/service.d.ts +27 -0
- package/ecs/modules/vzanData/service.js +27 -0
- package/ecs/modules/vzanData/types.d.ts +27 -0
- package/ecs/modules/vzanDataJob/service.d.ts +4 -1
- package/ecs/modules/vzanDataJob/service.js +2 -2
- package/ecs/modules/vzanDataJob/types.d.ts +4 -1
- package/package.json +11 -12
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import BaseService from '../service';
|
|
2
|
+
import { Service } from './types';
|
|
3
|
+
declare class EcsMemberService extends BaseService implements Service.EcsMemberController {
|
|
4
|
+
protected prefixUrl: string;
|
|
5
|
+
exchangeBelinkMember(): Promise<void>;
|
|
6
|
+
syncFeiShuEcsMember(request: {
|
|
7
|
+
vzanUserId: string;
|
|
8
|
+
}): Promise<void>;
|
|
9
|
+
}
|
|
10
|
+
declare const ecsMemberService: EcsMemberService;
|
|
11
|
+
export default ecsMemberService;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const service_1 = __importDefault(require("../service"));
|
|
7
|
+
const http_1 = require("../../http");
|
|
8
|
+
class EcsMemberService extends service_1.default {
|
|
9
|
+
constructor() {
|
|
10
|
+
super(...arguments);
|
|
11
|
+
this.prefixUrl = '/ecs-member';
|
|
12
|
+
}
|
|
13
|
+
exchangeBelinkMember() {
|
|
14
|
+
return (0, http_1.callApi)(this.getApiUrl(this.exchangeBelinkMember));
|
|
15
|
+
}
|
|
16
|
+
syncFeiShuEcsMember(request) {
|
|
17
|
+
return (0, http_1.callApi)(this.getApiUrl(this.syncFeiShuEcsMember), request);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
const ecsMemberService = new EcsMemberService();
|
|
21
|
+
exports.default = ecsMemberService;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import BaseService from '../service';
|
|
2
|
+
import { Service } from './types';
|
|
3
|
+
declare class GroupService extends BaseService implements Service.GroupController {
|
|
4
|
+
protected prefixUrl: string;
|
|
5
|
+
getBotUserList(): Promise<Service.Response.IBotUser[]>;
|
|
6
|
+
getGroupDetail(request: Service.Request.IGroupDetail): Promise<Service.Response.IGroupDetail>;
|
|
7
|
+
checkMergeGroupTask(request: Service.Request.ICheckMergeGroupTask): Promise<Service.Response.ICheckMergeGroupTask>;
|
|
8
|
+
addMergeGroupTask(request: Service.Request.IAddMergeGroupTask): Promise<void>;
|
|
9
|
+
updateMergeGroupTaskStatus(request: Service.Request.IUpdateMergeGroupTaskStatus): Promise<void>;
|
|
10
|
+
mergeGroupTaskList(request: Service.Request.IMergeGroupTaskList): Promise<Service.Response.IMergeGroupTaskList>;
|
|
11
|
+
getMergeGroupTask(request: Service.Request.IGetMergeGroupTask): Promise<Service.Response.IGetMergeGroupTask>;
|
|
12
|
+
getMergeGroupDetail(request: Service.Request.IGetMergeGroupDetail): Promise<Service.Response.IGetMergeGroupDetail>;
|
|
13
|
+
jobExecMergeGroupTask(): Promise<void>;
|
|
14
|
+
}
|
|
15
|
+
declare const groupService: GroupService;
|
|
16
|
+
export default groupService;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const service_1 = __importDefault(require("../service"));
|
|
7
|
+
const http_1 = require("../../http");
|
|
8
|
+
class GroupService extends service_1.default {
|
|
9
|
+
constructor() {
|
|
10
|
+
super(...arguments);
|
|
11
|
+
this.prefixUrl = '/group';
|
|
12
|
+
}
|
|
13
|
+
getBotUserList() {
|
|
14
|
+
return (0, http_1.callApi)(this.getApiUrl(this.getBotUserList));
|
|
15
|
+
}
|
|
16
|
+
getGroupDetail(request) {
|
|
17
|
+
return (0, http_1.callApi)(this.getApiUrl(this.getGroupDetail), request);
|
|
18
|
+
}
|
|
19
|
+
checkMergeGroupTask(request) {
|
|
20
|
+
return (0, http_1.callApi)(this.getApiUrl(this.checkMergeGroupTask), request);
|
|
21
|
+
}
|
|
22
|
+
addMergeGroupTask(request) {
|
|
23
|
+
return (0, http_1.callApi)(this.getApiUrl(this.addMergeGroupTask), request);
|
|
24
|
+
}
|
|
25
|
+
updateMergeGroupTaskStatus(request) {
|
|
26
|
+
return (0, http_1.callApi)(this.getApiUrl(this.updateMergeGroupTaskStatus), request);
|
|
27
|
+
}
|
|
28
|
+
mergeGroupTaskList(request) {
|
|
29
|
+
return (0, http_1.callApi)(this.getApiUrl(this.mergeGroupTaskList), request);
|
|
30
|
+
}
|
|
31
|
+
getMergeGroupTask(request) {
|
|
32
|
+
return (0, http_1.callApi)(this.getApiUrl(this.getMergeGroupTask), request);
|
|
33
|
+
}
|
|
34
|
+
getMergeGroupDetail(request) {
|
|
35
|
+
return (0, http_1.callApi)(this.getApiUrl(this.getMergeGroupDetail), request);
|
|
36
|
+
}
|
|
37
|
+
jobExecMergeGroupTask() {
|
|
38
|
+
return (0, http_1.callApi)(this.getApiUrl(this.jobExecMergeGroupTask));
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
const groupService = new GroupService();
|
|
42
|
+
exports.default = groupService;
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
export declare namespace Service {
|
|
2
|
+
interface IGroup {
|
|
3
|
+
groupId?: string;
|
|
4
|
+
groupName?: string;
|
|
5
|
+
memberCount?: number;
|
|
6
|
+
fileUrl?: string;
|
|
7
|
+
}
|
|
8
|
+
namespace Request {
|
|
9
|
+
interface IGroupDetail {
|
|
10
|
+
groupName?: string;
|
|
11
|
+
userId?: string;
|
|
12
|
+
pageIndex: number;
|
|
13
|
+
pageSize: number;
|
|
14
|
+
}
|
|
15
|
+
interface ICheckMergeGroupTask {
|
|
16
|
+
botUserId: string;
|
|
17
|
+
sourceGroupIds?: string[];
|
|
18
|
+
targetGroupId: string;
|
|
19
|
+
fileUrl?: string;
|
|
20
|
+
}
|
|
21
|
+
interface IAddMergeGroupTask {
|
|
22
|
+
taskName: string;
|
|
23
|
+
botUserId: string;
|
|
24
|
+
sourceGroup: IGroup[];
|
|
25
|
+
targetGroup: IGroup;
|
|
26
|
+
content?: string;
|
|
27
|
+
creator: string;
|
|
28
|
+
}
|
|
29
|
+
interface IUpdateMergeGroupTaskStatus {
|
|
30
|
+
taskId: string;
|
|
31
|
+
status: 'PAUSE' | 'PENDING';
|
|
32
|
+
}
|
|
33
|
+
interface IMergeGroupTaskList {
|
|
34
|
+
pageIndex: number;
|
|
35
|
+
pageSize: number;
|
|
36
|
+
}
|
|
37
|
+
interface IGetMergeGroupTask {
|
|
38
|
+
taskId: string;
|
|
39
|
+
}
|
|
40
|
+
interface IGetMergeGroupDetail {
|
|
41
|
+
taskId: string;
|
|
42
|
+
pageIndex: number;
|
|
43
|
+
pageSize: number;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
namespace Response {
|
|
47
|
+
interface IBotUser {
|
|
48
|
+
juziId: string;
|
|
49
|
+
externalUserId: string;
|
|
50
|
+
status: number;
|
|
51
|
+
nickname: string;
|
|
52
|
+
avatar: string;
|
|
53
|
+
}
|
|
54
|
+
interface IGroupDetail {
|
|
55
|
+
totalCount: number;
|
|
56
|
+
list: {
|
|
57
|
+
chatId: string;
|
|
58
|
+
name: string;
|
|
59
|
+
owner?: string;
|
|
60
|
+
memberCount: number;
|
|
61
|
+
}[];
|
|
62
|
+
}
|
|
63
|
+
interface ICheckMergeGroupTask {
|
|
64
|
+
sendCount: number;
|
|
65
|
+
}
|
|
66
|
+
interface IMergeGroupTaskList {
|
|
67
|
+
totalCount: number;
|
|
68
|
+
list: {
|
|
69
|
+
taskId: string;
|
|
70
|
+
taskName: string;
|
|
71
|
+
creator: string;
|
|
72
|
+
createdAt: string;
|
|
73
|
+
completedAt: string;
|
|
74
|
+
predictionCount: number;
|
|
75
|
+
sendedCount: number;
|
|
76
|
+
joinGroupCount: number;
|
|
77
|
+
}[];
|
|
78
|
+
}
|
|
79
|
+
interface IGetMergeGroupTask extends Request.IAddMergeGroupTask {
|
|
80
|
+
taskId: string;
|
|
81
|
+
botUser: IBotUser;
|
|
82
|
+
}
|
|
83
|
+
interface IGetMergeGroupDetail {
|
|
84
|
+
totalCount: number;
|
|
85
|
+
list: {
|
|
86
|
+
userId: string;
|
|
87
|
+
status: string;
|
|
88
|
+
errmsg: string;
|
|
89
|
+
inGroup: string;
|
|
90
|
+
}[];
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
interface GroupController {
|
|
94
|
+
getBotUserList(): Promise<Response.IBotUser[]>;
|
|
95
|
+
getGroupDetail(request: Request.IGroupDetail): Promise<Response.IGroupDetail>;
|
|
96
|
+
checkMergeGroupTask(request: Request.ICheckMergeGroupTask): Promise<Response.ICheckMergeGroupTask>;
|
|
97
|
+
addMergeGroupTask(request: Request.IAddMergeGroupTask): Promise<void>;
|
|
98
|
+
updateMergeGroupTaskStatus(request: Request.IUpdateMergeGroupTaskStatus): Promise<void>;
|
|
99
|
+
mergeGroupTaskList(request: Request.IMergeGroupTaskList): Promise<Response.IMergeGroupTaskList>;
|
|
100
|
+
getMergeGroupTask(request: Request.IGetMergeGroupTask): Promise<Response.IGetMergeGroupTask>;
|
|
101
|
+
getMergeGroupDetail(request: Request.IGetMergeGroupDetail): Promise<Response.IGetMergeGroupDetail>;
|
|
102
|
+
jobExecMergeGroupTask(): Promise<void>;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import BaseService from '../service';
|
|
2
|
+
import { Service } from './types';
|
|
3
|
+
declare class UserBindRelationJobService extends BaseService implements Service.UserBindRelationControllerJob {
|
|
4
|
+
protected prefixUrl: string;
|
|
5
|
+
syncJuziTrusteeshipAccount(): Promise<void>;
|
|
6
|
+
compensateJuziRelation(): Promise<void>;
|
|
7
|
+
handleWeworkUserAddGroupAfter(): Promise<void>;
|
|
8
|
+
}
|
|
9
|
+
declare const userBindRelationJobService: UserBindRelationJobService;
|
|
10
|
+
export default userBindRelationJobService;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const service_1 = __importDefault(require("../service"));
|
|
7
|
+
const http_1 = require("../../http");
|
|
8
|
+
class UserBindRelationJobService extends service_1.default {
|
|
9
|
+
constructor() {
|
|
10
|
+
super(...arguments);
|
|
11
|
+
this.prefixUrl = '/user-bind-relation-job';
|
|
12
|
+
}
|
|
13
|
+
syncJuziTrusteeshipAccount() {
|
|
14
|
+
return (0, http_1.callApi)(this.getApiUrl(this.syncJuziTrusteeshipAccount));
|
|
15
|
+
}
|
|
16
|
+
compensateJuziRelation() {
|
|
17
|
+
return (0, http_1.callApi)(this.getApiUrl(this.compensateJuziRelation));
|
|
18
|
+
}
|
|
19
|
+
handleWeworkUserAddGroupAfter() {
|
|
20
|
+
return (0, http_1.callApi)(this.getApiUrl(this.handleWeworkUserAddGroupAfter));
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
const userBindRelationJobService = new UserBindRelationJobService();
|
|
24
|
+
exports.default = userBindRelationJobService;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare namespace Service {
|
|
2
|
+
namespace Request {
|
|
3
|
+
}
|
|
4
|
+
namespace Response {
|
|
5
|
+
}
|
|
6
|
+
interface UserBindRelationControllerJob {
|
|
7
|
+
syncJuziTrusteeshipAccount(): Promise<void>;
|
|
8
|
+
compensateJuziRelation(): Promise<void>;
|
|
9
|
+
handleWeworkUserAddGroupAfter(): Promise<void>;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -7,6 +7,33 @@ declare class VzanDataService extends BaseService implements Service.VzanDataCon
|
|
|
7
7
|
updateUserPoints(param: Service.Request.updateUserPoints): Promise<void>;
|
|
8
8
|
queryVzanStoreConfig(): Promise<Service.Response.queryVzanStoreConfig>;
|
|
9
9
|
queryUserStoreIds(param: Service.Request.queryUserStoreIds): Promise<Service.Response.queryUserStoreIds>;
|
|
10
|
+
syncVzanUserInfo(param: {
|
|
11
|
+
pageIndex: number;
|
|
12
|
+
}): Promise<void>;
|
|
13
|
+
resetVzanUserPoints(param: {
|
|
14
|
+
pageIndex: number;
|
|
15
|
+
}): Promise<void>;
|
|
16
|
+
notifyExpireVzanUserPoints(param: {
|
|
17
|
+
targetPoints: number;
|
|
18
|
+
isEqual: number;
|
|
19
|
+
isSend: number;
|
|
20
|
+
isFeishu: number;
|
|
21
|
+
}): Promise<void>;
|
|
22
|
+
syncVzanUserPointsExpireRecord(request: {
|
|
23
|
+
beginTime: number;
|
|
24
|
+
}): Promise<void>;
|
|
25
|
+
syncVzanUserPointsChange(request: {
|
|
26
|
+
pageIndex: number;
|
|
27
|
+
beginTime: string;
|
|
28
|
+
}): Promise<void>;
|
|
29
|
+
syncFeiShuUserPoints(request: {
|
|
30
|
+
vzanUserId: string;
|
|
31
|
+
}): Promise<void>;
|
|
32
|
+
syncFeiShuUserInfo(request: {
|
|
33
|
+
vzanUserId: string;
|
|
34
|
+
}): Promise<void>;
|
|
35
|
+
patrolVzanTopicData(): Promise<void>;
|
|
36
|
+
syncFeiShuUserWatchAndOrderInfo(): Promise<void>;
|
|
10
37
|
}
|
|
11
38
|
declare const vzanDataService: VzanDataService;
|
|
12
39
|
export default vzanDataService;
|
|
@@ -25,6 +25,33 @@ class VzanDataService extends service_1.default {
|
|
|
25
25
|
queryUserStoreIds(param) {
|
|
26
26
|
return (0, http_1.callApi)(this.getApiUrl(this.queryUserStoreIds), param);
|
|
27
27
|
}
|
|
28
|
+
syncVzanUserInfo(param) {
|
|
29
|
+
return (0, http_1.callApi)(this.getApiUrl(this.syncVzanUserInfo), param);
|
|
30
|
+
}
|
|
31
|
+
resetVzanUserPoints(param) {
|
|
32
|
+
return (0, http_1.callApi)(this.getApiUrl(this.resetVzanUserPoints), param);
|
|
33
|
+
}
|
|
34
|
+
notifyExpireVzanUserPoints(param) {
|
|
35
|
+
return (0, http_1.callApi)(this.getApiUrl(this.notifyExpireVzanUserPoints), param);
|
|
36
|
+
}
|
|
37
|
+
syncVzanUserPointsExpireRecord(request) {
|
|
38
|
+
return (0, http_1.callApi)(this.getApiUrl(this.syncVzanUserPointsExpireRecord), request);
|
|
39
|
+
}
|
|
40
|
+
syncVzanUserPointsChange(request) {
|
|
41
|
+
return (0, http_1.callApi)(this.getApiUrl(this.syncVzanUserPointsChange), request);
|
|
42
|
+
}
|
|
43
|
+
syncFeiShuUserPoints(request) {
|
|
44
|
+
return (0, http_1.callApi)(this.getApiUrl(this.syncFeiShuUserPoints), request);
|
|
45
|
+
}
|
|
46
|
+
syncFeiShuUserInfo(request) {
|
|
47
|
+
return (0, http_1.callApi)(this.getApiUrl(this.syncFeiShuUserInfo), request);
|
|
48
|
+
}
|
|
49
|
+
patrolVzanTopicData() {
|
|
50
|
+
return (0, http_1.callApi)(this.getApiUrl(this.patrolVzanTopicData));
|
|
51
|
+
}
|
|
52
|
+
syncFeiShuUserWatchAndOrderInfo() {
|
|
53
|
+
return (0, http_1.callApi)(this.getApiUrl(this.syncFeiShuUserWatchAndOrderInfo));
|
|
54
|
+
}
|
|
28
55
|
}
|
|
29
56
|
const vzanDataService = new VzanDataService();
|
|
30
57
|
exports.default = vzanDataService;
|
|
@@ -56,5 +56,32 @@ export declare namespace Service {
|
|
|
56
56
|
updateUserPoints(param: Request.updateUserPoints): Promise<void>;
|
|
57
57
|
queryVzanStoreConfig(): Promise<Response.queryVzanStoreConfig>;
|
|
58
58
|
queryUserStoreIds(param: Request.queryUserStoreIds): Promise<Response.queryUserStoreIds>;
|
|
59
|
+
syncVzanUserInfo(param: {
|
|
60
|
+
pageIndex: number;
|
|
61
|
+
}): Promise<void>;
|
|
62
|
+
resetVzanUserPoints(param: {
|
|
63
|
+
pageIndex: number;
|
|
64
|
+
}): Promise<void>;
|
|
65
|
+
notifyExpireVzanUserPoints(param: {
|
|
66
|
+
targetPoints: number;
|
|
67
|
+
isEqual: number;
|
|
68
|
+
isSend: number;
|
|
69
|
+
isFeishu: number;
|
|
70
|
+
}): Promise<void>;
|
|
71
|
+
syncVzanUserPointsExpireRecord(request: {
|
|
72
|
+
beginTime: number;
|
|
73
|
+
}): Promise<void>;
|
|
74
|
+
syncVzanUserPointsChange(request: {
|
|
75
|
+
pageIndex: number;
|
|
76
|
+
beginTime: string;
|
|
77
|
+
}): Promise<void>;
|
|
78
|
+
syncFeiShuUserPoints(request: {
|
|
79
|
+
vzanUserId: string;
|
|
80
|
+
}): Promise<void>;
|
|
81
|
+
syncFeiShuUserInfo(request: {
|
|
82
|
+
vzanUserId: string;
|
|
83
|
+
}): Promise<void>;
|
|
84
|
+
patrolVzanTopicData(): Promise<void>;
|
|
85
|
+
syncFeiShuUserWatchAndOrderInfo(): Promise<void>;
|
|
59
86
|
}
|
|
60
87
|
}
|
|
@@ -5,7 +5,10 @@ declare class VzanDataJobService extends BaseService implements Service.VzanData
|
|
|
5
5
|
pushVzanOrderDataToFeishu(): Promise<void>;
|
|
6
6
|
jobSyncVzanOrderData(): Promise<void>;
|
|
7
7
|
jobDelayRefreshVzanOrderData(): Promise<void>;
|
|
8
|
-
jobSyncVzanTopicWatchData(
|
|
8
|
+
jobSyncVzanTopicWatchData(param: {
|
|
9
|
+
startTime?: number;
|
|
10
|
+
endTime?: number;
|
|
11
|
+
}): Promise<void>;
|
|
9
12
|
jobSyncVzanTopicData(): Promise<void>;
|
|
10
13
|
jobSyncVzanStoreList(): Promise<void>;
|
|
11
14
|
jobSyncVzanAgentList(): Promise<void>;
|
|
@@ -19,8 +19,8 @@ class VzanDataJobService extends service_1.default {
|
|
|
19
19
|
jobDelayRefreshVzanOrderData() {
|
|
20
20
|
return (0, http_1.callApi)(this.getApiUrl(this.jobDelayRefreshVzanOrderData));
|
|
21
21
|
}
|
|
22
|
-
jobSyncVzanTopicWatchData() {
|
|
23
|
-
return (0, http_1.callApi)(this.getApiUrl(this.jobSyncVzanTopicWatchData));
|
|
22
|
+
jobSyncVzanTopicWatchData(param) {
|
|
23
|
+
return (0, http_1.callApi)(this.getApiUrl(this.jobSyncVzanTopicWatchData), param);
|
|
24
24
|
}
|
|
25
25
|
jobSyncVzanTopicData() {
|
|
26
26
|
return (0, http_1.callApi)(this.getApiUrl(this.jobSyncVzanTopicData));
|
|
@@ -6,7 +6,10 @@ export declare namespace Service {
|
|
|
6
6
|
jobSyncVzanOrderData(): Promise<void>;
|
|
7
7
|
/** 延迟刷新正向订单数据 */
|
|
8
8
|
jobDelayRefreshVzanOrderData(): Promise<void>;
|
|
9
|
-
jobSyncVzanTopicWatchData(
|
|
9
|
+
jobSyncVzanTopicWatchData(param: {
|
|
10
|
+
startTime?: number;
|
|
11
|
+
endTime?: number;
|
|
12
|
+
}): Promise<void>;
|
|
10
13
|
jobSyncVzanTopicData(): Promise<void>;
|
|
11
14
|
/** 同步飞书表门店数据 */
|
|
12
15
|
jobSyncVzanStoreList(): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,18 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@be-link/ecs-cli-nodejs",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "ECS服务Nodejs客户端",
|
|
5
5
|
"main": "index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"build": "rm -rf ./dist && tsc && cp package.json README.md ./dist/",
|
|
8
|
-
"test": "npx jest",
|
|
9
|
-
"gen-doc": "npx typedoc --options typedoc.json",
|
|
10
|
-
"update:major": "standard-version --release-as major",
|
|
11
|
-
"update:minor": "standard-version --release-as minor",
|
|
12
|
-
"update:patch": "standard-version --release-as patch",
|
|
13
|
-
"update:beta": "standard-version --prerelease beta",
|
|
14
|
-
"publish": "ts-node ./ci/index"
|
|
15
|
-
},
|
|
16
6
|
"repository": {
|
|
17
7
|
"type": "git",
|
|
18
8
|
"url": "git+https://github.com/snowmountain-top/ecs-cli-nodejs.git"
|
|
@@ -52,5 +42,14 @@
|
|
|
52
42
|
"vitality-meta": "1.0.215",
|
|
53
43
|
"@be-link/cs-cli-nodejs": "0.1.97",
|
|
54
44
|
"lodash": "4.17.21"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "rm -rf ./dist && tsc && cp package.json README.md ./dist/",
|
|
48
|
+
"test": "npx jest",
|
|
49
|
+
"gen-doc": "npx typedoc --options typedoc.json",
|
|
50
|
+
"update:major": "standard-version --release-as major",
|
|
51
|
+
"update:minor": "standard-version --release-as minor",
|
|
52
|
+
"update:patch": "standard-version --release-as patch",
|
|
53
|
+
"update:beta": "standard-version --prerelease beta"
|
|
55
54
|
}
|
|
56
|
-
}
|
|
55
|
+
}
|