@gofynd/fdk-client-javascript 1.4.15-beta.1 → 1.4.15-beta.11

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.
Files changed (150) hide show
  1. package/README.md +2 -2
  2. package/application.d.ts +1 -2
  3. package/application.js +2 -3
  4. package/index.d.ts +1 -2
  5. package/index.js +7 -1
  6. package/package.json +3 -4
  7. package/sdk/application/ApplicationClient.js +0 -18
  8. package/sdk/application/Cart/CartApplicationClient.d.ts +55 -90
  9. package/sdk/application/Cart/CartApplicationClient.js +60 -1185
  10. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +90 -142
  11. package/sdk/application/Catalog/CatalogApplicationClient.js +187 -1293
  12. package/sdk/application/Common/CommonApplicationClient.d.ts +4 -8
  13. package/sdk/application/Common/CommonApplicationClient.js +5 -89
  14. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +6 -19
  15. package/sdk/application/Communication/CommunicationApplicationClient.js +6 -145
  16. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +32 -73
  17. package/sdk/application/Configuration/ConfigurationApplicationClient.js +31 -718
  18. package/sdk/application/Content/ContentApplicationClient.d.ts +46 -78
  19. package/sdk/application/Content/ContentApplicationClient.js +77 -914
  20. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -11
  21. package/sdk/application/FileStorage/FileStorageApplicationClient.js +19 -125
  22. package/sdk/application/Lead/LeadApplicationClient.d.ts +10 -18
  23. package/sdk/application/Lead/LeadApplicationClient.js +32 -202
  24. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +22 -39
  25. package/sdk/application/Logistic/LogisticApplicationClient.js +50 -478
  26. package/sdk/application/Order/OrderApplicationClient.d.ts +22 -42
  27. package/sdk/application/Order/OrderApplicationClient.js +86 -472
  28. package/sdk/application/Payment/PaymentApplicationClient.d.ts +92 -212
  29. package/sdk/application/Payment/PaymentApplicationClient.js +57 -2102
  30. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +14 -28
  31. package/sdk/application/Rewards/RewardsApplicationClient.js +16 -305
  32. package/sdk/application/Share/ShareApplicationClient.d.ts +14 -24
  33. package/sdk/application/Share/ShareApplicationClient.js +34 -294
  34. package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -14
  35. package/sdk/application/Theme/ThemeApplicationClient.js +28 -162
  36. package/sdk/application/User/UserApplicationClient.d.ts +85 -136
  37. package/sdk/application/User/UserApplicationClient.js +45 -1815
  38. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +2 -5
  39. package/sdk/application/Webhook/WebhookApplicationClient.js +4 -47
  40. package/sdk/application/index.d.ts +0 -18
  41. package/sdk/application/index.js +0 -33
  42. package/sdk/common/Utility.d.ts +1 -1
  43. package/sdk/common/Utility.js +10 -7
  44. package/sdk/common/Validator.d.ts +1 -0
  45. package/sdk/common/Validator.js +20 -0
  46. package/sdk/common/utils.d.ts +0 -1
  47. package/sdk/common/utils.js +0 -14
  48. package/sdk/partner/OAuthClient.js +1 -0
  49. package/sdk/partner/Theme/ThemePartnerModel.d.ts +3 -40
  50. package/sdk/partner/Theme/ThemePartnerModel.js +2 -24
  51. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +39 -1
  52. package/sdk/platform/Cart/CartPlatformApplicationClient.js +247 -1
  53. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +33 -1
  54. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +37 -0
  55. package/sdk/platform/Cart/CartPlatformModel.d.ts +193 -1
  56. package/sdk/platform/Cart/CartPlatformModel.js +132 -0
  57. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +0 -7
  58. package/sdk/platform/Catalog/CatalogPlatformModel.js +1 -4
  59. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +14 -0
  60. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +6 -0
  61. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +0 -10
  62. package/sdk/platform/Order/OrderPlatformApplicationClient.js +0 -92
  63. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +1 -28
  64. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +0 -18
  65. package/sdk/platform/Order/OrderPlatformClient.d.ts +10 -0
  66. package/sdk/platform/Order/OrderPlatformClient.js +99 -0
  67. package/sdk/platform/Order/OrderPlatformModel.d.ts +7 -0
  68. package/sdk/platform/Order/OrderPlatformModel.js +3 -0
  69. package/sdk/platform/Order/OrderPlatformValidator.d.ts +33 -1
  70. package/sdk/platform/Order/OrderPlatformValidator.js +20 -0
  71. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +1 -1
  72. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +4 -4
  73. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +56 -19
  74. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +42 -18
  75. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +3 -3
  76. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +2 -2
  77. package/sdk/platform/Theme/ThemePlatformModel.d.ts +3 -40
  78. package/sdk/platform/Theme/ThemePlatformModel.js +2 -24
  79. package/sdk/public/Configuration/ConfigurationPublicClient.js +5 -2
  80. package/sdk/public/Content/ContentPublicClient.d.ts +1 -1
  81. package/sdk/public/Content/ContentPublicClient.js +14 -2
  82. package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
  83. package/sdk/public/Partner/PartnerPublicClient.js +14 -2
  84. package/sdk/public/Webhook/WebhookPublicClient.js +5 -2
  85. package/sdk/application/Cart/CartApplicationModel.d.ts +0 -3994
  86. package/sdk/application/Cart/CartApplicationModel.js +0 -2497
  87. package/sdk/application/Cart/CartApplicationValidator.d.ts +0 -769
  88. package/sdk/application/Cart/CartApplicationValidator.js +0 -530
  89. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +0 -3857
  90. package/sdk/application/Catalog/CatalogApplicationModel.js +0 -2629
  91. package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +0 -791
  92. package/sdk/application/Catalog/CatalogApplicationValidator.js +0 -551
  93. package/sdk/application/Common/CommonApplicationModel.d.ts +0 -449
  94. package/sdk/application/Common/CommonApplicationModel.js +0 -308
  95. package/sdk/application/Common/CommonApplicationValidator.d.ts +0 -46
  96. package/sdk/application/Common/CommonApplicationValidator.js +0 -38
  97. package/sdk/application/Communication/CommunicationApplicationModel.d.ts +0 -293
  98. package/sdk/application/Communication/CommunicationApplicationModel.js +0 -201
  99. package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +0 -29
  100. package/sdk/application/Communication/CommunicationApplicationValidator.js +0 -38
  101. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +0 -2556
  102. package/sdk/application/Configuration/ConfigurationApplicationModel.js +0 -1887
  103. package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +0 -179
  104. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +0 -176
  105. package/sdk/application/Content/ContentApplicationModel.d.ts +0 -2133
  106. package/sdk/application/Content/ContentApplicationModel.js +0 -1589
  107. package/sdk/application/Content/ContentApplicationValidator.d.ts +0 -284
  108. package/sdk/application/Content/ContentApplicationValidator.js +0 -264
  109. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +0 -272
  110. package/sdk/application/FileStorage/FileStorageApplicationModel.js +0 -190
  111. package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +0 -56
  112. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +0 -53
  113. package/sdk/application/Lead/LeadApplicationModel.d.ts +0 -590
  114. package/sdk/application/Lead/LeadApplicationModel.js +0 -480
  115. package/sdk/application/Lead/LeadApplicationValidator.d.ts +0 -68
  116. package/sdk/application/Lead/LeadApplicationValidator.js +0 -71
  117. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +0 -1675
  118. package/sdk/application/Logistic/LogisticApplicationModel.js +0 -1121
  119. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +0 -254
  120. package/sdk/application/Logistic/LogisticApplicationValidator.js +0 -190
  121. package/sdk/application/Order/OrderApplicationModel.d.ts +0 -2296
  122. package/sdk/application/Order/OrderApplicationModel.js +0 -1471
  123. package/sdk/application/Order/OrderApplicationValidator.d.ts +0 -265
  124. package/sdk/application/Order/OrderApplicationValidator.js +0 -197
  125. package/sdk/application/Payment/PaymentApplicationModel.d.ts +0 -4058
  126. package/sdk/application/Payment/PaymentApplicationModel.js +0 -2630
  127. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +0 -576
  128. package/sdk/application/Payment/PaymentApplicationValidator.js +0 -594
  129. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +0 -365
  130. package/sdk/application/Rewards/RewardsApplicationModel.js +0 -396
  131. package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +0 -73
  132. package/sdk/application/Rewards/RewardsApplicationValidator.js +0 -84
  133. package/sdk/application/Share/ShareApplicationModel.d.ts +0 -339
  134. package/sdk/application/Share/ShareApplicationModel.js +0 -234
  135. package/sdk/application/Share/ShareApplicationValidator.d.ts +0 -90
  136. package/sdk/application/Share/ShareApplicationValidator.js +0 -91
  137. package/sdk/application/Theme/ThemeApplicationModel.d.ts +0 -1713
  138. package/sdk/application/Theme/ThemeApplicationModel.js +0 -1426
  139. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +0 -66
  140. package/sdk/application/Theme/ThemeApplicationValidator.js +0 -58
  141. package/sdk/application/User/UserApplicationModel.d.ts +0 -1943
  142. package/sdk/application/User/UserApplicationModel.js +0 -1382
  143. package/sdk/application/User/UserApplicationValidator.d.ts +0 -560
  144. package/sdk/application/User/UserApplicationValidator.js +0 -573
  145. package/sdk/application/Webhook/WebhookApplicationModel.d.ts +0 -52
  146. package/sdk/application/Webhook/WebhookApplicationModel.js +0 -46
  147. package/sdk/application/Webhook/WebhookApplicationValidator.d.ts +0 -16
  148. package/sdk/application/Webhook/WebhookApplicationValidator.js +0 -19
  149. package/sdk/common/Clickstream.d.ts +0 -1
  150. package/sdk/common/Clickstream.js +0 -464
