@be-link/tfs-cli-nodejs 0.0.243 → 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[];
|
|
@@ -204,6 +218,7 @@ export declare namespace StrawberryFeedback {
|
|
|
204
218
|
groupType: 'SELF' | 'MIXED';
|
|
205
219
|
travelerCount: number;
|
|
206
220
|
hasButler: boolean;
|
|
221
|
+
butlerName?: string;
|
|
207
222
|
configSource: 'DEFAULT' | 'MANUAL';
|
|
208
223
|
}
|
|
209
224
|
interface queryButlerConfigList {
|