@necrolab/dashboard 0.4.220 → 0.5.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 (140) hide show
  1. package/.prettierrc +27 -1
  2. package/.vscode/extensions.json +1 -1
  3. package/README.md +64 -2
  4. package/artwork/image.png +0 -0
  5. package/backend/api.js +26 -24
  6. package/backend/auth.js +2 -2
  7. package/backend/batching.js +1 -1
  8. package/backend/endpoints.js +8 -11
  9. package/backend/index.js +2 -2
  10. package/backend/mock-data.js +27 -36
  11. package/backend/mock-src/classes/logger.js +5 -7
  12. package/backend/mock-src/classes/utils.js +3 -2
  13. package/backend/mock-src/ticketmaster.js +4 -4
  14. package/backend/validator.js +2 -2
  15. package/config/configs.json +0 -1
  16. package/dev-server.js +134 -0
  17. package/exit +209 -0
  18. package/index.html +78 -8
  19. package/index.js +1 -1
  20. package/jsconfig.json +16 -0
  21. package/package.json +39 -25
  22. package/postcss.config.js +1 -1
  23. package/postinstall.js +124 -20
  24. package/public/android-chrome-192x192.png +0 -0
  25. package/public/android-chrome-512x512.png +0 -0
  26. package/public/apple-touch-icon.png +0 -0
  27. package/public/favicon-16x16.png +0 -0
  28. package/public/favicon-32x32.png +0 -0
  29. package/public/favicon.ico +0 -0
  30. package/public/img/logo_trans.png +0 -0
  31. package/public/img/necro_logo.png +0 -0
  32. package/public/manifest.json +16 -10
  33. package/run +176 -9
  34. package/src/App.vue +498 -85
  35. package/src/assets/css/base/reset.scss +43 -0
  36. package/src/assets/css/base/scroll.scss +114 -0
  37. package/src/assets/css/base/typography.scss +37 -0
  38. package/src/assets/css/components/buttons.scss +216 -0
  39. package/src/assets/css/components/forms.scss +221 -0
  40. package/src/assets/css/components/modals.scss +13 -0
  41. package/src/assets/css/components/tables.scss +27 -0
  42. package/src/assets/css/components/toasts.scss +100 -0
  43. package/src/assets/css/main.scss +201 -122
  44. package/src/assets/img/background.svg +2 -2
  45. package/src/assets/img/background.svg.backup +11 -0
  46. package/src/assets/img/logo_trans.png +0 -0
  47. package/src/components/Auth/LoginForm.vue +62 -11
  48. package/src/components/Editors/Account/Account.vue +116 -40
  49. package/src/components/Editors/Account/AccountCreator.vue +88 -39
  50. package/src/components/Editors/Account/AccountView.vue +102 -34
  51. package/src/components/Editors/Account/CreateAccount.vue +80 -32
  52. package/src/components/Editors/Profile/CreateProfile.vue +269 -83
  53. package/src/components/Editors/Profile/Profile.vue +132 -47
  54. package/src/components/Editors/Profile/ProfileCountryChooser.vue +82 -20
  55. package/src/components/Editors/Profile/ProfileView.vue +89 -32
  56. package/src/components/Editors/TagLabel.vue +67 -6
  57. package/src/components/Editors/TagToggle.vue +7 -2
  58. package/src/components/Filter/Filter.vue +288 -71
  59. package/src/components/Filter/FilterPreview.vue +202 -31
  60. package/src/components/Filter/PriceSortToggle.vue +76 -6
  61. package/src/components/Table/Header.vue +1 -1
  62. package/src/components/Table/Row.vue +1 -1
  63. package/src/components/Table/Table.vue +19 -2
  64. package/src/components/Tasks/CheckStock.vue +6 -8
  65. package/src/components/Tasks/Controls/DesktopControls.vue +27 -17
  66. package/src/components/Tasks/Controls/MobileControls.vue +8 -45
  67. package/src/components/Tasks/CreateTaskAXS.vue +80 -72
  68. package/src/components/Tasks/CreateTaskTM.vue +95 -141
  69. package/src/components/Tasks/MassEdit.vue +4 -6
  70. package/src/components/Tasks/QuickSettings.vue +199 -30
  71. package/src/components/Tasks/ScrapeVenue.vue +5 -6
  72. package/src/components/Tasks/Stats.vue +50 -24
  73. package/src/components/Tasks/Task.vue +384 -179
  74. package/src/components/Tasks/TaskLabel.vue +2 -2
  75. package/src/components/Tasks/TaskView.vue +136 -48
  76. package/src/components/Tasks/Utilities.vue +25 -10
  77. package/src/components/Tasks/ViewTask.vue +321 -0
  78. package/src/components/icons/Bag.vue +1 -1
  79. package/src/components/icons/Check.vue +5 -0
  80. package/src/components/icons/Close.vue +21 -0
  81. package/src/components/icons/CloseX.vue +5 -0
  82. package/src/components/icons/Eye.vue +6 -0
  83. package/src/components/icons/Key.vue +21 -0
  84. package/src/components/icons/Loyalty.vue +1 -1
  85. package/src/components/icons/Mail.vue +2 -2
  86. package/src/components/icons/Pencil.vue +21 -0
  87. package/src/components/icons/Play.vue +2 -2
  88. package/src/components/icons/Profile.vue +18 -0
  89. package/src/components/icons/Reload.vue +4 -5
  90. package/src/components/icons/Sandclock.vue +2 -2
  91. package/src/components/icons/Sell.vue +21 -0
  92. package/src/components/icons/Spinner.vue +42 -0
  93. package/src/components/icons/SquareCheck.vue +18 -0
  94. package/src/components/icons/SquareUncheck.vue +18 -0
  95. package/src/components/icons/Stadium.vue +1 -1
  96. package/src/components/icons/Wildcard.vue +18 -0
  97. package/src/components/icons/index.js +26 -1
  98. package/src/components/ui/Modal.vue +107 -13
  99. package/src/components/ui/Navbar.vue +175 -40
  100. package/src/components/ui/ReconnectIndicator.vue +351 -55
  101. package/src/components/ui/Splash.vue +5 -35
  102. package/src/components/ui/controls/CountryChooser.vue +200 -62
  103. package/src/components/ui/controls/atomic/Checkbox.vue +119 -10
  104. package/src/components/ui/controls/atomic/Dropdown.vue +216 -39
  105. package/src/components/ui/controls/atomic/LoadingButton.vue +45 -0
  106. package/src/components/ui/controls/atomic/MultiDropdown.vue +300 -37
  107. package/src/components/ui/controls/atomic/Switch.vue +53 -25
  108. package/src/composables/useClickOutside.js +21 -0
  109. package/src/composables/useDropdownPosition.js +174 -0
  110. package/src/libs/Filter.js +60 -24
  111. package/src/registerServiceWorker.js +1 -1
  112. package/src/stores/connection.js +4 -4
  113. package/src/stores/sampleData.js +172 -199
  114. package/src/stores/ui.js +55 -20
  115. package/src/stores/utils.js +30 -4
  116. package/src/types/index.js +41 -0
  117. package/src/utils/debug.js +1 -0
  118. package/src/views/Accounts.vue +116 -50
  119. package/src/views/Console.vue +394 -79
  120. package/src/views/Editor.vue +1176 -123
  121. package/src/views/FilterBuilder.vue +528 -250
  122. package/src/views/Login.vue +76 -14
  123. package/src/views/Profiles.vue +119 -34
  124. package/src/views/Tasks.vue +266 -98
  125. package/static/offline.html +192 -50
  126. package/switch-branch.sh +41 -0
  127. package/tailwind.config.js +119 -27
  128. package/vite.config.js +73 -16
  129. package/workbox-config.cjs +63 -0
  130. package/ICONS.md +0 -21
  131. package/public/img/background.svg +0 -14
  132. package/public/img/logo.png +0 -0
  133. package/public/img/logo_icon.png +0 -0
  134. package/public/img/logo_icon_2.png +0 -0
  135. package/src/assets/css/_input.scss +0 -143
  136. package/src/assets/img/logo.png +0 -0
  137. package/src/assets/img/logo_icon.png +0 -0
  138. package/src/assets/img/logo_icon_2.png +0 -0
  139. package/vue.config.js +0 -32
  140. package/workbox-config.js +0 -7
