@be-link/tfs-cli-nodejs 0.0.242 → 0.0.244
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/package.json
CHANGED
|
@@ -3,16 +3,27 @@ export declare namespace StrawberryFeedback {
|
|
|
3
3
|
interface queryPendingList {
|
|
4
4
|
unionId?: string;
|
|
5
5
|
orderId?: string;
|
|
6
|
+
itemId?: string;
|
|
7
|
+
fulfillAt?: number;
|
|
8
|
+
source?: string;
|
|
9
|
+
phoneNumber?: string;
|
|
6
10
|
pageIndex?: number;
|
|
7
11
|
pageSize?: number;
|
|
8
12
|
}
|
|
9
13
|
interface getQuestionnaire {
|
|
10
14
|
unionId?: string;
|
|
11
|
-
orderId
|
|
15
|
+
orderId?: string;
|
|
16
|
+
itemId?: string;
|
|
17
|
+
fulfillAt?: number;
|
|
18
|
+
source?: string;
|
|
12
19
|
}
|
|
13
20
|
interface submitFeedback {
|
|
14
21
|
unionId?: string;
|
|
15
|
-
orderId
|
|
22
|
+
orderId?: string;
|
|
23
|
+
itemId?: string;
|
|
24
|
+
fulfillAt?: number;
|
|
25
|
+
source?: string;
|
|
26
|
+
phoneNumber?: string;
|
|
16
27
|
questionVersion: string;
|
|
17
28
|
answers: {
|
|
18
29
|
questionCode: string;
|
|
@@ -56,6 +67,7 @@ export declare namespace StrawberryFeedback {
|
|
|
56
67
|
interface batchUpsertButlerConfig {
|
|
57
68
|
departureGroupIds: string[];
|
|
58
69
|
hasButler: boolean;
|
|
70
|
+
butlerName?: string;
|
|
59
71
|
}
|
|
60
72
|
}
|
|
61
73
|
namespace Response {
|
|
@@ -69,6 +81,8 @@ export declare namespace StrawberryFeedback {
|
|
|
69
81
|
feedbackDeadline: number;
|
|
70
82
|
status: 'PENDING' | 'SUBMITTED' | 'EXPIRED' | 'NOT_STARTED';
|
|
71
83
|
hasButler: boolean;
|
|
84
|
+
butlerName?: string;
|
|
85
|
+
matchedBy?: Array<'UNION_ID' | 'TRAVELER_PHONE' | 'SHARE_PARAM'>;
|
|
72
86
|
}
|
|
73
87
|
interface queryPendingList {
|
|
74
88
|
list: PendingFeedbackItem[];
|
|
@@ -110,6 +124,8 @@ export declare namespace StrawberryFeedback {
|
|
|
110
124
|
userId: string;
|
|
111
125
|
unionId: string;
|
|
112
126
|
userName: string;
|
|
127
|
+
fulfillAt: number;
|
|
128
|
+
fulfillEndAt: number;
|
|
113
129
|
redCount: number;
|
|
114
130
|
greenCount: number;
|
|
115
131
|
badCount: number;
|
|
@@ -118,6 +134,7 @@ export declare namespace StrawberryFeedback {
|
|
|
118
134
|
hasButler: boolean;
|
|
119
135
|
contentSummary: string;
|
|
120
136
|
imageCount: number;
|
|
137
|
+
imageUrls: string[];
|
|
121
138
|
submittedAt: number;
|
|
122
139
|
}
|
|
123
140
|
interface queryFeedbackList {
|
|
@@ -201,6 +218,7 @@ export declare namespace StrawberryFeedback {
|
|
|
201
218
|
groupType: 'SELF' | 'MIXED';
|
|
202
219
|
travelerCount: number;
|
|
203
220
|
hasButler: boolean;
|
|
221
|
+
butlerName?: string;
|
|
204
222
|
configSource: 'DEFAULT' | 'MANUAL';
|
|
205
223
|
}
|
|
206
224
|
interface queryButlerConfigList {
|