@@ -1,590 +0,0 @@
1
- export = LeadApplicationModel;
2
- /**
3
- * @typedef TicketHistoryPayload
4
- * @property {Object} value - Details of history event.
5
- * @property {HistoryTypeEnum} type
6
- */
7
- /**
8
- * @typedef CustomFormSubmissionPayload
9
- * @property {Object[]} response - Custom form response.
10
- * @property {TicketAsset[]} [attachments] - List of all attachments related to the form.
11
- */
12
- /**
13
- * @typedef SubmitCustomFormResponse
14
- * @property {string} message - Success message for form submission.
15
- * @property {Ticket} [ticket]
16
- * @property {FormFieldResponse} [response]
17
- */
18
- /**
19
- * @typedef FormFieldResponse
20
- * @property {string} [_id] - Unique identifier for a custom form response.
21
- * @property {number} [__v] - Version of the form.
22
- * @property {string} [application_id] - Unique identifier for a Sales channel.
23
- * @property {string} [form_slug] - A short, human-readable, URL-friendly unique
24
- * identifier for a custom form.
25
- * @property {CreatedOn} [created_on]
26
- * @property {FormFieldResponseValues[]} [response] - Data related to
27
- * acknowledgement on submission of custom form.
28
- */
29
- /**
30
- * @typedef FormFieldResponseValues
31
- * @property {string} [key] - Keyname of field against which the input was
32
- * filled in custom form.
33
- */
34
- /**
35
- * @typedef TicketContext
36
- * @property {string} [application_id] - Unique identifier for a Sales channel.
37
- * @property {string} company_id - Company ID related to the ticket.
38
- */
39
- /**
40
- * @typedef CreatedOn
41
- * @property {string} user_agent - Useragent details.
42
- */
43
- /**
44
- * @typedef TicketAsset
45
- * @property {string} [display] - Display text for asset.
46
- * @property {string} value - To be used for details.
47
- * @property {TicketAssetTypeEnum} type
48
- */
49
- /**
50
- * @typedef TicketContent
51
- * @property {string} title - Title for ticket.
52
- * @property {string} [description] - Long description of issue.
53
- * @property {TicketAsset[]} [attachments] - List of all attachments related to
54
- * the ticket.
55
- */
56
- /**
57
- * @typedef AddTicketPayload
58
- * @property {Object} [created_by] - Creator of the ticket.
59
- * @property {string} [status] - Status of the ticket.
60
- * @property {PriorityEnum} [priority]
61
- * @property {string} category - Category of the ticket.
62
- * @property {TicketContent} content
63
- * @property {Object} [_custom_json] - Optional custom data that needs to be sent.
64
- * @property {string[]} [subscribers] - List of emails to be informed for ticket updates.
65
- */
66
- /**
67
- * @typedef Priority
68
- * @property {PriorityEnum} key
69
- * @property {string} display - Display text for priority.
70
- * @property {string} color - Color for priority.
71
- */
72
- /**
73
- * @typedef Status
74
- * @property {string} key - Key for status.
75
- * @property {string} display - Display text for status.
76
- * @property {string} color - Color for status.
77
- */
78
- /**
79
- * @typedef SubmitButton
80
- * @property {string} title - Title for submit button.
81
- * @property {string} title_color - Title color submit button.
82
- * @property {string} background_color - Color for submit button.
83
- */
84
- /**
85
- * @typedef PollForAssignment
86
- * @property {number} duration - Duration for polling of staff.
87
- * @property {string} message - Message for polling.
88
- * @property {string} success_message - Message for successful polling.
89
- * @property {string} failure_message - Message if polling failed.
90
- */
91
- /**
92
- * @typedef CustomForm
93
- * @property {string} application_id - Application ID - Identifier for a Sales channel.
94
- * @property {string} slug - Slug for the form, which is to be used for
95
- * accessing the form.
96
- * @property {string} [header_image] - Form header image that will be shown to the user.
97
- * @property {string} title - Form title that will be shown to the user.
98
- * @property {string} [description] - Form description that will be shown to the user.
99
- * @property {Priority} priority
100
- * @property {boolean} login_required - If login is required to make a form
101
- * response submission.
102
- * @property {boolean} should_notify - If new response submission for the form
103
- * should be notified to the assignees.
104
- * @property {string} [success_message] - Message that is to be shown on
105
- * successful form response submission.
106
- * @property {SubmitButton} [submit_button]
107
- * @property {Object[]} inputs - List of all the form fields.
108
- * @property {CreatedOn} [created_on]
109
- * @property {PollForAssignment} [poll_for_assignment]
110
- * @property {string} _id - Unique identifier for the form.
111
- */
112
- /**
113
- * @typedef FeedbackForm
114
- * @property {Object} [inputs] - Input details for the feedback form.
115
- * @property {string} [title] - Title for the feedback form.
116
- * @property {Object} [timestamps] - Timestamp details of feedback form.
117
- */
118
- /**
119
- * @typedef TicketCategory
120
- * @property {string} display - Category display value identifier.
121
- * @property {string} key - Category key value identifier.
122
- * @property {TicketCategory} [sub_categories]
123
- * @property {number} [group_id] - Group id of category related data.
124
- * @property {FeedbackForm} [feedback_form]
125
- */
126
- /**
127
- * @typedef TicketHistory
128
- * @property {string} type - Type of the history event.
129
- * @property {Object} value - Data of the history event.
130
- * @property {string} ticket_id - Readable ticket number.
131
- * @property {CreatedOn} [created_on]
132
- * @property {Object} [created_by] - User who created the history event.
133
- * @property {string} _id - Unique identifier of the history event.
134
- * @property {string} [updated_at] - Time of last update of the history event.
135
- * @property {string} [created_at] - Time of creation of the history event.
136
- */
137
- /**
138
- * @typedef Ticket
139
- * @property {TicketContext} [context]
140
- * @property {CreatedOn} [created_on]
141
- * @property {string} [response_id] - Details of company and application related
142
- * to the ticket.
143
- * @property {TicketContent} [content]
144
- * @property {TicketCategory} category
145
- * @property {string} [sub_category] - Sub-category assigned to the ticket.
146
- * @property {TicketSourceEnum} source
147
- * @property {Status} status
148
- * @property {Priority} priority
149
- * @property {Object} [created_by] - User details of ticket creator.
150
- * @property {Object} [assigned_to] - Details of support staff to whom ticket is assigned.
151
- * @property {string[]} [tags] - Tags relevant to ticket.
152
- * @property {Object} [_custom_json] - Custom json relevant to the ticket.
153
- * @property {boolean} [is_feedback_pending] - If feedback submission is pending
154
- * for the ticket.
155
- * @property {Object} [integration] - Integration type and its details of the ticket.
156
- * @property {string} _id - Unique identifier for the ticket.
157
- * @property {string} [updated_at] - Time when the ticket was last updated.
158
- * @property {string} [created_at] - Time when the ticket was created.
159
- */
160
- /** @typedef {"low" | "medium" | "high" | "urgent"} PriorityEnum */
161
- /** @typedef {"rating" | "log" | "comment" | "thread"} HistoryTypeEnum */
162
- /**
163
- * @typedef {| "image"
164
- * | "video"
165
- * | "file"
166
- * | "youtube"
167
- * | "product"
168
- * | "collection"
169
- * | "brand"
170
- * | "shipment"
171
- * | "order"} TicketAssetTypeEnum
172
- */
173
- /** @typedef {"platform_panel" | "sales_channel"} TicketSourceEnum */
174
- declare class LeadApplicationModel {
175
- }
176
- declare namespace LeadApplicationModel {
177
- export { TicketHistoryPayload, CustomFormSubmissionPayload, SubmitCustomFormResponse, FormFieldResponse, FormFieldResponseValues, TicketContext, CreatedOn, TicketAsset, TicketContent, AddTicketPayload, Priority, Status, SubmitButton, PollForAssignment, CustomForm, FeedbackForm, TicketCategory, TicketHistory, Ticket, PriorityEnum, HistoryTypeEnum, TicketAssetTypeEnum, TicketSourceEnum };
178
- }
179
- /** @returns {TicketHistoryPayload} */
180
- declare function TicketHistoryPayload(): TicketHistoryPayload;
181
- type TicketHistoryPayload = {
182
- /**
183
- * - Details of history event.
184
- */
185
- value: any;
186
- type: HistoryTypeEnum;
187
- };
188
- /** @returns {CustomFormSubmissionPayload} */
189
- declare function CustomFormSubmissionPayload(): CustomFormSubmissionPayload;
190
- type CustomFormSubmissionPayload = {
191
- /**
192
- * - Custom form response.
193
- */
194
- response: any[];
195
- /**
196
- * - List of all attachments related to the form.
197
- */
198
- attachments?: TicketAsset[];
199
- };
200
- /** @returns {SubmitCustomFormResponse} */
201
- declare function SubmitCustomFormResponse(): SubmitCustomFormResponse;
202
- type SubmitCustomFormResponse = {
203
- /**
204
- * - Success message for form submission.
205
- */
206
- message: string;
207
- ticket?: Ticket;
208
- response?: FormFieldResponse;
209
- };
210
- /** @returns {FormFieldResponse} */
211
- declare function FormFieldResponse(): FormFieldResponse;
212
- type FormFieldResponse = {
213
- /**
214
- * - Unique identifier for a custom form response.
215
- */
216
- _id?: string;
217
- /**
218
- * - Version of the form.
219
- */
220
- __v?: number;
221
- /**
222
- * - Unique identifier for a Sales channel.
223
- */
224
- application_id?: string;
225
- /**
226
- * - A short, human-readable, URL-friendly unique
227
- * identifier for a custom form.
228
- */
229
- form_slug?: string;
230
- created_on?: CreatedOn;
231
- /**
232
- * - Data related to
233
- * acknowledgement on submission of custom form.
234
- */
235
- response?: FormFieldResponseValues[];
236
- };
237
- /** @returns {FormFieldResponseValues} */
238
- declare function FormFieldResponseValues(): FormFieldResponseValues;
239
- type FormFieldResponseValues = {
240
- /**
241
- * - Keyname of field against which the input was
242
- * filled in custom form.
243
- */
244
- key?: string;
245
- };
246
- /** @returns {TicketContext} */
247
- declare function TicketContext(): TicketContext;
248
- type TicketContext = {
249
- /**
250
- * - Unique identifier for a Sales channel.
251
- */
252
- application_id?: string;
253
- /**
254
- * - Company ID related to the ticket.
255
- */
256
- company_id: string;
257
- };
258
- /** @returns {CreatedOn} */
259
- declare function CreatedOn(): CreatedOn;
260
- type CreatedOn = {
261
- /**
262
- * - Useragent details.
263
- */
264
- user_agent: string;
265
- };
266
- /** @returns {TicketAsset} */
267
- declare function TicketAsset(): TicketAsset;
268
- type TicketAsset = {
269
- /**
270
- * - Display text for asset.
271
- */
272
- display?: string;
273
- /**
274
- * - To be used for details.
275
- */
276
- value: string;
277
- type: TicketAssetTypeEnum;
278
- };
279
- /** @returns {TicketContent} */
280
- declare function TicketContent(): TicketContent;
281
- type TicketContent = {
282
- /**
283
- * - Title for ticket.
284
- */
285
- title: string;
286
- /**
287
- * - Long description of issue.
288
- */
289
- description?: string;
290
- /**
291
- * - List of all attachments related to
292
- * the ticket.
293
- */
294
- attachments?: TicketAsset[];
295
- };
296
- /** @returns {AddTicketPayload} */
297
- declare function AddTicketPayload(): AddTicketPayload;
298
- type AddTicketPayload = {
299
- /**
300
- * - Creator of the ticket.
301
- */
302
- created_by?: any;
303
- /**
304
- * - Status of the ticket.
305
- */
306
- status?: string;
307
- priority?: PriorityEnum;
308
- /**
309
- * - Category of the ticket.
310
- */
311
- category: string;
312
- content: TicketContent;
313
- /**
314
- * - Optional custom data that needs to be sent.
315
- */
316
- _custom_json?: any;
317
- /**
318
- * - List of emails to be informed for ticket updates.
319
- */
320
- subscribers?: string[];
321
- };
322
- /** @returns {Priority} */
323
- declare function Priority(): Priority;
324
- type Priority = {
325
- key: PriorityEnum;
326
- /**
327
- * - Display text for priority.
328
- */
329
- display: string;
330
- /**
331
- * - Color for priority.
332
- */
333
- color: string;
334
- };
335
- /** @returns {Status} */
336
- declare function Status(): Status;
337
- type Status = {
338
- /**
339
- * - Key for status.
340
- */
341
- key: string;
342
- /**
343
- * - Display text for status.
344
- */
345
- display: string;
346
- /**
347
- * - Color for status.
348
- */
349
- color: string;
350
- };
351
- /** @returns {SubmitButton} */
352
- declare function SubmitButton(): SubmitButton;
353
- type SubmitButton = {
354
- /**
355
- * - Title for submit button.
356
- */
357
- title: string;
358
- /**
359
- * - Title color submit button.
360
- */
361
- title_color: string;
362
- /**
363
- * - Color for submit button.
364
- */
365
- background_color: string;
366
- };
367
- /** @returns {PollForAssignment} */
368
- declare function PollForAssignment(): PollForAssignment;
369
- type PollForAssignment = {
370
- /**
371
- * - Duration for polling of staff.
372
- */
373
- duration: number;
374
- /**
375
- * - Message for polling.
376
- */
377
- message: string;
378
- /**
379
- * - Message for successful polling.
380
- */
381
- success_message: string;
382
- /**
383
- * - Message if polling failed.
384
- */
385
- failure_message: string;
386
- };
387
- /** @returns {CustomForm} */
388
- declare function CustomForm(): CustomForm;
389
- type CustomForm = {
390
- /**
391
- * - Application ID - Identifier for a Sales channel.
392
- */
393
- application_id: string;
394
- /**
395
- * - Slug for the form, which is to be used for
396
- * accessing the form.
397
- */
398
- slug: string;
399
- /**
400
- * - Form header image that will be shown to the user.
401
- */
402
- header_image?: string;
403
- /**
404
- * - Form title that will be shown to the user.
405
- */
406
- title: string;
407
- /**
408
- * - Form description that will be shown to the user.
409
- */
410
- description?: string;
411
- priority: Priority;
412
- /**
413
- * - If login is required to make a form
414
- * response submission.
415
- */
416
- login_required: boolean;
417
- /**
418
- * - If new response submission for the form
419
- * should be notified to the assignees.
420
- */
421
- should_notify: boolean;
422
- /**
423
- * - Message that is to be shown on
424
- * successful form response submission.
425
- */
426
- success_message?: string;
427
- submit_button?: SubmitButton;
428
- /**
429
- * - List of all the form fields.
430
- */
431
- inputs: any[];
432
- created_on?: CreatedOn;
433
- poll_for_assignment?: PollForAssignment;
434
- /**
435
- * - Unique identifier for the form.
436
- */
437
- _id: string;
438
- };
439
- /** @returns {FeedbackForm} */
440
- declare function FeedbackForm(): FeedbackForm;
441
- type FeedbackForm = {
442
- /**
443
- * - Input details for the feedback form.
444
- */
445
- inputs?: any;
446
- /**
447
- * - Title for the feedback form.
448
- */
449
- title?: string;
450
- /**
451
- * - Timestamp details of feedback form.
452
- */
453
- timestamps?: any;
454
- };
455
- /** @returns {TicketCategory} */
456
- declare function TicketCategory(): TicketCategory;
457
- type TicketCategory = {
458
- /**
459
- * - Category display value identifier.
460
- */
461
- display: string;
462
- /**
463
- * - Category key value identifier.
464
- */
465
- key: string;
466
- sub_categories?: TicketCategory;
467
- /**
468
- * - Group id of category related data.
469
- */
470
- group_id?: number;
471
- feedback_form?: FeedbackForm;
472
- };
473
- /** @returns {TicketHistory} */
474
- declare function TicketHistory(): TicketHistory;
475
- type TicketHistory = {
476
- /**
477
- * - Type of the history event.
478
- */
479
- type: string;
480
- /**
481
- * - Data of the history event.
482
- */
483
- value: any;
484
- /**
485
- * - Readable ticket number.
486
- */
487
- ticket_id: string;
488
- created_on?: CreatedOn;
489
- /**
490
- * - User who created the history event.
491
- */
492
- created_by?: any;
493
- /**
494
- * - Unique identifier of the history event.
495
- */
496
- _id: string;
497
- /**
498
- * - Time of last update of the history event.
499
- */
500
- updated_at?: string;
501
- /**
502
- * - Time of creation of the history event.
503
- */
504
- created_at?: string;
505
- };
506
- /** @returns {Ticket} */
507
- declare function Ticket(): Ticket;
508
- type Ticket = {
509
- context?: TicketContext;
510
- created_on?: CreatedOn;
511
- /**
512
- * - Details of company and application related
513
- * to the ticket.
514
- */
515
- response_id?: string;
516
- content?: TicketContent;
517
- category: TicketCategory;
518
- /**
519
- * - Sub-category assigned to the ticket.
520
- */
521
- sub_category?: string;
522
- source: TicketSourceEnum;
523
- status: Status;
524
- priority: Priority;
525
- /**
526
- * - User details of ticket creator.
527
- */
528
- created_by?: any;
529
- /**
530
- * - Details of support staff to whom ticket is assigned.
531
- */
532
- assigned_to?: any;
533
- /**
534
- * - Tags relevant to ticket.
535
- */
536
- tags?: string[];
537
- /**
538
- * - Custom json relevant to the ticket.
539
- */
540
- _custom_json?: any;
541
- /**
542
- * - If feedback submission is pending
543
- * for the ticket.
544
- */
545
- is_feedback_pending?: boolean;
546
- /**
547
- * - Integration type and its details of the ticket.
548
- */
549
- integration?: any;
550
- /**
551
- * - Unique identifier for the ticket.
552
- */
553
- _id: string;
554
- /**
555
- * - Time when the ticket was last updated.
556
- */
557
- updated_at?: string;
558
- /**
559
- * - Time when the ticket was created.
560
- */
561
- created_at?: string;
562
- };
563
- /**
564
- * Enum: PriorityEnum Used By: Lead
565
- *
566
- * @returns {PriorityEnum}
567
- */
568
- declare function PriorityEnum(): PriorityEnum;
569
- type PriorityEnum = "low" | "medium" | "high" | "urgent";
570
- /**
571
- * Enum: HistoryTypeEnum Used By: Lead
572
- *
573
- * @returns {HistoryTypeEnum}
574
- */
575
- declare function HistoryTypeEnum(): HistoryTypeEnum;
576
- type HistoryTypeEnum = "rating" | "log" | "comment" | "thread";
577
- /**
578
- * Enum: TicketAssetTypeEnum Used By: Lead
579
- *
580
- * @returns {TicketAssetTypeEnum}
581
- */
582
- declare function TicketAssetTypeEnum(): TicketAssetTypeEnum;
583
- type TicketAssetTypeEnum = "image" | "video" | "file" | "youtube" | "product" | "collection" | "brand" | "shipment" | "order";
584
- /**
585
- * Enum: TicketSourceEnum Used By: Lead
586
- *
587
- * @returns {TicketSourceEnum}
588
- */
589
- declare function TicketSourceEnum(): TicketSourceEnum;
590
- type TicketSourceEnum = "platform_panel" | "sales_channel";