@@ -1,32 +1,36 @@
1
+ const queueStats = false;
2
+
1
3
  export default {
2
4
  Profile: {
3
- name: "DEV",
4
- profileTags: ["Debug1", "Debug2", "Debug3"],
5
- accountTags: ["Debug4", "Debug5", "Debug6"],
5
+ name: "Admin",
6
+ tags: ["Set1", "Set2"],
7
+ profileTags: ["Revolut"],
6
8
  admin: true,
7
- proxyList: { checkout: "admin-proxies", queue: "admin-recaptcha" }
9
+ proxyList: { checkout: "admin-proxies", queue: "admin-recaptcha" },
10
+ profilePicture: "https://cdn.discordapp.com/avatars/435549216304267264/6cfd74ad7c5939a0bcbf218aa08be8cb.png"
8
11
  },
9
12
  Tasks: {
10
- T0: {
13
+ 0: {
11
14
  profileName: "profile0",
12
15
  mode: "CHECKOUT",
13
16
  createdAt: "2023-05-17T10:18:27.887Z",
14
- taskId: "T0",
17
+ taskId: "0",
15
18
  active: true,
16
19
  email: "grantelam@hotmail.com",
17
20
  password: "Dkstrhf4srth56Gksj",
18
- status: "Event already happened",
21
+ status: "Event already happened long long long long long long longlong long long long",
22
+ inQueue: queueStats,
19
23
  statusColor: "red",
20
24
  manual: false,
21
- incapsulaBypass: false,
22
25
  quickQueue: false,
23
26
  loginAfterCart: false,
24
27
  quantity: 8,
25
28
  proxy: "http://events1597:yEXBe4Hs@23.26.22.61:61234",
26
29
  eventId: "01005D5C92031D57",
27
- reservedTicketsList: "-",
30
+ reservedTicketsList: "• 2x 301/E ($86.47) \n• 2x 306/U ($86.47) \n$345.88",
28
31
  expirationTime: null,
29
32
  doNotPay: false,
33
+ inQueue: true,
30
34
  agedAccount: true,
31
35
  presaleCode: "",
32
36
  smartTimer: false,
@@ -42,60 +46,23 @@ export default {
42
46
  "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
43
47
  siteId: "TM_US"
44
48
  },
45
-
46
- // T2: {
47
- // profileName: "profile2",
48
- // mode: "CHECKOUT",
49
- // createdAt: "2023-05-17T10:18:27.895Z",
50
- // taskId: "T2",
51
- // active: true,
52
- // email: "eastereatamesz6265@gmail.com",
53
- // password: "VdashtOyUCWrba2",
54
- // status: "Waiting for Stock",
55
- // statusColor: "white",
56
- // manual: false,
57
- // incapsulaBypass: false,
58
- // quickQueue: false,
59
- // loginAfterCart: false,
60
- // quantity: 8,
61
- // proxy: "http://events1273:0AEYflS4@94.190.248.249:61234",
62
- // eventId: "01005D5C92031D57",
63
- // reservedTicketsList: "-",
64
- // expirationTime: null,
65
-
66
- // doNotPay: false,
67
- // agedAccount: false,
68
- // presaleCode: "",
69
- // smartTimer: false,
70
- // accountTag: "admin",
71
- // profileTags: ["Any"],
72
- // eventName: "Taylor Swift | The Eras Tour",
73
- // eventDate: "2023-05-19T22:30:00.000Z",
74
- // venueName: "Gillette Stadium",
75
- // eventCity: "Foxborough, MA",
76
- // eventUrl:
77
- // "https://www.ticketmaster.com/taylor-swift-the-eras-tour-foxborough-massachusetts-05-19-2023/event/01005D5C92031D57",
78
- // eventImage: "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg"
79
- // },
80
-
81
- T4: {
49
+ 1: {
82
50
  profileName: "profile4",
83
51
  mode: "CHECKOUT",
84
52
  createdAt: "2023-05-17T10:18:27.899Z",
85
- taskId: "T4",
53
+ taskId: "1",
86
54
  active: true,
87
55
  email: "hardacrehardhugreenh5264@gmail.com",
88
56
  password: "UtgsrtTBsrthaou5zL2",
89
- status: "Waiting for Stock",
57
+ status: "Waiting",
90
58
  statusColor: "white",
91
59
  manual: true,
92
- incapsulaBypass: false,
93
60
  quickQueue: false,
94
61
  loginAfterCart: true,
95
62
  quantity: 8,
96
63
  proxy: "http://events1338:xN4PBVze@23.26.21.58:61234",
97
64
  eventId: "01005D85964A1747",
98
- reservedTicketsList: "-",
65
+ reservedTicketsList: "• 2x 301/E ($86.47) \n• 2x 306/U ($86.47) \n$345.88",
99
66
  expirationTime: null,
100
67
  doNotPay: false,
101
68
  agedAccount: false,
@@ -113,17 +80,16 @@ export default {
113
80
  "https://s1.ticketm.net/dam/a/184/1de64204-dda7-4bf4-b341-ecd9baed7184_1861381_RETINA_PORTRAIT_16_9.jpg",
114
81
  siteId: "TM_US"
115
82
  },
116
- "admin-US-6": {
83
+ 2: {
117
84
  mode: "CHECKOUT",
118
85
  createdAt: "2023-05-17T10:18:27.901Z",
119
- taskId: "admin-US-6",
86
+ taskId: "2",
120
87
  active: true,
121
88
  email: "mcleanmcmzpe5611@gmail.com",
122
89
  password: "VHsrthSvGMsrtFMFm28",
123
90
  status: "Waiting for Stock",
124
91
  statusColor: "white",
125
92
  manual: false,
126
- incapsulaBypass: false,
127
93
  quickQueue: false,
128
94
  loginAfterCart: false,
129
95
  quantity: 8,
@@ -147,17 +113,16 @@ export default {
147
113
  "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
148
114
  siteId: "TM_US"
149
115
  },
150
- T7: {
116
+ 3: {
151
117
  mode: "CHECKOUT",
152
118
  createdAt: "2023-05-17T10:18:27.903Z",
153
- taskId: "T7",
119
+ taskId: "3",
154
120
  active: true,
155
121
  email: "jodyj48@hotmail.com",
156
122
  password: "Drsthksf456Grthksj",
157
123
  status: "Waiting for Stock",
158
124
  statusColor: "white",
159
125
  manual: false,
160
- incapsulaBypass: false,
161
126
  quickQueue: false,
162
127
  loginAfterCart: false,
163
128
  quantity: 8,
@@ -181,17 +146,16 @@ export default {
181
146
  "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
182
147
  siteId: "TM_US"
183
148
  },
184
- T8: {
149
+ 4: {
185
150
  mode: "CHECKOUT",
186
151
  createdAt: "2023-05-17T10:18:27.904Z",
187
- taskId: "T8",
152
+ taskId: "4",
188
153
  active: true,
189
154
  email: "suphathrphrnb@gmail.com",
190
155
  password: "PrthYTpNPk1hfm3",
191
156
  status: "Waiting for Stock",
192
157
  statusColor: "white",
193
158
  manual: false,
194
- incapsulaBypass: false,
195
159
  quickQueue: false,
196
160
  loginAfterCart: false,
197
161
  quantity: 8,
@@ -215,17 +179,16 @@ export default {
215
179
  "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
216
180
  siteId: "TM_US"
217
181
  },
218
- T9: {
182
+ 5: {
219
183
  mode: "CHECKOUT",
220
184
  createdAt: "2023-05-17T10:18:27.906Z",
221
- taskId: "T9",
185
+ taskId: "5",
222
186
  active: true,
223
187
  email: "mathismaeqn53666@gmail.com",
224
188
  password: "UmtsrthJWiaNQHi4",
225
189
  status: "Waiting for Stock",
226
190
  statusColor: "white",
227
191
  manual: true,
228
- incapsulaBypass: false,
229
192
  quickQueue: false,
230
193
  loginAfterCart: true,
231
194
  quantity: 8,
@@ -249,17 +212,16 @@ export default {
249
212
  "https://s1.ticketm.net/dam/a/39c/ffdebc1d-6b1e-42da-940f-ec7a132a939c_RETINA_PORTRAIT_16_9.jpg",
250
213
  siteId: "TM_US"
251
214
  },
252
- T10: {
215
+ 6: {
253
216
  mode: "CHECKOUT",
254
217
  createdAt: "2023-05-17T10:18:27.907Z",
255
- taskId: "T10",
218
+ taskId: "6",
256
219
  active: true,
257
220
  email: "wilberwiqctar0044@gmail.com",
258
221
  password: "5jhsrtsdvqv54a7",
259
222
  status: "Waiting for Stock",
260
223
  statusColor: "white",
261
224
  manual: false,
262
- incapsulaBypass: false,
263
225
  quickQueue: false,
264
226
  loginAfterCart: false,
265
227
  quantity: 8,
@@ -283,17 +245,16 @@ export default {
283
245
  "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
284
246
  siteId: "TM_US"
285
247
  },
286
- T11: {
248
+ 7: {
287
249
  mode: "CHECKOUT",
288
250
  createdAt: "2023-05-17T10:18:27.908Z",
289
- taskId: "T11",
251
+ taskId: "7",
290
252
  active: true,
291
253
  email: "cuongcuodvda3429@gmail.com",
292
254
  password: "6XrsthEzVaiGZV8",
293
255
  status: "Waiting for Stock",
294
256
  statusColor: "white",
295
257
  manual: true,
296
- incapsulaBypass: false,
297
258
  quickQueue: false,
298
259
  loginAfterCart: true,
299
260
  quantity: 8,
@@ -317,17 +278,16 @@ export default {
317
278
  "https://s1.ticketm.net/dam/a/184/1de64204-dda7-4bf4-b341-ecd9baed7184_1861381_RETINA_PORTRAIT_16_9.jpg",
318
279
  siteId: "TM_US"
319
280
  },
320
- T12: {
281
+ 8: {
321
282
  mode: "CHECKOUT",
322
283
  createdAt: "2023-05-17T10:18:27.909Z",
323
- taskId: "T12",
284
+ taskId: "8",
324
285
  active: true,
325
286
  email: "taylortaxjbr26248@gmail.com",
326
287
  password: "OwZz9PfKtWsrS7",
327
288
  status: "Waiting for Stock",
328
289
  statusColor: "white",
329
290
  manual: false,
330
- incapsulaBypass: false,
331
291
  quickQueue: false,
332
292
  loginAfterCart: false,
333
293
  quantity: 8,
@@ -351,17 +311,16 @@ export default {
351
311
  "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
352
312
  siteId: "TM_US"
353
313
  },
354
- T12a: {
314
+ 9: {
355
315
  mode: "CHECKOUT",
356
316
  createdAt: "2023-05-17T10:18:27.909Z",
357
- taskId: "T12a",
317
+ taskId: "9",
358
318
  active: true,
359
319
  email: "taylortaxjbr26248@gmail.com",
360
320
  password: "OwZz9PfKtWsrS7",
361
- status: "Waiting for Queue",
321
+ status: queueStats ? "Waiting for Queue" : "Waiting for Stock",
362
322
  statusColor: "white",
363
323
  manual: false,
364
- incapsulaBypass: false,
365
324
  quickQueue: false,
366
325
  loginAfterCart: false,
367
326
  quantity: 8,
@@ -385,17 +344,16 @@ export default {
385
344
  "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
386
345
  siteId: "TM_US"
387
346
  },
388
- T12b: {
347
+ 10: {
389
348
  mode: "CHECKOUT",
390
349
  createdAt: "2023-05-17T10:18:27.909Z",
391
- taskId: "T12b",
350
+ taskId: "10",
392
351
  active: true,
393
352
  email: "taylortaxjbr26248@gmail.com",
394
353
  password: "OwZz9PfKtWsrS7",
395
354
  status: "Error in Enqueue",
396
355
  statusColor: "red",
397
356
  manual: false,
398
- incapsulaBypass: false,
399
357
  quickQueue: false,
400
358
  loginAfterCart: false,
401
359
  quantity: 8,
@@ -419,17 +377,16 @@ export default {
419
377
  "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
420
378
  siteId: "TM_US"
421
379
  },
422
- T12c: {
380
+ 11: {
423
381
  mode: "CHECKOUT",
424
382
  createdAt: "2023-05-17T10:18:27.909Z",
425
- taskId: "T12c",
383
+ taskId: "11",
426
384
  active: true,
427
385
  email: "taylortaxjbr26248@gmail.com",
428
386
  password: "OwZz9PfKtWsrS7",
429
387
  status: "Waiting for Stock",
430
388
  statusColor: "white",
431
389
  manual: false,
432
- incapsulaBypass: false,
433
390
  quickQueue: false,
434
391
  loginAfterCart: false,
435
392
  quantity: 8,
@@ -453,17 +410,16 @@ export default {
453
410
  "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
454
411
  siteId: "TM_US"
455
412
  },
456
- T16: {
413
+ 12: {
457
414
  mode: "CHECKOUT",
458
415
  createdAt: "2023-05-17T10:18:27.909Z",
459
- taskId: "T-mqm-12",
416
+ taskId: "12",
460
417
  active: true,
461
418
  email: "taylortaxjbr26248@gmail.com",
462
419
  password: "OwZz9PfKtWsrS7",
463
420
  status: "5500 users ahead - ETA: 4min",
464
421
  statusColor: "white",
465
422
  manual: false,
466
- incapsulaBypass: false,
467
423
  quickQueue: false,
468
424
  loginAfterCart: false,
469
425
  quantity: 8,
@@ -484,17 +440,16 @@ export default {
484
440
  hidden: true,
485
441
  siteId: "TM_DE"
486
442
  },
487
- T17: {
443
+ 13: {
488
444
  mode: "CHECKOUT",
489
445
  createdAt: "2023-05-17T10:18:27.909Z",
490
- taskId: "T-mqm-12",
446
+ taskId: "13",
491
447
  active: true,
492
448
  email: "taylortaxjbr26248@gmail.com",
493
449
  password: "OwZz9PfKtWsrS7",
494
450
  status: "5000 users ahead - ETA: 3min",
495
451
  statusColor: "white",
496
452
  manual: false,
497
- incapsulaBypass: false,
498
453
  quickQueue: false,
499
454
  loginAfterCart: false,
500
455
  quantity: 8,
@@ -515,18 +470,16 @@ export default {
515
470
  hidden: true,
516
471
  siteId: "TM_DE"
517
472
  },
518
-
519
- T18: {
473
+ 14: {
520
474
  mode: "CHECKOUT",
521
475
  createdAt: "2023-05-17T10:18:27.909Z",
522
- taskId: "T-mqm-12",
476
+ taskId: "14",
523
477
  active: true,
524
478
  email: "taylortaxjbr26248@gmail.com",
525
479
  password: "OwZz9PfKtWsrS7",
526
480
  status: "400 users ahead - ETA: less than 1 minute",
527
481
  statusColor: "white",
528
482
  manual: false,
529
- incapsulaBypass: false,
530
483
  quickQueue: false,
531
484
  loginAfterCart: false,
532
485
  quantity: 8,
@@ -547,17 +500,16 @@ export default {
547
500
  hidden: true,
548
501
  siteId: "TM_DE"
549
502
  },
550
- T19: {
503
+ 15: {
551
504
  mode: "CHECKOUT",
552
505
  createdAt: "2023-05-17T10:18:27.909Z",
553
- taskId: "T-mqm-12",
506
+ taskId: "15",
554
507
  active: true,
555
508
  email: "taylortaxjbr26248@gmail.com",
556
509
  password: "OwZz9PfKtWsrS7",
557
510
  status: "400 users ahead - ETA: less than 1 minute",
558
511
  statusColor: "white",
559
512
  manual: false,
560
- incapsulaBypass: false,
561
513
  quickQueue: false,
562
514
  loginAfterCart: false,
563
515
  quantity: 8,
@@ -578,17 +530,16 @@ export default {
578
530
  hidden: true,
579
531
  siteId: "TM_DE"
580
532
  },
581
- T20: {
533
+ 16: {
582
534
  mode: "CHECKOUT",
583
535
  createdAt: "2023-05-17T10:18:27.909Z",
584
- taskId: "T-mqm-12",
536
+ taskId: "16",
585
537
  active: true,
586
538
  email: "taylortaxjbr26248@gmail.com",
587
539
  password: "OwZz9PfKtWsrS7",
588
540
  status: "400 users ahead - ETA: less than 1 minute",
589
541
  statusColor: "white",
590
542
  manual: false,
591
- incapsulaBypass: false,
592
543
  quickQueue: false,
593
544
  loginAfterCart: false,
594
545
  quantity: 8,
@@ -609,17 +560,16 @@ export default {
609
560
  hidden: false,
610
561
  siteId: "TM_DE"
611
562
  },
612
- T21: {
563
+ 17: {
613
564
  mode: "CHECKOUT",
614
565
  createdAt: "2023-05-17T10:18:27.909Z",
615
- taskId: "T-mqm-12",
566
+ taskId: "17",
616
567
  active: true,
617
568
  email: "taylortaxjbr26248@gmail.com",
618
569
  password: "OwZz9PfKtWsrS7",
619
570
  status: "400 users ahead - ETA: less than 1 minute",
620
571
  statusColor: "white",
621
572
  manual: false,
622
- incapsulaBypass: false,
623
573
  quickQueue: false,
624
574
  loginAfterCart: false,
625
575
  quantity: 8,
@@ -640,17 +590,16 @@ export default {
640
590
  hidden: true,
641
591
  siteId: "TM_DE"
642
592
  },
643
- T22: {
593
+ 18: {
644
594
  mode: "CHECKOUT",
645
595
  createdAt: "2023-05-17T10:18:27.909Z",
646
- taskId: "T-mqm-12",
596
+ taskId: "18",
647
597
  active: true,
648
598
  email: "taylortaxjbr26248@gmail.com",
649
599
  password: "OwZz9PfKtWsrS7",
650
600
  status: "400 users ahead - ETA: less than 1 minute",
651
601
  statusColor: "white",
652
602
  manual: false,
653
- incapsulaBypass: false,
654
603
  quickQueue: false,
655
604
  loginAfterCart: false,
656
605
  quantity: 8,
@@ -671,17 +620,16 @@ export default {
671
620
  hidden: true,
672
621
  siteId: "TM_DE"
673
622
  },
674
- T23: {
623
+ 19: {
675
624
  mode: "CHECKOUT",
676
625
  createdAt: "2023-05-17T10:18:27.909Z",
677
- taskId: "T-mqm-12",
626
+ taskId: "19",
678
627
  active: true,
679
628
  email: "taylortaxjbr26248@gmail.com",
680
629
  password: "OwZz9PfKtWsrS7",
681
630
  status: "Sleeping in queue",
682
631
  statusColor: "white",
683
632
  manual: false,
684
- incapsulaBypass: false,
685
633
  quickQueue: false,
686
634
  loginAfterCart: false,
687
635
  quantity: 8,
@@ -702,17 +650,16 @@ export default {
702
650
  hidden: true,
703
651
  siteId: "TM_DE"
704
652
  },
705
- T24: {
653
+ 20: {
706
654
  mode: "CHECKOUT",
707
655
  createdAt: "2023-05-17T10:18:27.909Z",
708
- taskId: "T-mqm-12",
656
+ taskId: "20",
709
657
  active: true,
710
658
  email: "taylortaxjbr26248@gmail.com",
711
659
  password: "OwZz9PfKtWsrS7",
712
660
  status: "Sleeping in queue",
713
661
  statusColor: "white",
714
662
  manual: false,
715
- incapsulaBypass: false,
716
663
  quickQueue: false,
717
664
  loginAfterCart: false,
718
665
  quantity: 8,
@@ -736,295 +683,321 @@ export default {
736
683
  },
737
684
  Accounts: [
738
685
  {
739
- _id: Math.random(),
686
+ id: "64a1b2c3d4e5f6789abcdef0",
740
687
  email: "aaaa@aaa.com",
741
688
  password: "password123",
742
689
  enabled: true,
743
- tags: ["admin", "amex"]
690
+ tags: ["admin"],
691
+ module: "TM"
744
692
  },
745
693
  {
746
- _id: Math.random(),
694
+ id: "64a1b2c3d4e5f6789abcdef1",
747
695
  email: "bbb@bbb.com",
748
696
  password: "password123",
749
697
  enabled: true,
750
- tags: ["admin", "amex"]
698
+ tags: ["admin"],
699
+ module: "TM"
751
700
  },
752
701
  {
753
- _id: Math.random(),
702
+ id: "64a1b2c3d4e5f6789abcdef2",
754
703
  email: "aaa@bbb.com",
755
704
  password: "password123",
756
705
  enabled: true,
757
- tags: ["amex"]
706
+ tags: ["admin"],
707
+ module: "TM"
758
708
  },
759
709
  {
760
- _id: Math.random(),
710
+ id: "64a1b2c3d4e5f6789abcdef3",
761
711
  email: "aabb@ccc.com",
762
712
  password: "password123",
763
713
  enabled: true,
764
- tags: ["amex"]
714
+ tags: ["admin", "phone_mfa"],
715
+ module: "TM"
765
716
  },
766
717
  {
767
- _id: Math.random(),
718
+ id: "64a1b2c3d4e5f6789abcdef4",
768
719
  email: "aaaabbbbb@cccc.com",
769
720
  password: "password123",
770
721
  enabled: true,
771
- tags: ["admin"]
722
+ tags: ["admin"],
723
+ module: "TM"
772
724
  },
773
725
  {
774
- _id: Math.random(),
726
+ id: "64a1b2c3d4e5f6789abcdef5",
775
727
  email: "aa@ihbigb.com",
776
728
  password: "password123",
777
729
  enabled: true,
778
- tags: ["admin"]
730
+ tags: ["admin"],
731
+ module: "TM"
779
732
  },
780
733
  {
781
- _id: Math.random(),
734
+ id: "64a1b2c3d4e5f6789abcdef6",
782
735
  email: "aaaa@aaa.com",
783
736
  password: "password123",
784
737
  enabled: true,
785
- tags: ["admin", "amex"]
738
+ tags: ["admin"],
739
+ module: "AXS"
786
740
  },
787
741
  {
788
- _id: Math.random(),
742
+ id: "64a1b2c3d4e5f6789abcdef7",
789
743
  email: "bbb@bbb.com",
790
744
  password: "password123",
791
745
  enabled: true,
792
- tags: ["admin", "amex"]
746
+ tags: ["admin"],
747
+ module: "AXS"
793
748
  },
794
749
  {
795
- _id: Math.random(),
750
+ id: "64a1b2c3d4e5f6789abcdef8",
796
751
  email: "aaa@bbb.com",
797
752
  password: "password123",
798
753
  enabled: true,
799
- tags: ["admin", "amex"]
754
+ tags: ["admin"],
755
+ module: "AXS"
800
756
  },
801
757
  {
802
- _id: Math.random(),
758
+ id: "64a1b2c3d4e5f6789abcdef9",
803
759
  email: "aabb@ccc.com",
804
760
  password: "password123",
805
761
  enabled: true,
806
- tags: ["admin", "amex"]
762
+ tags: ["admin"],
763
+ module: "AXS"
807
764
  },
808
765
  {
809
- _id: Math.random(),
766
+ id: "64a1b2c3d4e5f6789abcdefa",
810
767
  email: "aaaabbbbb@cccc.com",
811
768
  password: "password123",
812
769
  enabled: true,
813
- tags: ["admin", "amex"]
770
+ tags: ["admin"],
771
+ module: "TM"
814
772
  },
815
773
  {
816
- _id: Math.random(),
774
+ id: "64a1b2c3d4e5f6789abcdefb",
817
775
  email: "aa@ihbigb.com",
818
776
  password: "password123",
819
777
  enabled: true,
820
- tags: ["admin", "amex"]
778
+ tags: ["admin"],
779
+ module: "TM"
821
780
  },
822
781
  {
823
- _id: Math.random(),
824
- email: "aaaa@aaa.com",
782
+ id: "64a1b2c3d4e5f6789abcdefc",
783
+ email: "test1@gmail.com",
825
784
  password: "password123",
826
785
  enabled: true,
827
- tags: ["admin", "amex"]
786
+ tags: ["admin"],
787
+ module: "TM"
828
788
  },
829
789
  {
830
- _id: Math.random(),
831
- email: "bbb@bbb.com",
790
+ id: "64a1b2c3d4e5f6789abcdefd",
791
+ email: "test2@gmail.com",
832
792
  password: "password123",
833
793
  enabled: true,
834
- tags: ["admin", "amex"]
794
+ tags: ["admin"],
795
+ module: "TM"
835
796
  },
836
797
  {
837
- _id: Math.random(),
838
- email: "aaa@bbb.com",
798
+ id: "64a1b2c3d4e5f6789abcdefe",
799
+ email: "test3@gmail.com",
839
800
  password: "password123",
840
801
  enabled: true,
841
- tags: ["admin", "amex"]
802
+ tags: ["admin"],
803
+ module: "AXS"
842
804
  },
843
805
  {
844
- _id: Math.random(),
845
- email: "aabb@ccc.com",
806
+ id: "64a1b2c3d4e5f6789abcdeff",
807
+ email: "test4@gmail.com",
846
808
  password: "password123",
847
809
  enabled: true,
848
- tags: ["admin", "amex"]
810
+ tags: ["admin"],
811
+ module: "AXS"
849
812
  },
850
813
  {
851
- _id: Math.random(),
852
- email: "aaaabbbbb@cccc.com",
814
+ id: "64a1b2c3d4e5f6789abcde00",
815
+ email: "test5@gmail.com",
853
816
  password: "password123",
854
817
  enabled: true,
855
- tags: ["admin", "amex"]
818
+ tags: ["admin"],
819
+ module: "TM"
856
820
  },
857
821
  {
858
- _id: Math.random(),
859
- email: "aa@ihbigb.com",
822
+ id: "64a1b2c3d4e5f6789abcde01",
823
+ email: "test6@gmail.com",
860
824
  password: "password123",
861
825
  enabled: true,
862
- tags: ["admin", "amex"]
826
+ tags: ["admin"],
827
+ module: "AXS"
863
828
  },
864
829
  {
865
- _id: Math.random(),
866
- email: "aaaa@aaa.com",
830
+ id: "64a1b2c3d4e5f6789abcde02",
831
+ email: "test7@gmail.com",
867
832
  password: "password123",
868
833
  enabled: true,
869
- tags: ["admin", "amex"]
834
+ tags: ["admin"],
835
+ module: "TM"
870
836
  },
871
837
  {
872
- _id: Math.random(),
873
- email: "bbb@bbb.com",
838
+ id: "64a1b2c3d4e5f6789abcde03",
839
+ email: "test8@gmail.com",
874
840
  password: "password123",
875
841
  enabled: true,
876
- tags: ["admin", "amex"]
842
+ tags: ["admin"],
843
+ module: "AXS"
877
844
  },
878
845
  {
879
- _id: Math.random(),
880
- email: "aaa@bbb.com",
846
+ id: "64a1b2c3d4e5f6789abcde04",
847
+ email: "test9@gmail.com",
881
848
  password: "password123",
882
849
  enabled: true,
883
- tags: ["admin", "amex"]
850
+ tags: ["admin"],
851
+ module: "TM"
884
852
  },
885
853
  {
886
- _id: Math.random(),
887
- email: "aabb@ccc.com",
854
+ id: "64a1b2c3d4e5f6789abcde05",
855
+ email: "test10@gmail.com",
888
856
  password: "password123",
889
857
  enabled: true,
890
- tags: ["admin", "amex"]
858
+ tags: ["admin"],
859
+ module: "AXS"
891
860
  },
892
861
  {
893
- _id: Math.random(),
894
- email: "aaaabbbbb@cccc.com",
862
+ id: "64a1b2c3d4e5f6789abcde06",
863
+ email: "test11@gmail.com",
895
864
  password: "password123",
896
865
  enabled: true,
897
- tags: ["admin", "amex"]
866
+ tags: ["admin"],
867
+ module: "TM"
898
868
  },
899
869
  {
900
- _id: Math.random(),
901
- email: "aa@ihbigb.com",
870
+ id: "64a1b2c3d4e5f6789abcde07",
871
+ email: "test12@gmail.com",
902
872
  password: "password123",
903
873
  enabled: true,
904
- tags: ["admin", "amex"]
874
+ tags: ["admin"],
875
+ module: "AXS"
905
876
  }
906
877
  ],
907
878
  Profiles: [
908
879
  {
909
- _id: 1,
880
+ id: 1,
910
881
  profileName: "Harry Potter",
911
- cardNumber: "48474638474545",
882
+ cardNumber: "4847463847454545",
912
883
  expMonth: "12",
913
884
  expYear: "28",
885
+ country: "US",
886
+ state: "NY",
914
887
  tags: ["admin", "amex"]
915
888
  },
916
889
  {
917
- _id: 2,
890
+ id: 2,
918
891
  profileName: "Draco Malfoy",
919
- cardNumber: "38474638474545",
892
+ cardNumber: "3847463847454545",
920
893
  expMonth: "12",
921
894
  expYear: "28",
922
895
  tags: ["admin", "amex"]
923
896
  },
924
897
  {
925
- _id: 3,
898
+ id: 3,
926
899
  profileName: "Tom Smith",
927
- cardNumber: "58474638474545",
900
+ cardNumber: "5847463847454545",
928
901
  expMonth: "12",
929
902
  expYear: "28",
930
903
  tags: ["admin", "amex"],
931
904
  enabled: true
932
905
  },
933
906
  {
934
- _id: 1,
907
+ id: 1,
935
908
  profileName: "Harry Potter",
936
- cardNumber: "48474638474545",
909
+ cardNumber: "4847463847454545",
937
910
  expMonth: "12",
938
911
  expYear: "28",
939
912
  tags: ["admin", "amex"]
940
913
  },
941
914
  {
942
- _id: 2,
915
+ id: 2,
943
916
  profileName: "Draco Malfoy",
944
- cardNumber: "38474638474545",
917
+ cardNumber: "3847463847454545",
945
918
  expMonth: "12",
946
919
  expYear: "28",
947
920
  tags: ["admin", "amex"]
948
921
  },
949
922
  {
950
- _id: 3,
923
+ id: 3,
951
924
  profileName: "Tom Smith",
952
- cardNumber: "58474638474545",
925
+ cardNumber: "5847463847454545",
953
926
  expMonth: "12",
954
927
  expYear: "28",
955
928
  tags: ["admin", "amex"],
956
929
  enabled: true
957
930
  },
958
931
  {
959
- _id: 1,
932
+ id: 1,
960
933
  profileName: "Harry Potter",
961
- cardNumber: "48474638474545",
934
+ cardNumber: "4847463847454545",
962
935
  expMonth: "12",
963
936
  expYear: "28",
964
937
  tags: ["admin", "amex"]
965
938
  },
966
939
  {
967
- _id: 2,
940
+ id: 2,
968
941
  profileName: "Draco Malfoy",
969
- cardNumber: "38474638474545",
942
+ cardNumber: "3847463847454545",
970
943
  expMonth: "12",
971
944
  expYear: "28",
972
945
  tags: ["admin", "amex"]
973
946
  },
974
947
  {
975
- _id: 3,
948
+ id: 3,
976
949
  profileName: "Tom Smith",
977
- cardNumber: "58474638474545",
950
+ cardNumber: "5847463847454545",
978
951
  expMonth: "12",
979
952
  expYear: "28",
980
953
  tags: ["admin", "amex"],
981
954
  enabled: true
982
955
  },
983
956
  {
984
- _id: 1,
957
+ id: 1,
985
958
  profileName: "Harry Potter",
986
- cardNumber: "48474638474545",
959
+ cardNumber: "4847463847454545",
987
960
  expMonth: "12",
988
961
  expYear: "28",
989
962
  tags: ["admin", "amex"]
990
963
  },
991
964
  {
992
- _id: 2,
965
+ id: 2,
993
966
  profileName: "Draco Malfoy",
994
- cardNumber: "38474638474545",
967
+ cardNumber: "3847463847454545",
995
968
  expMonth: "12",
996
969
  expYear: "28",
997
970
  tags: ["admin", "amex"]
998
971
  },
999
972
  {
1000
- _id: 3,
973
+ id: 3,
1001
974
  profileName: "Tom Smith",
1002
- cardNumber: "58474638474545",
975
+ cardNumber: "5847463847454545",
1003
976
  expMonth: "12",
1004
977
  expYear: "28",
1005
978
  tags: ["admin", "amex"],
1006
979
  enabled: true
1007
980
  },
1008
981
  {
1009
- _id: 1,
982
+ id: 1,
1010
983
  profileName: "Harry Potter",
1011
- cardNumber: "48474638474545",
984
+ cardNumber: "4847463847454545",
1012
985
  expMonth: "12",
1013
986
  expYear: "28",
1014
987
  tags: ["admin", "amex"]
1015
988
  },
1016
989
  {
1017
- _id: 2,
990
+ id: 2,
1018
991
  profileName: "Draco Malfoy",
1019
- cardNumber: "38474638474545",
992
+ cardNumber: "3847463847454545",
1020
993
  expMonth: "12",
1021
994
  expYear: "28",
1022
995
  tags: ["admin", "amex"]
1023
996
  },
1024
997
  {
1025
- _id: 3,
998
+ id: 3,
1026
999
  profileName: "Tom Smith",
1027
- cardNumber: "58474638474545",
1000
+ cardNumber: "5847463847454545",
1028
1001
  expMonth: "12",
1029
1002
  expYear: "28",
1030
1003
  tags: ["admin", "amex"],