@necrolab/dashboard 0.4.61 → 0.4.208

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