@burdenoff/microfe-adaptercloud 2026.625.2 → 2026.628.1

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 (153) hide show
  1. package/dist/adaptercloud/AdapterCloudRoot.js +65 -121
  2. package/dist/adaptercloud/AdapterCloudRoot.js.map +1 -1
  3. package/dist/adaptercloud/AdapterCloudRoutes.js +70 -182
  4. package/dist/adaptercloud/AdapterCloudRoutes.js.map +1 -1
  5. package/dist/adaptercloud/components/DataState.js +42 -0
  6. package/dist/adaptercloud/components/DataState.js.map +1 -0
  7. package/dist/adaptercloud/components/SeverityBadge.js +12 -0
  8. package/dist/adaptercloud/components/SeverityBadge.js.map +1 -0
  9. package/dist/adaptercloud/components/StatusBadge.js +43 -44
  10. package/dist/adaptercloud/components/StatusBadge.js.map +1 -1
  11. package/dist/adaptercloud/context/AdapterCloudContext.js +22 -30
  12. package/dist/adaptercloud/context/AdapterCloudContext.js.map +1 -1
  13. package/dist/adaptercloud/hooks/useAdapterCloudApi.js +397 -194
  14. package/dist/adaptercloud/hooks/useAdapterCloudApi.js.map +1 -1
  15. package/dist/adaptercloud/index.js +1 -0
  16. package/dist/adaptercloud/pages/OverviewPage.js +334 -0
  17. package/dist/adaptercloud/pages/OverviewPage.js.map +1 -0
  18. package/dist/adaptercloud/pages/adapters/AdapterDetailPage.js +187 -0
  19. package/dist/adaptercloud/pages/adapters/AdapterDetailPage.js.map +1 -0
  20. package/dist/adaptercloud/pages/adapters/AdapterFormPage.js +278 -0
  21. package/dist/adaptercloud/pages/adapters/AdapterFormPage.js.map +1 -0
  22. package/dist/adaptercloud/pages/adapters/AdaptersListPage.js +172 -0
  23. package/dist/adaptercloud/pages/adapters/AdaptersListPage.js.map +1 -0
  24. package/dist/adaptercloud/pages/connections/ConnectionDetailPage.js +247 -0
  25. package/dist/adaptercloud/pages/connections/ConnectionDetailPage.js.map +1 -0
  26. package/dist/adaptercloud/pages/connections/ConnectionFormPage.js +271 -0
  27. package/dist/adaptercloud/pages/connections/ConnectionFormPage.js.map +1 -0
  28. package/dist/adaptercloud/pages/connections/ConnectionsListPage.js +167 -0
  29. package/dist/adaptercloud/pages/connections/ConnectionsListPage.js.map +1 -0
  30. package/dist/adaptercloud/pages/costs/CostsPage.js +169 -0
  31. package/dist/adaptercloud/pages/costs/CostsPage.js.map +1 -0
  32. package/dist/adaptercloud/pages/drift/DriftListPage.js +132 -0
  33. package/dist/adaptercloud/pages/drift/DriftListPage.js.map +1 -0
  34. package/dist/adaptercloud/pages/policies/PoliciesListPage.js +171 -0
  35. package/dist/adaptercloud/pages/policies/PoliciesListPage.js.map +1 -0
  36. package/dist/adaptercloud/pages/policies/PolicyDetailPage.js +185 -0
  37. package/dist/adaptercloud/pages/policies/PolicyDetailPage.js.map +1 -0
  38. package/dist/adaptercloud/pages/policies/PolicyFormPage.js +215 -0
  39. package/dist/adaptercloud/pages/policies/PolicyFormPage.js.map +1 -0
  40. package/dist/adaptercloud/pages/resources/ResourceDetailPage.js +207 -0
  41. package/dist/adaptercloud/pages/resources/ResourceDetailPage.js.map +1 -0
  42. package/dist/adaptercloud/pages/resources/ResourcesListPage.js +182 -0
  43. package/dist/adaptercloud/pages/resources/ResourcesListPage.js.map +1 -0
  44. package/dist/adaptercloud/pages/sync-runs/SyncRunsListPage.js +196 -0
  45. package/dist/adaptercloud/pages/sync-runs/SyncRunsListPage.js.map +1 -0
  46. package/dist/adaptercloud/pages/violations/ViolationsListPage.js +258 -0
  47. package/dist/adaptercloud/pages/violations/ViolationsListPage.js.map +1 -0
  48. package/dist/adaptercloud/store/adaptercloudStore.js +1 -7
  49. package/dist/adaptercloud/store/adaptercloudStore.js.map +1 -1
  50. package/dist/adaptercloud/utils/domain.js +105 -0
  51. package/dist/adaptercloud/utils/domain.js.map +1 -0
  52. package/dist/adaptercloud/utils/formatters.js +1 -12
  53. package/dist/adaptercloud/utils/formatters.js.map +1 -1
  54. package/dist/index.js +5 -4
  55. package/package.json +1 -1
  56. package/dist/adaptercloud/components/InvestmentCard.js +0 -98
  57. package/dist/adaptercloud/components/InvestmentCard.js.map +0 -1
  58. package/dist/adaptercloud/components/RatingDisplay.js +0 -35
  59. package/dist/adaptercloud/components/RatingDisplay.js.map +0 -1
  60. package/dist/adaptercloud/mocks/data.js +0 -1517
  61. package/dist/adaptercloud/mocks/data.js.map +0 -1
  62. package/dist/adaptercloud/mocks/users.js +0 -34
  63. package/dist/adaptercloud/mocks/users.js.map +0 -1
  64. package/dist/adaptercloud/pages/HomePage.js +0 -934
  65. package/dist/adaptercloud/pages/HomePage.js.map +0 -1
  66. package/dist/adaptercloud/pages/admin/AdminAnalyticsPage.js +0 -653
  67. package/dist/adaptercloud/pages/admin/AdminAnalyticsPage.js.map +0 -1
  68. package/dist/adaptercloud/pages/admin/AdminDashboard.js +0 -665
  69. package/dist/adaptercloud/pages/admin/AdminDashboard.js.map +0 -1
  70. package/dist/adaptercloud/pages/admin/AdminFinancialPage.js +0 -426
  71. package/dist/adaptercloud/pages/admin/AdminFinancialPage.js.map +0 -1
  72. package/dist/adaptercloud/pages/admin/AdminOrdersPage.js +0 -665
  73. package/dist/adaptercloud/pages/admin/AdminOrdersPage.js.map +0 -1
  74. package/dist/adaptercloud/pages/admin/AdminProfilePage.js +0 -261
  75. package/dist/adaptercloud/pages/admin/AdminProfilePage.js.map +0 -1
  76. package/dist/adaptercloud/pages/admin/AdminSettingsPage.js +0 -663
  77. package/dist/adaptercloud/pages/admin/AdminSettingsPage.js.map +0 -1
  78. package/dist/adaptercloud/pages/admin/CartManagementPage.js +0 -874
  79. package/dist/adaptercloud/pages/admin/CartManagementPage.js.map +0 -1
  80. package/dist/adaptercloud/pages/admin/UserManagementPage.js +0 -898
  81. package/dist/adaptercloud/pages/admin/UserManagementPage.js.map +0 -1
  82. package/dist/adaptercloud/pages/cart-owner/AnalyticsDashboard.js +0 -840
  83. package/dist/adaptercloud/pages/cart-owner/AnalyticsDashboard.js.map +0 -1
  84. package/dist/adaptercloud/pages/cart-owner/BusinessSettingsPage.js +0 -714
  85. package/dist/adaptercloud/pages/cart-owner/BusinessSettingsPage.js.map +0 -1
  86. package/dist/adaptercloud/pages/cart-owner/CartOwnerDashboard.js +0 -788
  87. package/dist/adaptercloud/pages/cart-owner/CartOwnerDashboard.js.map +0 -1
  88. package/dist/adaptercloud/pages/cart-owner/CartOwnerProfilePage.js +0 -888
  89. package/dist/adaptercloud/pages/cart-owner/CartOwnerProfilePage.js.map +0 -1
  90. package/dist/adaptercloud/pages/cart-owner/CartServiceConfigPage.js +0 -634
  91. package/dist/adaptercloud/pages/cart-owner/CartServiceConfigPage.js.map +0 -1
  92. package/dist/adaptercloud/pages/cart-owner/InventoryManagementPage.js +0 -907
  93. package/dist/adaptercloud/pages/cart-owner/InventoryManagementPage.js.map +0 -1
  94. package/dist/adaptercloud/pages/cart-owner/OrderManagementPage.js +0 -875
  95. package/dist/adaptercloud/pages/cart-owner/OrderManagementPage.js.map +0 -1
  96. package/dist/adaptercloud/pages/cart-owner/StaffManagementPage.js +0 -827
  97. package/dist/adaptercloud/pages/cart-owner/StaffManagementPage.js.map +0 -1
  98. package/dist/adaptercloud/pages/common/HelpSupportPage.js +0 -1329
  99. package/dist/adaptercloud/pages/common/HelpSupportPage.js.map +0 -1
  100. package/dist/adaptercloud/pages/common/NotificationCenterPage.js +0 -671
  101. package/dist/adaptercloud/pages/common/NotificationCenterPage.js.map +0 -1
  102. package/dist/adaptercloud/pages/common/SettingsPage.js +0 -982
  103. package/dist/adaptercloud/pages/common/SettingsPage.js.map +0 -1
  104. package/dist/adaptercloud/pages/customer/BookingDetailsPage.js +0 -596
  105. package/dist/adaptercloud/pages/customer/BookingDetailsPage.js.map +0 -1
  106. package/dist/adaptercloud/pages/customer/CartDetailPage.js +0 -623
  107. package/dist/adaptercloud/pages/customer/CartDetailPage.js.map +0 -1
  108. package/dist/adaptercloud/pages/customer/CartDiscoveryPage.js +0 -552
  109. package/dist/adaptercloud/pages/customer/CartDiscoveryPage.js.map +0 -1
  110. package/dist/adaptercloud/pages/customer/CheckoutPage.js +0 -534
  111. package/dist/adaptercloud/pages/customer/CheckoutPage.js.map +0 -1
  112. package/dist/adaptercloud/pages/customer/CustomerDashboard.js +0 -525
  113. package/dist/adaptercloud/pages/customer/CustomerDashboard.js.map +0 -1
  114. package/dist/adaptercloud/pages/customer/CustomerProfilePage.js +0 -623
  115. package/dist/adaptercloud/pages/customer/CustomerProfilePage.js.map +0 -1
  116. package/dist/adaptercloud/pages/customer/DirectServiceBookingPage.js +0 -629
  117. package/dist/adaptercloud/pages/customer/DirectServiceBookingPage.js.map +0 -1
  118. package/dist/adaptercloud/pages/customer/FavoritesPage.js +0 -480
  119. package/dist/adaptercloud/pages/customer/FavoritesPage.js.map +0 -1
  120. package/dist/adaptercloud/pages/customer/OrderHistoryPage.js +0 -444
  121. package/dist/adaptercloud/pages/customer/OrderHistoryPage.js.map +0 -1
  122. package/dist/adaptercloud/pages/customer/OrderTrackingPage.js +0 -391
  123. package/dist/adaptercloud/pages/customer/OrderTrackingPage.js.map +0 -1
  124. package/dist/adaptercloud/pages/customer/PaymentMethodsPage.js +0 -504
  125. package/dist/adaptercloud/pages/customer/PaymentMethodsPage.js.map +0 -1
  126. package/dist/adaptercloud/pages/customer/ReviewsPage.js +0 -609
  127. package/dist/adaptercloud/pages/customer/ReviewsPage.js.map +0 -1
  128. package/dist/adaptercloud/pages/customer/SavedAddressesPage.js +0 -459
  129. package/dist/adaptercloud/pages/customer/SavedAddressesPage.js.map +0 -1
  130. package/dist/adaptercloud/pages/investor/InvestmentDetailsPage.js +0 -851
  131. package/dist/adaptercloud/pages/investor/InvestmentDetailsPage.js.map +0 -1
  132. package/dist/adaptercloud/pages/investor/InvestmentOpportunitiesPage.js +0 -942
  133. package/dist/adaptercloud/pages/investor/InvestmentOpportunitiesPage.js.map +0 -1
  134. package/dist/adaptercloud/pages/investor/InvestorAnalyticsPage.js +0 -683
  135. package/dist/adaptercloud/pages/investor/InvestorAnalyticsPage.js.map +0 -1
  136. package/dist/adaptercloud/pages/investor/InvestorDashboard.js +0 -452
  137. package/dist/adaptercloud/pages/investor/InvestorDashboard.js.map +0 -1
  138. package/dist/adaptercloud/pages/investor/InvestorInvestmentsPage.js +0 -402
  139. package/dist/adaptercloud/pages/investor/InvestorInvestmentsPage.js.map +0 -1
  140. package/dist/adaptercloud/pages/investor/InvestorPortfolioPage.js +0 -571
  141. package/dist/adaptercloud/pages/investor/InvestorPortfolioPage.js.map +0 -1
  142. package/dist/adaptercloud/pages/investor/InvestorProfilePage.js +0 -1067
  143. package/dist/adaptercloud/pages/investor/InvestorProfilePage.js.map +0 -1
  144. package/dist/adaptercloud/pages/worker/TaskDetailsPage.js +0 -526
  145. package/dist/adaptercloud/pages/worker/TaskDetailsPage.js.map +0 -1
  146. package/dist/adaptercloud/pages/worker/WorkerDashboard.js +0 -659
  147. package/dist/adaptercloud/pages/worker/WorkerDashboard.js.map +0 -1
  148. package/dist/adaptercloud/pages/worker/WorkerOrdersPage.js +0 -678
  149. package/dist/adaptercloud/pages/worker/WorkerOrdersPage.js.map +0 -1
  150. package/dist/adaptercloud/pages/worker/WorkerProfilePage.js +0 -689
  151. package/dist/adaptercloud/pages/worker/WorkerProfilePage.js.map +0 -1
  152. package/dist/adaptercloud/pages/worker/WorkerSchedulePage.js +0 -582
  153. package/dist/adaptercloud/pages/worker/WorkerSchedulePage.js.map +0 -1
