@asksuite/askflow-app-sdk 0.1.2 → 0.1.5
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/dist/default-fields.d.ts +73 -0
- package/dist/types.d.ts +3 -0
- package/package.json +1 -1
package/dist/default-fields.d.ts
CHANGED
|
@@ -1,36 +1,109 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Enum with default fields.
|
|
3
|
+
* @readonly
|
|
4
|
+
* @enum {string}
|
|
5
|
+
*/
|
|
1
6
|
export declare enum DefaultFieldEnum {
|
|
7
|
+
/** @member {string} */
|
|
8
|
+
/** Lead Name <string> */
|
|
2
9
|
name = "name",
|
|
10
|
+
/** @member {string} */
|
|
11
|
+
/** Lead Email <string> */
|
|
3
12
|
email = "email",
|
|
13
|
+
/** @member {string} */
|
|
14
|
+
/** Lead Tags <string[]> */
|
|
4
15
|
tags = "tags",
|
|
16
|
+
/** @member {string} */
|
|
17
|
+
/** Lead tags separated by comma <string> */
|
|
5
18
|
tagsString = "tagsString",
|
|
19
|
+
/** @member {string} */
|
|
20
|
+
/** Conversation channel <string> */
|
|
6
21
|
platform = "platform",
|
|
22
|
+
/** @member {string} */
|
|
23
|
+
/** Lead phone <string> */
|
|
7
24
|
phone = "phone",
|
|
25
|
+
/** @member {string} */
|
|
26
|
+
/** Lead city <string> */
|
|
8
27
|
city = "city",
|
|
28
|
+
/** @member {string} */
|
|
29
|
+
/** Lead state <string> */
|
|
9
30
|
state = "state",
|
|
31
|
+
/** @member {string} */
|
|
32
|
+
/** Lead country <string> */
|
|
10
33
|
country = "country",
|
|
34
|
+
/** @member {string} */
|
|
35
|
+
/** Lead arrival date <Date> */
|
|
11
36
|
arrivalDate = "arrivalDate",
|
|
37
|
+
/** @member {string} */
|
|
38
|
+
/** Lead departure date <Date> */
|
|
12
39
|
departureDate = "departureDate",
|
|
40
|
+
/** @member {string} */
|
|
41
|
+
/** Lead language <string> */
|
|
13
42
|
language = "language",
|
|
43
|
+
/** @member {string} */
|
|
44
|
+
/** Number of adults on the quote <integer> */
|
|
14
45
|
adults = "adults",
|
|
46
|
+
/** @member {string} */
|
|
47
|
+
/** Number of children on the quote <integer> */
|
|
15
48
|
children = "children",
|
|
49
|
+
/** @member {string} */
|
|
50
|
+
/** Last message date <Date> */
|
|
16
51
|
updatedAt = "updatedAt",
|
|
52
|
+
/** @member {string} */
|
|
53
|
+
/** Quotation <boolean> */
|
|
17
54
|
requestPrice = "requestPrice",
|
|
55
|
+
/** @member {string} */
|
|
56
|
+
/** Event quote <boolean> */
|
|
18
57
|
eventQuote = "eventQuote",
|
|
58
|
+
/** @member {string} */
|
|
59
|
+
/** Group quote <boolean> */
|
|
19
60
|
groupQuote = "groupQuote",
|
|
61
|
+
/** @member {string} */
|
|
62
|
+
/** Opened a quote link <boolean> */
|
|
20
63
|
linkQuotationOpened = "linkQuotationOpened",
|
|
64
|
+
/** @member {string} */
|
|
65
|
+
/** utm_source parameter on the conversation's url <string> */
|
|
21
66
|
utmSource = "utmSource",
|
|
67
|
+
/** @member {string} */
|
|
68
|
+
/** utm_medium parameter on the conversation's url <string> */
|
|
22
69
|
utmMedium = "utmMedium",
|
|
70
|
+
/** @member {string} */
|
|
71
|
+
/** utm_campaign parameter on the conversation's url <string> */
|
|
23
72
|
utmCampaign = "utmCampaign",
|
|
73
|
+
/** @member {string} */
|
|
74
|
+
/** Chat Origin <string> */
|
|
24
75
|
page = "page",
|
|
76
|
+
/** @member {string} */
|
|
77
|
+
/** Link to the conversation within the Asksuite platform <string> */
|
|
25
78
|
linkToLiveChat = "linkToLiveChat",
|
|
79
|
+
/** @member {string} */
|
|
80
|
+
/** Finished a reservation <boolean> */
|
|
26
81
|
hasReservation = "hasReservation",
|
|
82
|
+
/** @member {string} */
|
|
83
|
+
/** Total reservation value <string> */
|
|
27
84
|
totalReservation = "totalReservation",
|
|
85
|
+
/** @member {string} */
|
|
86
|
+
/** Price quote total value (Minimum) <string> */
|
|
28
87
|
minTotalValuePriceQuote = "minTotalValuePriceQuote",
|
|
88
|
+
/** @member {string} */
|
|
89
|
+
/** Price quote total value (Maximum) <string> */
|
|
29
90
|
maxTotalValuePriceQuote = "maxTotalValuePriceQuote",
|
|
91
|
+
/** @member {string} */
|
|
92
|
+
/** Price quote currency (Maximum) <string> */
|
|
30
93
|
currencyPriceQuote = "currencyPriceQuote",
|
|
94
|
+
/** @member {string} */
|
|
95
|
+
/** Name of the person who answered the conversation <string> */
|
|
31
96
|
attendant = "attendant",
|
|
97
|
+
/** @member {string} */
|
|
98
|
+
/** Email of the person who answered the conversation <string> */
|
|
32
99
|
attendantEmail = "attendantEmail",
|
|
100
|
+
/** @member {string} */
|
|
101
|
+
/** Company name <string> */
|
|
33
102
|
companyName = "companyName",
|
|
103
|
+
/** @member {string} */
|
|
104
|
+
/** Conversation ID <string> */
|
|
34
105
|
conversationId = "conversationId",
|
|
106
|
+
/** @member {string} */
|
|
107
|
+
/** ReservationCode <string> */
|
|
35
108
|
hotelReservationId = "hotelReservationId"
|
|
36
109
|
}
|
package/dist/types.d.ts
CHANGED