@@ -1,1329 +0,0 @@
1
- import { useAdapterCloud as e } from "../../context/AdapterCloudContext.js";
2
- import { cn as t } from "../../utils/cn.js";
3
- import { PageLayout as n } from "../../components/PageLayout.js";
4
- import { formatDate as r } from "../../utils/formatters.js";
5
- import { useMemo as i, useState as a } from "react";
6
- import { AlertCircle as ee, AlertTriangle as o, BookOpen as te, CheckCircle2 as s, ChevronDown as c, ChevronUp as l, Circle as u, CircleDot as d, Clock as f, CreditCard as p, ExternalLink as ne, FileText as m, HelpCircle as re, Info as ie, Lightbulb as ae, Mail as h, MessageCircle as g, MessageSquare as _, Phone as v, PhoneCall as y, Search as b, Send as oe, Shield as x, ShoppingBag as S, Tag as C, ThumbsUp as w, Ticket as T, TrendingUp as E, Truck as D, User as O, Wrench as k, X as A, XCircle as j } from "lucide-react";
7
- import { Fragment as M, jsx as N, jsxs as P } from "react/jsx-runtime";
8
- import { EmphasisPanel as se } from "@burdenoff/fe-libs/ui";
9
- //#region src/adaptercloud/pages/common/HelpSupportPage.tsx
10
- var F = [
11
- "Account & Profile",
12
- "Orders & Payments",
13
- "Cart Owners",
14
- "Delivery & Workers",
15
- "Investors",
16
- "Technical Issues",
17
- "Billing & Refunds",
18
- "Privacy & Security"
19
- ], ce = [
20
- {
21
- label: "Getting Started",
22
- icon: te,
23
- description: "New to AdapterCloud? Start here",
24
- color: "bg-accent-blue-subtle/10 text-accent-blue"
25
- },
26
- {
27
- label: "Orders & Delivery",
28
- icon: S,
29
- description: "Placing, tracking, and cancelling orders",
30
- color: "bg-status-success-bg-subtle/10 text-status-success-text"
31
- },
32
- {
33
- label: "Payments & Billing",
34
- icon: p,
35
- description: "Payment methods, refunds, and invoices",
36
- color: "bg-accent-purple-subtle/10 text-accent-purple"
37
- },
38
- {
39
- label: "Account & Profile",
40
- icon: O,
41
- description: "Manage your account and settings",
42
- color: "bg-accent-orange-subtle/10 text-accent-orange"
43
- },
44
- {
45
- label: "Cart Owners",
46
- icon: k,
47
- description: "Running your cart business",
48
- color: "bg-accent-teal-subtle/10 text-accent-teal"
49
- },
50
- {
51
- label: "Workers & Delivery",
52
- icon: D,
53
- description: "Delivery partner information",
54
- color: "bg-accent-indigo-subtle/10 text-accent-indigo"
55
- },
56
- {
57
- label: "Investments",
58
- icon: E,
59
- description: "Investment opportunities and returns",
60
- color: "bg-status-success-bg-subtle/10 text-status-success-text"
61
- },
62
- {
63
- label: "Security & Privacy",
64
- icon: x,
65
- description: "Data protection and safety",
66
- color: "bg-status-error-bg-subtle/10 text-status-error-text"
67
- },
68
- {
69
- label: "Technical Issues",
70
- icon: o,
71
- description: "App issues and troubleshooting",
72
- color: "bg-status-warning-bg-subtle/10 text-status-warning-text"
73
- }
74
- ], I = [
75
- {
76
- type: "email",
77
- label: "Email Support",
78
- value: "support@adaptercloud.com",
79
- available: !0,
80
- responseTime: "Within 24 hours",
81
- icon: h
82
- },
83
- {
84
- type: "phone",
85
- label: "Phone Support",
86
- value: "+91 80-4012-3456",
87
- available: !0,
88
- responseTime: "9 AM - 9 PM IST",
89
- icon: y
90
- },
91
- {
92
- type: "chat",
93
- label: "Live Chat",
94
- value: "Start a conversation",
95
- available: !0,
96
- responseTime: "Instant response",
97
- icon: g
98
- },
99
- {
100
- type: "whatsapp",
101
- label: "WhatsApp",
102
- value: "+91 98765-43210",
103
- available: !0,
104
- responseTime: "2-4 hours",
105
- icon: _
106
- }
107
- ], le = [
108
- {
109
- id: "faq-001",
110
- category: "Account & Profile",
111
- question: "How do I create an account on AdapterCloud?",
112
- answer: "You can create an account by clicking the\"Sign Up\" button on the homepage. You'll need to provide your name, email address, phone number, and choose your role (Customer, Cart Owner, Worker, or Investor). After verification via OTP, your account will be activated immediately.",
113
- helpful: 142,
114
- tags: [
115
- "account",
116
- "signup",
117
- "registration"
118
- ]
119
- },
120
- {
121
- id: "faq-002",
122
- category: "Account & Profile",
123
- question: "How can I change my password?",
124
- answer: "Go to Settings > Security > Change Password. You'll need to enter your current password and then your new password twice to confirm. Make sure your new password is at least 8 characters long and includes a mix of letters, numbers, and symbols for better security.",
125
- helpful: 89,
126
- tags: [
127
- "password",
128
- "security",
129
- "account"
130
- ]
131
- },
132
- {
133
- id: "faq-003",
134
- category: "Account & Profile",
135
- question: "Can I switch my account role?",
136
- answer: "Yes, you can request a role change from Settings > Profile > Account Role. Switching from Customer to Cart Owner or Worker requires additional verification. The process typically takes 2-3 business days. You can hold multiple roles simultaneously.",
137
- helpful: 56,
138
- tags: [
139
- "role",
140
- "account",
141
- "switch"
142
- ]
143
- },
144
- {
145
- id: "faq-004",
146
- category: "Orders & Payments",
147
- question: "What payment methods are accepted?",
148
- answer: "We accept various payment methods including UPI (Google Pay, PhonePe, Paytm), credit/debit cards (Visa, Mastercard, RuPay), net banking from all major banks, and digital wallets. Some cart owners also accept cash on delivery for orders under a certain amount.",
149
- helpful: 203,
150
- tags: [
151
- "payment",
152
- "upi",
153
- "cards",
154
- "wallet"
155
- ]
156
- },
157
- {
158
- id: "faq-005",
159
- category: "Orders & Payments",
160
- question: "How can I track my order in real-time?",
161
- answer: "After placing an order, you'll receive a tracking link via SMS and email. You can also track your order in real-time through the app under \"My Orders\" section. The live map shows your delivery partner's location. You'll get push notifications at each stage: confirmed, preparing, picked up, and delivered.",
162
- helpful: 156,
163
- tags: [
164
- "tracking",
165
- "orders",
166
- "delivery",
167
- "real-time"
168
- ]
169
- },
170
- {
171
- id: "faq-006",
172
- category: "Orders & Payments",
173
- question: "How do I cancel or modify an order?",
174
- answer: "You can cancel your order from the Order Details page if it hasn't been picked up yet. Go to My Orders > Select Order > Cancel Order. For modifications, contact the cart owner directly through the chat feature. Cancellation before preparation gets a full refund; after preparation, a partial refund may apply.",
175
- helpful: 178,
176
- tags: [
177
- "cancel",
178
- "modify",
179
- "refund",
180
- "orders"
181
- ]
182
- },
183
- {
184
- id: "faq-007",
185
- category: "Cart Owners",
186
- question: "How do I register my cart on AdapterCloud?",
187
- answer: "To register your cart, sign up as a Cart Owner and complete the verification process. You'll need to provide business details, license documents (FSSAI for food carts, GST if applicable), photos of your cart, and your preferred operating location. Our team will review and approve your application within 2-3 business days.",
188
- helpful: 67,
189
- tags: [
190
- "cart",
191
- "registration",
192
- "business",
193
- "verification"
194
- ]
195
- },
196
- {
197
- id: "faq-008",
198
- category: "Cart Owners",
199
- question: "What commission does AdapterCloud charge?",
200
- answer: "AdapterCloud charges a commission of 15-20% on each order, depending on your cart category and monthly order volume. Higher volume cart owners get reduced rates. This includes payment processing, marketing support, customer acquisition, and platform maintenance. You can view the detailed commission structure in your dashboard under\"Finances\".",
201
- helpful: 94,
202
- tags: [
203
- "commission",
204
- "fees",
205
- "business",
206
- "pricing"
207
- ]
208
- },
209
- {
210
- id: "faq-009",
211
- category: "Cart Owners",
212
- question: "How do I manage my menu and pricing?",
213
- answer: "Go to your Cart Dashboard > Menu Management to add, edit, or remove items. You can set prices, mark items as available/unavailable, add photos and descriptions, create categories, and set up combo offers. Changes are reflected instantly on the platform.",
214
- helpful: 72,
215
- tags: [
216
- "menu",
217
- "pricing",
218
- "cart",
219
- "management"
220
- ]
221
- },
222
- {
223
- id: "faq-010",
224
- category: "Delivery & Workers",
225
- question: "How do I become a delivery worker?",
226
- answer: "Apply through the\"Join as Worker\" section on the app. You'll need a valid driving license, vehicle registration (bike/scooter), Aadhaar card, PAN card, and a smartphone with GPS. After document verification and background check (3-5 days), you'll receive online training and can start accepting delivery requests.",
227
- helpful: 78,
228
- tags: [
229
- "worker",
230
- "delivery",
231
- "application",
232
- "requirements"
233
- ]
234
- },
235
- {
236
- id: "faq-011",
237
- category: "Delivery & Workers",
238
- question: "How is delivery worker pay calculated?",
239
- answer: "Delivery pay includes a base fee per delivery (varies by distance), surge pricing during peak hours, and tips from customers. You also earn bonuses for completing a certain number of deliveries per day/week. Payments are settled daily to your registered bank account.",
240
- helpful: 115,
241
- tags: [
242
- "pay",
243
- "earnings",
244
- "delivery",
245
- "worker"
246
- ]
247
- },
248
- {
249
- id: "faq-012",
250
- category: "Investors",
251
- question: "What are the minimum investment requirements?",
252
- answer: "The minimum investment amount varies by cart and investment type, typically starting from ₹50,000. You can invest in individual carts or diversified portfolios. Expected annual returns range from 12-18%, depending on the cart's performance. All investments are subject to market risk.",
253
- helpful: 112,
254
- tags: [
255
- "investment",
256
- "minimum",
257
- "returns",
258
- "portfolio"
259
- ]
260
- },
261
- {
262
- id: "faq-013",
263
- category: "Investors",
264
- question: "How are returns distributed?",
265
- answer: "Returns are distributed monthly based on the cart's revenue performance. You can view detailed performance reports, revenue breakdowns, and ROI analytics in your Investor Dashboard. Funds can be withdrawn to your bank account with a 3-day processing time.",
266
- helpful: 98,
267
- tags: [
268
- "returns",
269
- "distribution",
270
- "revenue",
271
- "investor"
272
- ]
273
- },
274
- {
275
- id: "faq-014",
276
- category: "Technical Issues",
277
- question: "The app is not working properly. What should I do?",
278
- answer: "Try these steps: 1) Close and restart the app, 2) Check your internet connection (try switching between WiFi and mobile data), 3) Update to the latest app version from the app store, 4) Clear app cache from your phone settings, 5) Restart your device. If the issue persists, create a support ticket with details about the problem, your device model, and app version.",
279
- helpful: 134,
280
- tags: [
281
- "technical",
282
- "app",
283
- "troubleshooting",
284
- "bug"
285
- ]
286
- },
287
- {
288
- id: "faq-015",
289
- category: "Technical Issues",
290
- question: "Why am I not receiving notifications?",
291
- answer: "Ensure notifications are enabled in both your phone settings and the app settings. Go to Phone Settings > Apps > AdapterCloud > Notifications and enable all categories. Also check the app: Settings > Preferences > Notification Settings. If using battery optimization, add AdapterCloud to the exception list.",
292
- helpful: 87,
293
- tags: [
294
- "notifications",
295
- "technical",
296
- "settings"
297
- ]
298
- },
299
- {
300
- id: "faq-016",
301
- category: "Billing & Refunds",
302
- question: "How do I request a refund?",
303
- answer: "Refunds can be requested within 24 hours of order placement if the order hasn't been prepared. Go to\"My Orders\" > Select the order > \"Request Refund\". You'll need to select a reason. Refunds for quality issues can be raised within 2 hours of delivery. Refunds are processed within 3-5 business days to your original payment method.",
304
- helpful: 167,
305
- tags: [
306
- "refund",
307
- "cancellation",
308
- "billing",
309
- "money"
310
- ]
311
- },
312
- {
313
- id: "faq-017",
314
- category: "Billing & Refunds",
315
- question: "Where can I find my payment receipts?",
316
- answer: "All payment receipts are available under My Orders > Select Order > View Receipt. You can also find consolidated billing statements under Settings > Billing > Invoice History. Receipts can be downloaded as PDF or emailed to your registered address.",
317
- helpful: 65,
318
- tags: [
319
- "receipt",
320
- "invoice",
321
- "billing",
322
- "download"
323
- ]
324
- },
325
- {
326
- id: "faq-018",
327
- category: "Privacy & Security",
328
- question: "How is my personal data protected?",
329
- answer: "We follow industry-standard encryption (AES-256) for all personal data at rest and TLS 1.3 for data in transit. We are compliant with India's DPDP Act. You can control your data sharing preferences in Settings > Privacy. We never sell your personal information to third parties.",
330
- helpful: 109,
331
- tags: [
332
- "privacy",
333
- "data",
334
- "encryption",
335
- "security"
336
- ]
337
- },
338
- {
339
- id: "faq-019",
340
- category: "Privacy & Security",
341
- question: "How do I enable two-factor authentication?",
342
- answer: "Go to Settings > Security > Two-Factor Authentication and toggle it on. You can choose between SMS OTP or an authenticator app (Google Authenticator, Authy). We strongly recommend enabling 2FA for enhanced account security, especially for Cart Owners and Investors.",
343
- helpful: 76,
344
- tags: [
345
- "2fa",
346
- "authentication",
347
- "security",
348
- "account"
349
- ]
350
- },
351
- {
352
- id: "faq-020",
353
- category: "Privacy & Security",
354
- question: "How can I delete my account?",
355
- answer: "You can request account deletion from Settings > Privacy > Delete Account. Please note: this action is irreversible. All your data, order history, and wallet balance will be permanently removed after a 30-day cooling period. Pending orders or investments must be settled before deletion.",
356
- helpful: 43,
357
- tags: [
358
- "delete",
359
- "account",
360
- "privacy",
361
- "data"
362
- ]
363
- }
364
- ], ue = [
365
- {
366
- id: "ticket-001",
367
- subject: "Payment failed but amount deducted",
368
- category: "Billing & Refunds",
369
- priority: "high",
370
- status: "in-progress",
371
- description: "I placed an order for ₹285 but the payment failed. However, the amount was deducted from my SBI account. Transaction ID: TXN123456789.",
372
- createdAt: "2024-06-23T14:30:00Z",
373
- updatedAt: "2024-06-24T09:15:00Z",
374
- responses: [
375
- {
376
- id: "resp-001",
377
- message: "Thank you for contacting us. We're investigating the payment issue. Could you please confirm the exact amount and your account details?",
378
- sender: "support",
379
- timestamp: "2024-06-23T16:45:00Z"
380
- },
381
- {
382
- id: "resp-002",
383
- message: "Transaction ID: TXN123456789. Amount: ₹285. Deducted from my SBI savings account ending in 4521.",
384
- sender: "user",
385
- timestamp: "2024-06-23T17:20:00Z"
386
- },
387
- {
388
- id: "resp-003",
389
- message: "We've verified the transaction. The refund of ₹285 has been initiated and will reflect in your account within 3-5 business days. Reference: REF-2024-06-24-001.",
390
- sender: "support",
391
- timestamp: "2024-06-24T09:15:00Z"
392
- }
393
- ]
394
- },
395
- {
396
- id: "ticket-002",
397
- subject: "Unable to update cart location",
398
- category: "Technical Issues",
399
- priority: "medium",
400
- status: "resolved",
401
- description: "I'm unable to update my cart location in the app. The save button is not responding when I tap it. Tried clearing cache and reinstalling.",
402
- createdAt: "2024-06-22T11:20:00Z",
403
- updatedAt: "2024-06-22T18:30:00Z",
404
- responses: [{
405
- id: "resp-004",
406
- message: "This was a known bug affecting Cart Owners on Android devices. It has been fixed in the latest app update (v2.1.3). Please update your app from the Play Store and try again.",
407
- sender: "support",
408
- timestamp: "2024-06-22T18:30:00Z"
409
- }]
410
- },
411
- {
412
- id: "ticket-003",
413
- subject: "Wrong items delivered in order #ORD-4521",
414
- category: "Orders & Payments",
415
- priority: "high",
416
- status: "open",
417
- description: "Received completely different items from what I ordered. Order #ORD-4521 was for 2 Masala Dosas and 1 Filter Coffee, but received Idli and Sambar instead.",
418
- createdAt: "2024-06-25T08:45:00Z",
419
- updatedAt: "2024-06-25T08:45:00Z",
420
- responses: []
421
- },
422
- {
423
- id: "ticket-004",
424
- subject: "Investment returns not credited for May",
425
- category: "Investors",
426
- priority: "medium",
427
- status: "closed",
428
- description: "My investment returns for the month of May 2024 have not been credited to my wallet. Portfolio: Diversified South Indian Carts.",
429
- createdAt: "2024-06-10T09:00:00Z",
430
- updatedAt: "2024-06-12T14:20:00Z",
431
- responses: [{
432
- id: "resp-005",
433
- message: "We apologize for the delay. May returns have been processed and credited to your wallet. The delay was due to a system migration. You should see ₹4,250 credited.",
434
- sender: "support",
435
- timestamp: "2024-06-12T14:20:00Z"
436
- }]
437
- }
438
- ], de = [
439
- {
440
- id: "art-1",
441
- title: "Getting Started with AdapterCloud",
442
- category: "Getting Started",
443
- views: 12450
444
- },
445
- {
446
- id: "art-2",
447
- title: "How to Place Your First Order",
448
- category: "Orders",
449
- views: 9823
450
- },
451
- {
452
- id: "art-3",
453
- title: "Understanding Investment Returns",
454
- category: "Investors",
455
- views: 7654
456
- },
457
- {
458
- id: "art-4",
459
- title: "Setting Up Your Cart Business",
460
- category: "Cart Owners",
461
- views: 6543
462
- },
463
- {
464
- id: "art-5",
465
- title: "Payment Troubleshooting Guide",
466
- category: "Payments",
467
- views: 5890
468
- },
469
- {
470
- id: "art-6",
471
- title: "Delivery Partner Onboarding Guide",
472
- category: "Workers",
473
- views: 4321
474
- }
475
- ];
476
- function L(e) {
477
- switch (e) {
478
- case "open": return u;
479
- case "in-progress": return d;
480
- case "resolved": return s;
481
- case "closed": return j;
482
- }
483
- }
484
- function R(e) {
485
- switch (e) {
486
- case "open": return "bg-accent-blue-subtle/10 text-accent-blue";
487
- case "in-progress": return "bg-status-warning-bg-subtle/10 text-status-warning-text";
488
- case "resolved": return "bg-status-success-bg-subtle/10 text-status-success-text";
489
- case "closed": return "bg-bg-sunken text-text-secondary";
490
- }
491
- }
492
- function z(e) {
493
- switch (e) {
494
- case "urgent": return "bg-status-error-bg-subtle/10 text-status-error-text";
495
- case "high": return "bg-accent-orange-subtle/10 text-accent-orange";
496
- case "medium": return "bg-accent-blue-subtle/10 text-accent-blue";
497
- case "low": return "bg-bg-sunken text-text-secondary";
498
- }
499
- }
500
- function B(e) {
501
- return e.replace("-", " ").replace(/\b\w/g, (e) => e.toUpperCase());
502
- }
503
- function V() {
504
- let { currentUser: te } = e(), [u, d] = a("faq"), [p, g] = a(""), [y, x] = a(""), [S, E] = a(null), [D, O] = a(le), [k, j] = a(ue), [V, H] = a(!1), [U, W] = a(!1), [G, K] = a(""), [q, J] = a(""), [Y, X] = a({
505
- subject: "",
506
- category: "",
507
- priority: "medium",
508
- description: ""
509
- }), Z = i(() => D.filter((e) => {
510
- let t = !p || e.question.toLowerCase().includes(p.toLowerCase()) || e.answer.toLowerCase().includes(p.toLowerCase()) || e.tags.some((e) => e.toLowerCase().includes(p.toLowerCase())), n = !y || e.category === y;
511
- return t && n;
512
- }), [
513
- D,
514
- p,
515
- y
516
- ]), Q = i(() => ({
517
- open: k.filter((e) => e.status === "open").length,
518
- inProgress: k.filter((e) => e.status === "in-progress").length,
519
- resolved: k.filter((e) => e.status === "resolved").length,
520
- closed: k.filter((e) => e.status === "closed").length,
521
- total: k.length
522
- }), [k]), fe = (e) => {
523
- E((t) => t === e ? null : e);
524
- }, pe = (e) => {
525
- O((t) => t.map((t) => t.id === e ? {
526
- ...t,
527
- helpful: t.helpful + 1
528
- } : t));
529
- }, $ = (e) => {
530
- switch (e.type) {
531
- case "email":
532
- window.location.href = `mailto:${e.value}`;
533
- break;
534
- case "phone":
535
- window.location.href = `tel:${e.value.replace(/[^0-9+]/g, "")}`;
536
- break;
537
- case "whatsapp":
538
- window.open(`https://wa.me/${e.value.replace(/[^0-9]/g, "")}`, "_blank");
539
- break;
540
- case "chat":
541
- alert("Live chat will be available soon!");
542
- break;
543
- }
544
- }, me = () => {
545
- if (J(""), K(""), !Y.subject.trim()) {
546
- J("Please enter a subject for your ticket.");
547
- return;
548
- }
549
- if (!Y.description.trim()) {
550
- J("Please describe your issue in the description field.");
551
- return;
552
- }
553
- if (!Y.category) {
554
- J("Please select a category.");
555
- return;
556
- }
557
- W(!0), setTimeout(() => {
558
- let e = {
559
- id: `ticket-${Date.now()}`,
560
- subject: Y.subject,
561
- category: Y.category,
562
- priority: Y.priority,
563
- status: "open",
564
- description: Y.description,
565
- createdAt: (/* @__PURE__ */ new Date()).toISOString(),
566
- updatedAt: (/* @__PURE__ */ new Date()).toISOString(),
567
- responses: []
568
- };
569
- j((t) => [e, ...t]), X({
570
- subject: "",
571
- category: "",
572
- priority: "medium",
573
- description: ""
574
- }), W(!1), H(!1), K("Support ticket created successfully! Our team will respond within 24 hours."), d("tickets"), setTimeout(() => K(""), 5e3);
575
- }, 1e3);
576
- }, he = [
577
- {
578
- id: "faq",
579
- label: "FAQ",
580
- icon: re
581
- },
582
- {
583
- id: "contact",
584
- label: "Contact Us",
585
- icon: v
586
- },
587
- {
588
- id: "tickets",
589
- label: "My Tickets",
590
- icon: T
591
- }
592
- ];
593
- return /* @__PURE__ */ P(n, {
594
- title: "Help & Support",
595
- description: "Find answers, contact support, or track your requests",
596
- purpose: "Stuck on something? Search the FAQs for a quick answer, raise a support ticket when you need a human, and track the status of requests you've already submitted — all in one place.",
597
- children: [
598
- G && /* @__PURE__ */ P("div", {
599
- className: "mb-4 flex items-center gap-2 rounded-lg border border-status-success-border/30 bg-status-success-bg-subtle/10 px-4 py-3 text-sm text-status-success-text",
600
- children: [
601
- /* @__PURE__ */ N(s, { className: "h-4 w-4 shrink-0" }),
602
- G,
603
- /* @__PURE__ */ N("button", {
604
- type: "button",
605
- onClick: () => K(""),
606
- className: "ml-auto",
607
- children: /* @__PURE__ */ N(A, { className: "h-4 w-4" })
608
- })
609
- ]
610
- }),
611
- /* @__PURE__ */ N(se, {
612
- className: "mb-6",
613
- role: "region",
614
- "aria-label": "Search help",
615
- children: /* @__PURE__ */ P("div", {
616
- className: "relative",
617
- children: [
618
- /* @__PURE__ */ N(b, { className: "absolute left-3 top-1/2 h-5 w-5 -translate-y-1/2 text-text-secondary" }),
619
- /* @__PURE__ */ N("input", {
620
- type: "text",
621
- value: p,
622
- onChange: (e) => {
623
- g(e.target.value), u !== "faq" && d("faq");
624
- },
625
- placeholder: "Search help articles, FAQs, and more...",
626
- className: "w-full rounded-lg border border-border-subtle bg-bg-surface py-3 pl-10 pr-10 text-sm text-text-primary placeholder:text-text-secondary focus:outline-none focus:ring-2 focus:ring-[var(--color-focus-ring)]"
627
- }),
628
- p && /* @__PURE__ */ N("button", {
629
- type: "button",
630
- onClick: () => g(""),
631
- className: "absolute right-3 top-1/2 -translate-y-1/2 text-text-secondary hover:text-text-primary",
632
- children: /* @__PURE__ */ N(A, { className: "h-4 w-4" })
633
- })
634
- ]
635
- })
636
- }),
637
- /* @__PURE__ */ P("section", {
638
- className: "mb-6",
639
- children: [/* @__PURE__ */ N("h2", {
640
- className: "text-lg font-semibold text-text-primary mb-3",
641
- children: "Browse Help Topics"
642
- }), /* @__PURE__ */ N("div", {
643
- className: "grid grid-cols-1 gap-3 sm:grid-cols-2 lg:grid-cols-3",
644
- children: ce.map((e) => {
645
- let n = e.icon;
646
- return /* @__PURE__ */ P("button", {
647
- type: "button",
648
- onClick: () => {
649
- x(e.label === y ? "" : e.label), d("faq");
650
- },
651
- className: t("flex items-start gap-3 rounded-lg border bg-bg-surface p-4 text-left transition-all hover:shadow-sm", y === e.label ? "border-primary ring-1 ring-primary" : "border-border-subtle"),
652
- children: [/* @__PURE__ */ N("div", {
653
- className: t("flex h-10 w-10 shrink-0 items-center justify-center rounded-lg", e.color),
654
- children: /* @__PURE__ */ N(n, { className: "h-5 w-5" })
655
- }), /* @__PURE__ */ P("div", { children: [/* @__PURE__ */ N("p", {
656
- className: "text-sm font-semibold text-text-primary",
657
- children: e.label
658
- }), /* @__PURE__ */ N("p", {
659
- className: "text-xs text-text-secondary",
660
- children: e.description
661
- })] })]
662
- }, e.label);
663
- })
664
- })]
665
- }),
666
- /* @__PURE__ */ N("section", {
667
- className: "mb-6",
668
- children: /* @__PURE__ */ N("div", {
669
- className: "flex space-x-1 bg-bg-sunken p-1 rounded-lg w-full sm:w-fit",
670
- children: he.map((e) => {
671
- let n = e.icon;
672
- return /* @__PURE__ */ P("button", {
673
- type: "button",
674
- onClick: () => d(e.id),
675
- className: t("flex flex-1 sm:flex-none items-center justify-center gap-2 rounded-md px-4 py-2 text-sm font-medium transition-colors", u === e.id ? "bg-bg-surface text-text-primary shadow-sm" : "text-text-secondary hover:text-text-primary"),
676
- children: [
677
- /* @__PURE__ */ N(n, { className: "h-4 w-4" }),
678
- /* @__PURE__ */ N("span", { children: e.label }),
679
- e.id === "tickets" && Q.open > 0 && /* @__PURE__ */ N("span", {
680
- className: "flex h-5 min-w-[20px] items-center justify-center rounded-full bg-action-primary-bg px-1.5 text-xs font-medium text-action-primary-text",
681
- children: Q.open
682
- })
683
- ]
684
- }, e.id);
685
- })
686
- })
687
- }),
688
- u === "faq" && /* @__PURE__ */ P("div", { children: [/* @__PURE__ */ P("div", {
689
- className: "mb-4 flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between",
690
- children: [/* @__PURE__ */ P("p", {
691
- className: "text-sm text-text-secondary",
692
- children: [
693
- Z.length,
694
- " question",
695
- Z.length === 1 ? "" : "s",
696
- " found",
697
- y && /* @__PURE__ */ P("span", { children: [
698
- " ",
699
- "in ",
700
- /* @__PURE__ */ N("span", {
701
- className: "font-medium text-text-primary",
702
- children: y
703
- }),
704
- /* @__PURE__ */ N("button", {
705
- type: "button",
706
- onClick: () => x(""),
707
- className: "ml-1 text-primary hover:underline",
708
- children: "(clear)"
709
- })
710
- ] })
711
- ]
712
- }), /* @__PURE__ */ P("select", {
713
- value: y,
714
- onChange: (e) => x(e.target.value),
715
- className: "rounded-lg border border-border-subtle bg-bg-surface px-3 py-2 text-sm text-text-primary focus:outline-none focus:ring-2 focus:ring-[var(--color-focus-ring)]",
716
- children: [/* @__PURE__ */ N("option", {
717
- value: "",
718
- children: "All Categories"
719
- }), F.map((e) => /* @__PURE__ */ N("option", {
720
- value: e,
721
- children: e
722
- }, e))]
723
- })]
724
- }), Z.length > 0 ? /* @__PURE__ */ N("div", {
725
- className: "space-y-3",
726
- children: Z.map((e) => {
727
- let n = S === e.id;
728
- return /* @__PURE__ */ P("div", {
729
- className: "rounded-lg border border-border-subtle bg-bg-surface overflow-hidden",
730
- children: [/* @__PURE__ */ P("button", {
731
- type: "button",
732
- onClick: () => fe(e.id),
733
- className: "flex w-full items-start justify-between gap-3 px-4 py-4 text-left hover:bg-accent/50 transition-colors",
734
- children: [/* @__PURE__ */ P("div", {
735
- className: "flex-1 min-w-0",
736
- children: [/* @__PURE__ */ P("div", {
737
- className: "flex flex-wrap items-center gap-2 mb-1",
738
- children: [/* @__PURE__ */ N("span", {
739
- className: "inline-flex items-center rounded-full bg-bg-sunken px-2 py-0.5 text-xs font-medium text-text-secondary",
740
- children: e.category
741
- }), /* @__PURE__ */ P("span", {
742
- className: "inline-flex items-center gap-1 text-xs text-text-secondary",
743
- children: [/* @__PURE__ */ N(w, { className: "h-3 w-3" }), e.helpful]
744
- })]
745
- }), /* @__PURE__ */ N("span", {
746
- className: t("text-sm", n ? "font-semibold text-text-primary" : "font-medium text-text-primary"),
747
- children: e.question
748
- })]
749
- }), N(n ? l : c, { className: "h-4 w-4 text-text-secondary shrink-0 mt-1" })]
750
- }), n && /* @__PURE__ */ P("div", {
751
- className: "border-t border-border-subtle px-4 pb-4 pt-3",
752
- children: [/* @__PURE__ */ N("p", {
753
- className: "text-sm text-text-secondary leading-relaxed mb-3",
754
- children: e.answer
755
- }), /* @__PURE__ */ P("div", {
756
- className: "flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between",
757
- children: [/* @__PURE__ */ N("div", {
758
- className: "flex flex-wrap gap-1.5",
759
- children: e.tags.map((e) => /* @__PURE__ */ P("span", {
760
- className: "inline-flex items-center gap-1 rounded-full bg-bg-sunken px-2 py-0.5 text-xs text-text-secondary",
761
- children: [/* @__PURE__ */ N(C, { className: "h-2.5 w-2.5" }), e]
762
- }, e))
763
- }), /* @__PURE__ */ P("button", {
764
- type: "button",
765
- onClick: (t) => {
766
- t.stopPropagation(), pe(e.id);
767
- },
768
- className: "flex items-center gap-1.5 rounded-lg border border-border-subtle px-3 py-1.5 text-xs font-medium text-text-secondary hover:bg-accent hover:text-text-primary transition-colors",
769
- children: [
770
- /* @__PURE__ */ N(w, { className: "h-3.5 w-3.5" }),
771
- "Helpful (",
772
- e.helpful,
773
- ")"
774
- ]
775
- })]
776
- })]
777
- })]
778
- }, e.id);
779
- })
780
- }) : /* @__PURE__ */ P("div", {
781
- className: "flex flex-col items-center justify-center rounded-lg border border-border-subtle bg-bg-surface py-12",
782
- children: [
783
- /* @__PURE__ */ N(b, { className: "h-12 w-12 text-text-secondary/50 mb-3" }),
784
- /* @__PURE__ */ N("h3", {
785
- className: "text-base font-semibold text-text-primary mb-1",
786
- children: "No FAQs found"
787
- }),
788
- /* @__PURE__ */ N("p", {
789
- className: "text-sm text-text-secondary mb-3",
790
- children: "Try adjusting your search or browse different categories"
791
- }),
792
- /* @__PURE__ */ N("button", {
793
- type: "button",
794
- onClick: () => {
795
- g(""), x("");
796
- },
797
- className: "text-sm font-medium text-primary hover:underline",
798
- children: "Clear all filters"
799
- })
800
- ]
801
- })] }),
802
- u === "contact" && /* @__PURE__ */ P("div", {
803
- className: "space-y-6",
804
- children: [
805
- /* @__PURE__ */ P("div", { children: [/* @__PURE__ */ N("h2", {
806
- className: "text-base font-semibold text-text-primary mb-3",
807
- children: "Get in Touch"
808
- }), /* @__PURE__ */ N("div", {
809
- className: "grid grid-cols-1 gap-4 sm:grid-cols-2",
810
- children: I.map((e) => {
811
- let n = e.icon;
812
- return /* @__PURE__ */ N("div", {
813
- className: "rounded-lg border border-border-seam bg-bg-surface p-5 bg-gloss-card shadow-pop",
814
- children: /* @__PURE__ */ P("div", {
815
- className: "flex items-start gap-4",
816
- children: [/* @__PURE__ */ N("div", {
817
- className: "flex h-12 w-12 shrink-0 items-center justify-center rounded-lg bg-bg-sunken",
818
- children: /* @__PURE__ */ N(n, { className: "h-6 w-6 text-text-secondary" })
819
- }), /* @__PURE__ */ P("div", {
820
- className: "flex-1 min-w-0",
821
- children: [
822
- /* @__PURE__ */ N("h3", {
823
- className: "text-sm font-semibold text-text-primary",
824
- children: e.label
825
- }),
826
- /* @__PURE__ */ N("p", {
827
- className: "text-sm text-text-primary mt-0.5 break-words",
828
- children: e.value
829
- }),
830
- /* @__PURE__ */ P("div", {
831
- className: "flex items-center gap-1 mt-1 text-xs text-text-secondary",
832
- children: [/* @__PURE__ */ N(f, { className: "h-3 w-3" }), e.responseTime]
833
- }),
834
- /* @__PURE__ */ P("button", {
835
- type: "button",
836
- onClick: () => $(e),
837
- disabled: !e.available,
838
- className: t("mt-3 flex items-center gap-1.5 rounded-lg px-4 py-2 text-sm font-medium transition-colors", e.available ? "bg-action-primary-bg text-action-primary-text hover:bg-action-primary-bg/90" : "bg-bg-sunken text-text-secondary cursor-not-allowed"),
839
- children: [e.type === "chat" ? "Start Chat" : e.type === "email" ? "Send Email" : "Contact", /* @__PURE__ */ N(ne, { className: "h-3.5 w-3.5" })]
840
- })
841
- ]
842
- })]
843
- })
844
- }, e.type);
845
- })
846
- })] }),
847
- /* @__PURE__ */ P("div", {
848
- className: "rounded-lg border border-border-subtle bg-bg-surface",
849
- children: [/* @__PURE__ */ P("div", {
850
- className: "flex items-center justify-between border-b border-border-subtle px-5 py-4",
851
- children: [/* @__PURE__ */ P("div", { children: [/* @__PURE__ */ N("h2", {
852
- className: "text-base font-semibold text-text-primary",
853
- children: "Submit a Support Ticket"
854
- }), /* @__PURE__ */ N("p", {
855
- className: "text-xs text-text-secondary mt-0.5",
856
- children: "Can't find your answer? Create a ticket and our team will help."
857
- })] }), /* @__PURE__ */ P("button", {
858
- type: "button",
859
- onClick: () => H(!V),
860
- className: "flex items-center gap-1.5 rounded-lg bg-action-primary-bg px-4 py-2 text-sm font-medium text-action-primary-text hover:bg-action-primary-bg/90 transition-colors",
861
- children: [/* @__PURE__ */ N(T, { className: "h-4 w-4" }), V ? "Close" : "New Ticket"]
862
- })]
863
- }), V && /* @__PURE__ */ P("div", {
864
- className: "p-5 space-y-4",
865
- children: [
866
- q && /* @__PURE__ */ P("div", {
867
- className: "flex items-center gap-2 rounded-lg border border-status-error-border/30 bg-status-error-bg-subtle/10 px-3 py-2 text-sm text-status-error-text",
868
- children: [/* @__PURE__ */ N(ee, { className: "h-4 w-4 shrink-0" }), q]
869
- }),
870
- /* @__PURE__ */ P("div", { children: [/* @__PURE__ */ P("label", {
871
- className: "block text-sm font-medium text-text-primary mb-1.5",
872
- children: ["Subject ", /* @__PURE__ */ N("span", {
873
- className: "text-status-error-text",
874
- children: "*"
875
- })]
876
- }), /* @__PURE__ */ N("input", {
877
- type: "text",
878
- value: Y.subject,
879
- onChange: (e) => X((t) => ({
880
- ...t,
881
- subject: e.target.value
882
- })),
883
- placeholder: "Brief description of your issue",
884
- className: "w-full rounded-lg border border-border-subtle bg-bg-surface px-3 py-2 text-sm text-text-primary placeholder:text-text-secondary focus:outline-none focus:ring-2 focus:ring-[var(--color-focus-ring)]"
885
- })] }),
886
- /* @__PURE__ */ P("div", {
887
- className: "grid grid-cols-1 gap-4 sm:grid-cols-2",
888
- children: [/* @__PURE__ */ P("div", { children: [/* @__PURE__ */ P("label", {
889
- className: "block text-sm font-medium text-text-primary mb-1.5",
890
- children: ["Category ", /* @__PURE__ */ N("span", {
891
- className: "text-status-error-text",
892
- children: "*"
893
- })]
894
- }), /* @__PURE__ */ P("select", {
895
- value: Y.category,
896
- onChange: (e) => X((t) => ({
897
- ...t,
898
- category: e.target.value
899
- })),
900
- className: "w-full rounded-lg border border-border-subtle bg-bg-surface px-3 py-2 text-sm text-text-primary focus:outline-none focus:ring-2 focus:ring-[var(--color-focus-ring)]",
901
- children: [/* @__PURE__ */ N("option", {
902
- value: "",
903
- children: "Select category"
904
- }), F.map((e) => /* @__PURE__ */ N("option", {
905
- value: e,
906
- children: e
907
- }, e))]
908
- })] }), /* @__PURE__ */ P("div", { children: [/* @__PURE__ */ N("label", {
909
- className: "block text-sm font-medium text-text-primary mb-1.5",
910
- children: "Priority"
911
- }), /* @__PURE__ */ P("select", {
912
- value: Y.priority,
913
- onChange: (e) => X((t) => ({
914
- ...t,
915
- priority: e.target.value
916
- })),
917
- className: "w-full rounded-lg border border-border-subtle bg-bg-surface px-3 py-2 text-sm text-text-primary focus:outline-none focus:ring-2 focus:ring-[var(--color-focus-ring)]",
918
- children: [
919
- /* @__PURE__ */ N("option", {
920
- value: "low",
921
- children: "Low"
922
- }),
923
- /* @__PURE__ */ N("option", {
924
- value: "medium",
925
- children: "Medium"
926
- }),
927
- /* @__PURE__ */ N("option", {
928
- value: "high",
929
- children: "High"
930
- }),
931
- /* @__PURE__ */ N("option", {
932
- value: "urgent",
933
- children: "Urgent"
934
- })
935
- ]
936
- })] })]
937
- }),
938
- /* @__PURE__ */ P("div", { children: [/* @__PURE__ */ P("label", {
939
- className: "block text-sm font-medium text-text-primary mb-1.5",
940
- children: ["Description ", /* @__PURE__ */ N("span", {
941
- className: "text-status-error-text",
942
- children: "*"
943
- })]
944
- }), /* @__PURE__ */ N("textarea", {
945
- rows: 5,
946
- value: Y.description,
947
- onChange: (e) => X((t) => ({
948
- ...t,
949
- description: e.target.value
950
- })),
951
- placeholder: "Please describe your issue in detail...",
952
- className: "w-full rounded-lg border border-border-subtle bg-bg-surface px-3 py-2 text-sm text-text-primary placeholder:text-text-secondary focus:outline-none focus:ring-2 focus:ring-[var(--color-focus-ring)] resize-none"
953
- })] }),
954
- /* @__PURE__ */ P("div", {
955
- className: "rounded-lg bg-accent-blue-subtle/5 border border-accent-blue-subtle/20 p-4",
956
- children: [/* @__PURE__ */ P("div", {
957
- className: "flex items-center gap-2 mb-2",
958
- children: [/* @__PURE__ */ N(ae, { className: "h-4 w-4 text-accent-blue" }), /* @__PURE__ */ N("h4", {
959
- className: "text-sm font-medium text-accent-blue",
960
- children: "Tips for faster resolution"
961
- })]
962
- }), /* @__PURE__ */ P("ul", {
963
- className: "text-xs text-accent-blue space-y-1 ml-6 list-disc",
964
- children: [
965
- /* @__PURE__ */ N("li", { children: "Be specific about the issue and include steps to reproduce it" }),
966
- /* @__PURE__ */ N("li", { children: "Include relevant order IDs, transaction IDs, or error messages" }),
967
- /* @__PURE__ */ N("li", { children: "Mention your device type and app version for technical issues" }),
968
- /* @__PURE__ */ N("li", { children: "Attach screenshots if they help illustrate the problem" })
969
- ]
970
- })]
971
- }),
972
- /* @__PURE__ */ P("div", {
973
- className: "flex items-center gap-3 pt-1",
974
- children: [/* @__PURE__ */ N("button", {
975
- type: "button",
976
- onClick: me,
977
- disabled: U,
978
- className: t("flex items-center gap-2 rounded-lg px-5 py-2.5 text-sm font-medium text-action-primary-text transition-colors", U ? "bg-action-primary-bg/70 cursor-not-allowed" : "bg-action-primary-bg hover:bg-action-primary-bg/90"),
979
- children: U ? /* @__PURE__ */ P(M, { children: [/* @__PURE__ */ N("span", { className: "h-4 w-4 animate-spin rounded-full border-2 border-primary-foreground/30 border-t-primary-foreground" }), "Submitting..."] }) : /* @__PURE__ */ P(M, { children: [/* @__PURE__ */ N(oe, { className: "h-4 w-4" }), "Submit Ticket"] })
980
- }), /* @__PURE__ */ N("button", {
981
- type: "button",
982
- onClick: () => {
983
- H(!1), J("");
984
- },
985
- className: "rounded-lg border border-border-subtle px-4 py-2.5 text-sm font-medium text-text-primary hover:bg-accent transition-colors",
986
- children: "Cancel"
987
- })]
988
- })
989
- ]
990
- })]
991
- }),
992
- /* @__PURE__ */ P("div", {
993
- className: "grid grid-cols-1 gap-4 sm:grid-cols-2",
994
- children: [/* @__PURE__ */ P("div", {
995
- className: "rounded-lg border border-border-seam bg-bg-surface p-5 bg-gloss-card shadow-pop",
996
- children: [/* @__PURE__ */ P("div", {
997
- className: "flex items-center gap-2 mb-3",
998
- children: [/* @__PURE__ */ N(f, { className: "h-5 w-5 text-text-secondary" }), /* @__PURE__ */ N("h3", {
999
- className: "text-sm font-semibold text-text-primary",
1000
- children: "Support Hours"
1001
- })]
1002
- }), /* @__PURE__ */ P("div", {
1003
- className: "space-y-2 text-sm",
1004
- children: [
1005
- /* @__PURE__ */ P("div", {
1006
- className: "flex justify-between",
1007
- children: [/* @__PURE__ */ N("span", {
1008
- className: "text-text-secondary",
1009
- children: "Monday - Friday"
1010
- }), /* @__PURE__ */ N("span", {
1011
- className: "font-medium text-text-primary",
1012
- children: "9:00 AM - 9:00 PM IST"
1013
- })]
1014
- }),
1015
- /* @__PURE__ */ P("div", {
1016
- className: "flex justify-between",
1017
- children: [/* @__PURE__ */ N("span", {
1018
- className: "text-text-secondary",
1019
- children: "Saturday"
1020
- }), /* @__PURE__ */ N("span", {
1021
- className: "font-medium text-text-primary",
1022
- children: "10:00 AM - 6:00 PM IST"
1023
- })]
1024
- }),
1025
- /* @__PURE__ */ P("div", {
1026
- className: "flex justify-between",
1027
- children: [/* @__PURE__ */ N("span", {
1028
- className: "text-text-secondary",
1029
- children: "Sunday"
1030
- }), /* @__PURE__ */ N("span", {
1031
- className: "font-medium text-text-primary",
1032
- children: "Closed"
1033
- })]
1034
- }),
1035
- /* @__PURE__ */ P("div", {
1036
- className: "flex justify-between pt-2 border-t border-border-subtle",
1037
- children: [/* @__PURE__ */ N("span", {
1038
- className: "text-text-secondary",
1039
- children: "Email Support"
1040
- }), /* @__PURE__ */ N("span", {
1041
- className: "font-medium text-text-primary",
1042
- children: "24/7"
1043
- })]
1044
- })
1045
- ]
1046
- })]
1047
- }), /* @__PURE__ */ P("div", {
1048
- className: "rounded-lg border border-status-error-border/20 bg-status-error-bg-subtle/5 p-5",
1049
- children: [
1050
- /* @__PURE__ */ P("div", {
1051
- className: "flex items-center gap-2 mb-3",
1052
- children: [/* @__PURE__ */ N(o, { className: "h-5 w-5 text-status-error-text" }), /* @__PURE__ */ N("h3", {
1053
- className: "text-sm font-semibold text-status-error-text",
1054
- children: "Emergency Contact"
1055
- })]
1056
- }),
1057
- /* @__PURE__ */ N("p", {
1058
- className: "text-sm text-status-error-text mb-3",
1059
- children: "For urgent issues like safety concerns, fraud, or account compromise:"
1060
- }),
1061
- /* @__PURE__ */ P("div", {
1062
- className: "space-y-2",
1063
- children: [/* @__PURE__ */ P("div", {
1064
- className: "flex items-center gap-2 text-sm",
1065
- children: [
1066
- /* @__PURE__ */ N(v, { className: "h-4 w-4 text-status-error-text" }),
1067
- /* @__PURE__ */ N("span", {
1068
- className: "font-medium text-status-error-text",
1069
- children: "+91 80-4012-9999"
1070
- }),
1071
- /* @__PURE__ */ N("span", {
1072
- className: "text-xs text-status-error-text",
1073
- children: "(24/7)"
1074
- })
1075
- ]
1076
- }), /* @__PURE__ */ P("div", {
1077
- className: "flex items-center gap-2 text-sm",
1078
- children: [/* @__PURE__ */ N(h, { className: "h-4 w-4 text-status-error-text" }), /* @__PURE__ */ N("span", {
1079
- className: "font-medium text-status-error-text",
1080
- children: "emergency@adaptercloud.com"
1081
- })]
1082
- })]
1083
- })
1084
- ]
1085
- })]
1086
- }),
1087
- /* @__PURE__ */ P("div", { children: [/* @__PURE__ */ N("h2", {
1088
- className: "text-base font-semibold text-text-primary mb-3",
1089
- children: "Popular Articles"
1090
- }), /* @__PURE__ */ N("div", {
1091
- className: "grid grid-cols-1 gap-3 sm:grid-cols-2 lg:grid-cols-3",
1092
- children: de.map((e) => /* @__PURE__ */ P("button", {
1093
- type: "button",
1094
- className: "flex items-start gap-3 rounded-lg border border-border-seam bg-bg-surface p-4 text-left hover:bg-accent/50 transition-colors bg-gloss-card shadow-pop",
1095
- children: [/* @__PURE__ */ N(m, { className: "h-5 w-5 text-text-secondary shrink-0 mt-0.5" }), /* @__PURE__ */ P("div", {
1096
- className: "min-w-0",
1097
- children: [/* @__PURE__ */ N("p", {
1098
- className: "text-sm font-medium text-text-primary truncate",
1099
- children: e.title
1100
- }), /* @__PURE__ */ P("div", {
1101
- className: "flex items-center gap-2 mt-1",
1102
- children: [/* @__PURE__ */ N("span", {
1103
- className: "text-xs text-text-secondary",
1104
- children: e.category
1105
- }), /* @__PURE__ */ P("span", {
1106
- className: "text-xs text-text-secondary",
1107
- children: [e.views.toLocaleString("en-IN"), " views"]
1108
- })]
1109
- })]
1110
- })]
1111
- }, e.id))
1112
- })] })
1113
- ]
1114
- }),
1115
- u === "tickets" && /* @__PURE__ */ P("div", {
1116
- className: "space-y-4",
1117
- children: [
1118
- /* @__PURE__ */ P("div", {
1119
- className: "grid grid-cols-2 gap-3 sm:grid-cols-4",
1120
- children: [
1121
- /* @__PURE__ */ P("div", {
1122
- className: "rounded-lg border border-border-subtle bg-bg-surface p-3 text-center",
1123
- children: [/* @__PURE__ */ N("p", {
1124
- className: "text-2xl font-bold text-text-primary",
1125
- children: Q.total
1126
- }), /* @__PURE__ */ N("p", {
1127
- className: "text-xs text-text-secondary",
1128
- children: "Total"
1129
- })]
1130
- }),
1131
- /* @__PURE__ */ P("div", {
1132
- className: "rounded-lg border border-border-subtle bg-bg-surface p-3 text-center",
1133
- children: [/* @__PURE__ */ N("p", {
1134
- className: "text-2xl font-bold text-accent-blue",
1135
- children: Q.open
1136
- }), /* @__PURE__ */ N("p", {
1137
- className: "text-xs text-text-secondary",
1138
- children: "Open"
1139
- })]
1140
- }),
1141
- /* @__PURE__ */ P("div", {
1142
- className: "rounded-lg border border-border-subtle bg-bg-surface p-3 text-center",
1143
- children: [/* @__PURE__ */ N("p", {
1144
- className: "text-2xl font-bold text-status-warning-text",
1145
- children: Q.inProgress
1146
- }), /* @__PURE__ */ N("p", {
1147
- className: "text-xs text-text-secondary",
1148
- children: "In Progress"
1149
- })]
1150
- }),
1151
- /* @__PURE__ */ P("div", {
1152
- className: "rounded-lg border border-border-subtle bg-bg-surface p-3 text-center",
1153
- children: [/* @__PURE__ */ N("p", {
1154
- className: "text-2xl font-bold text-status-success-text",
1155
- children: Q.resolved
1156
- }), /* @__PURE__ */ N("p", {
1157
- className: "text-xs text-text-secondary",
1158
- children: "Resolved"
1159
- })]
1160
- })
1161
- ]
1162
- }),
1163
- /* @__PURE__ */ P("div", {
1164
- className: "flex items-center justify-between",
1165
- children: [/* @__PURE__ */ P("p", {
1166
- className: "text-sm text-text-secondary",
1167
- children: [
1168
- k.length,
1169
- " ticket",
1170
- k.length === 1 ? "" : "s"
1171
- ]
1172
- }), /* @__PURE__ */ P("button", {
1173
- type: "button",
1174
- onClick: () => {
1175
- H(!0), d("contact");
1176
- },
1177
- className: "flex items-center gap-1.5 rounded-lg bg-action-primary-bg px-4 py-2 text-sm font-medium text-action-primary-text hover:bg-action-primary-bg/90 transition-colors",
1178
- children: [/* @__PURE__ */ N(T, { className: "h-4 w-4" }), "New Ticket"]
1179
- })]
1180
- }),
1181
- k.length === 0 ? /* @__PURE__ */ P("div", {
1182
- className: "flex flex-col items-center justify-center rounded-lg border border-border-subtle bg-bg-surface py-12",
1183
- children: [
1184
- /* @__PURE__ */ N(T, { className: "h-12 w-12 text-text-secondary/50 mb-3" }),
1185
- /* @__PURE__ */ N("h3", {
1186
- className: "text-base font-semibold text-text-primary mb-1",
1187
- children: "No support tickets"
1188
- }),
1189
- /* @__PURE__ */ N("p", {
1190
- className: "text-sm text-text-secondary mb-3",
1191
- children: "You haven't created any support tickets yet"
1192
- }),
1193
- /* @__PURE__ */ N("button", {
1194
- type: "button",
1195
- onClick: () => {
1196
- H(!0), d("contact");
1197
- },
1198
- className: "flex items-center gap-1.5 rounded-lg bg-action-primary-bg px-4 py-2 text-sm font-medium text-action-primary-text hover:bg-action-primary-bg/90 transition-colors",
1199
- children: "Create Your First Ticket"
1200
- })
1201
- ]
1202
- }) : /* @__PURE__ */ N("div", {
1203
- className: "space-y-4",
1204
- children: k.map((e) => {
1205
- let n = L(e.status), i = e.responses.length > 0 ? e.responses[e.responses.length - 1] : null;
1206
- return /* @__PURE__ */ P("div", {
1207
- className: "rounded-lg border border-border-subtle bg-bg-surface overflow-hidden",
1208
- children: [/* @__PURE__ */ P("div", {
1209
- className: "p-4 sm:p-5",
1210
- children: [
1211
- /* @__PURE__ */ P("div", {
1212
- className: "flex flex-col gap-3 sm:flex-row sm:items-start sm:justify-between",
1213
- children: [/* @__PURE__ */ P("div", {
1214
- className: "flex-1 min-w-0",
1215
- children: [/* @__PURE__ */ P("div", {
1216
- className: "flex items-center gap-2 mb-1",
1217
- children: [/* @__PURE__ */ N(n, { className: t("h-4 w-4", R(e.status).split(" ").slice(1).join(" ")) }), /* @__PURE__ */ N("h3", {
1218
- className: "text-sm font-semibold text-text-primary truncate",
1219
- children: e.subject
1220
- })]
1221
- }), /* @__PURE__ */ P("p", {
1222
- className: "text-xs text-text-secondary",
1223
- children: [
1224
- e.category,
1225
- " · ",
1226
- e.id
1227
- ]
1228
- })]
1229
- }), /* @__PURE__ */ P("div", {
1230
- className: "flex flex-wrap gap-2",
1231
- children: [/* @__PURE__ */ N("span", {
1232
- className: t("inline-flex items-center rounded-full px-2.5 py-0.5 text-xs font-medium", z(e.priority)),
1233
- children: e.priority.toUpperCase()
1234
- }), /* @__PURE__ */ N("span", {
1235
- className: t("inline-flex items-center rounded-full px-2.5 py-0.5 text-xs font-medium", R(e.status)),
1236
- children: B(e.status)
1237
- })]
1238
- })]
1239
- }),
1240
- /* @__PURE__ */ N("p", {
1241
- className: "text-sm text-text-secondary mt-2 leading-relaxed",
1242
- children: e.description
1243
- }),
1244
- i && /* @__PURE__ */ P("div", {
1245
- className: "mt-3 rounded-lg bg-bg-sunken/50 border border-border-subtle p-3",
1246
- children: [/* @__PURE__ */ P("div", {
1247
- className: "flex items-center gap-1.5 mb-1",
1248
- children: [
1249
- /* @__PURE__ */ N(_, { className: "h-3.5 w-3.5 text-text-secondary" }),
1250
- /* @__PURE__ */ N("span", {
1251
- className: "text-xs font-medium text-text-primary",
1252
- children: i.sender === "support" ? "Support Team" : "You"
1253
- }),
1254
- /* @__PURE__ */ P("span", {
1255
- className: "text-xs text-text-secondary",
1256
- children: ["· ", r(i.timestamp)]
1257
- })
1258
- ]
1259
- }), /* @__PURE__ */ N("p", {
1260
- className: "text-sm text-text-secondary",
1261
- children: i.message
1262
- })]
1263
- }),
1264
- e.responses.length === 0 && e.status === "open" && /* @__PURE__ */ P("div", {
1265
- className: "mt-3 flex items-center gap-2 text-xs text-text-secondary",
1266
- children: [/* @__PURE__ */ N(ie, { className: "h-3.5 w-3.5" }), "Awaiting response from support team"]
1267
- })
1268
- ]
1269
- }), /* @__PURE__ */ P("div", {
1270
- className: "flex flex-col gap-1 border-t border-border-subtle bg-bg-sunken/30 px-4 py-2.5 sm:flex-row sm:items-center sm:justify-between text-xs text-text-secondary",
1271
- children: [
1272
- /* @__PURE__ */ P("span", { children: ["Created: ", r(e.createdAt)] }),
1273
- /* @__PURE__ */ P("span", { children: ["Updated: ", r(e.updatedAt)] }),
1274
- /* @__PURE__ */ P("span", { children: [
1275
- e.responses.length,
1276
- " response",
1277
- e.responses.length === 1 ? "" : "s"
1278
- ] })
1279
- ]
1280
- })]
1281
- }, e.id);
1282
- })
1283
- })
1284
- ]
1285
- }),
1286
- /* @__PURE__ */ N("section", {
1287
- className: "mt-8 rounded-lg border border-border-subtle bg-bg-sunken/30 p-5",
1288
- children: /* @__PURE__ */ P("div", {
1289
- className: "flex flex-col gap-4 sm:flex-row sm:items-start sm:justify-between",
1290
- children: [/* @__PURE__ */ P("div", { children: [/* @__PURE__ */ N("h3", {
1291
- className: "text-sm font-semibold text-text-primary mb-1",
1292
- children: "Still need help?"
1293
- }), /* @__PURE__ */ N("p", {
1294
- className: "text-xs text-text-secondary",
1295
- children: "Our support team is available Monday to Saturday. Average response time is under 4 hours."
1296
- })] }), /* @__PURE__ */ P("div", {
1297
- className: "flex flex-wrap gap-2",
1298
- children: [
1299
- /* @__PURE__ */ P("button", {
1300
- type: "button",
1301
- onClick: () => $(I[0]),
1302
- className: "flex items-center gap-1.5 rounded-lg border border-border-subtle bg-bg-surface px-3 py-2 text-xs font-medium text-text-primary hover:bg-accent transition-colors",
1303
- children: [/* @__PURE__ */ N(h, { className: "h-3.5 w-3.5" }), "Email Us"]
1304
- }),
1305
- /* @__PURE__ */ P("button", {
1306
- type: "button",
1307
- onClick: () => $(I[1]),
1308
- className: "flex items-center gap-1.5 rounded-lg border border-border-subtle bg-bg-surface px-3 py-2 text-xs font-medium text-text-primary hover:bg-accent transition-colors",
1309
- children: [/* @__PURE__ */ N(v, { className: "h-3.5 w-3.5" }), "Call Us"]
1310
- }),
1311
- /* @__PURE__ */ P("button", {
1312
- type: "button",
1313
- onClick: () => {
1314
- H(!0), d("contact");
1315
- },
1316
- className: "flex items-center gap-1.5 rounded-lg bg-action-primary-bg px-3 py-2 text-xs font-medium text-action-primary-text hover:bg-action-primary-bg/90 transition-colors",
1317
- children: [/* @__PURE__ */ N(T, { className: "h-3.5 w-3.5" }), "Submit Ticket"]
1318
- })
1319
- ]
1320
- })]
1321
- })
1322
- })
1323
- ]
1324
- });
1325
- }
1326
- //#endregion
1327
- export { V as HelpSupportPage };
1328
-
1329
- //# sourceMappingURL=HelpSupportPage.js.map