@feedmepos/mf-mdm 1.4.2-beta.133 → 1.4.2-beta.135

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/app.d.ts CHANGED
@@ -1,2 +1,546 @@
1
+ import enUS from './locales/en-US.json';
2
+ export type AppMessagesSchema = typeof enUS;
3
+ export declare const i18nMessages: {
4
+ 'en-US': {
5
+ device: {
6
+ title: string;
7
+ actions: {
8
+ refresh: string;
9
+ update: string;
10
+ cancel: string;
11
+ create: string;
12
+ confirm: string;
13
+ search: string;
14
+ unbind: string;
15
+ unbindDevice: string;
16
+ bindDevice: string;
17
+ addDevice: string;
18
+ forceSync: string;
19
+ regenerate: string;
20
+ };
21
+ table: {
22
+ columns: {
23
+ deviceName: string;
24
+ displayImage: string;
25
+ restaurantName: string;
26
+ deviceType: string;
27
+ bindingAt: string;
28
+ };
29
+ };
30
+ filters: {
31
+ restaurant: {
32
+ label: string;
33
+ search: string;
34
+ };
35
+ deviceType: string;
36
+ all: string;
37
+ selected: string;
38
+ };
39
+ menu: {
40
+ logs: string;
41
+ configurations: string;
42
+ };
43
+ creation: {
44
+ title: string;
45
+ fields: {
46
+ name: {
47
+ label: string;
48
+ placeholder: string;
49
+ };
50
+ type: {
51
+ label: string;
52
+ placeholder: string;
53
+ options: {
54
+ counter: string;
55
+ orderStation: string;
56
+ };
57
+ };
58
+ restaurant: {
59
+ label: string;
60
+ placeholder: string;
61
+ };
62
+ printer: {
63
+ label: string;
64
+ placeholder: string;
65
+ };
66
+ };
67
+ };
68
+ information: {
69
+ title: string;
70
+ sections: {
71
+ deviceInfo: string;
72
+ heartbeatStatus: string;
73
+ applicationInfo: string;
74
+ systemInfo: string;
75
+ androidOS: string;
76
+ iOSOS: string;
77
+ windowsOS: string;
78
+ };
79
+ main: {
80
+ id: string;
81
+ name: string;
82
+ type: string;
83
+ bindingAt: string;
84
+ };
85
+ heartbeat: {
86
+ lastSyncAt: string;
87
+ freeMemory: string;
88
+ appMemory: string;
89
+ totalMemory: string;
90
+ freeSpace: string;
91
+ totalSpace: string;
92
+ };
93
+ app: {
94
+ name: string;
95
+ buildNumber: string;
96
+ buildSignature: string;
97
+ installerStore: string;
98
+ packageName: string;
99
+ version: string;
100
+ };
101
+ system: {
102
+ kernalArchitecture: string;
103
+ kernalBitness: string;
104
+ kernalName: string;
105
+ kernalVersion: string;
106
+ operatingSystemName: string;
107
+ operatingSystemVersion: string;
108
+ rawKernalArchitecture: string;
109
+ userDirectory: string;
110
+ userId: string;
111
+ userName: string;
112
+ userSpaceBitness: string;
113
+ };
114
+ android: {
115
+ baseOS: string;
116
+ codename: string;
117
+ incremental: string;
118
+ previewSdkInt: string;
119
+ release: string;
120
+ sdkInt: string;
121
+ securityPatch: string;
122
+ board: string;
123
+ bootloader: string;
124
+ brand: string;
125
+ device: string;
126
+ display: string;
127
+ fingerprint: string;
128
+ hardware: string;
129
+ host: string;
130
+ id: string;
131
+ isPhysicalDevice: string;
132
+ manufacturer: string;
133
+ model: string;
134
+ product: string;
135
+ serialNumber: string;
136
+ supported32BitsAbis: string;
137
+ supported64BitsAbis: string;
138
+ supportedAbis: string;
139
+ systemFeatures: string;
140
+ version: string;
141
+ };
142
+ ios: {
143
+ identifierForVendor: string;
144
+ isPhysicalDevice: string;
145
+ localizedModel: string;
146
+ model: string;
147
+ name: string;
148
+ systemName: string;
149
+ systemVersion: string;
150
+ utsname: {
151
+ machine: string;
152
+ nodename: string;
153
+ release: string;
154
+ sysname: string;
155
+ version: string;
156
+ };
157
+ };
158
+ windows: {
159
+ buildLab: string;
160
+ buildLabEx: string;
161
+ buildNumber: string;
162
+ computerName: string;
163
+ csdVersion: string;
164
+ deviceId: string;
165
+ digitalProductId: string;
166
+ displayVersion: string;
167
+ editionId: string;
168
+ installDate: string;
169
+ majorVersion: string;
170
+ minorVersion: string;
171
+ numberOfCores: string;
172
+ platformId: string;
173
+ productId: string;
174
+ productName: string;
175
+ productType: string;
176
+ registeredOwner: string;
177
+ releaseId: string;
178
+ reserved: string;
179
+ servicePackMajor: string;
180
+ servicePackMinor: string;
181
+ suitMask: string;
182
+ systemMemoryInMegabytes: string;
183
+ userName: string;
184
+ };
185
+ };
186
+ customerDisplay: {
187
+ title: string;
188
+ description: string;
189
+ imageSize: {
190
+ recommendation: string;
191
+ dimensions: string;
192
+ };
193
+ selection: {
194
+ title: string;
195
+ description: string;
196
+ };
197
+ update: {
198
+ success: string;
199
+ };
200
+ };
201
+ logs: {
202
+ redirect: string;
203
+ };
204
+ otp: {
205
+ otpCopiedMessage: string;
206
+ otpExpiryMessage: string;
207
+ };
208
+ unbindDevice: {
209
+ unbindConfirmationMessage: string;
210
+ confirmationInstructionPart1: string;
211
+ confirmationInstructionPart2: string;
212
+ };
213
+ config: {
214
+ title: string;
215
+ logging: {
216
+ title: string;
217
+ enable: {
218
+ label: string;
219
+ sublabel: string;
220
+ };
221
+ logLevel: string;
222
+ ttl: {
223
+ label: string;
224
+ unit: string;
225
+ };
226
+ };
227
+ telemetry: {
228
+ title: string;
229
+ enable: {
230
+ label: string;
231
+ sublabel: string;
232
+ };
233
+ };
234
+ };
235
+ validation: {
236
+ required: string;
237
+ invalid: string;
238
+ min: string;
239
+ max: string;
240
+ number: string;
241
+ };
242
+ status: {
243
+ sync: {
244
+ confirmation: string;
245
+ inProgress: string;
246
+ success: string;
247
+ error: string;
248
+ };
249
+ bind: {
250
+ success: string;
251
+ error: string;
252
+ };
253
+ unbind: {
254
+ success: string;
255
+ error: string;
256
+ };
257
+ creation: {
258
+ success: string;
259
+ error: string;
260
+ limitError: string;
261
+ };
262
+ config: {
263
+ success: string;
264
+ error: string;
265
+ };
266
+ };
267
+ error: {
268
+ general: string;
269
+ getDevices: string;
270
+ };
271
+ };
272
+ };
273
+ 'zh-CN': {
274
+ device: {
275
+ title: string;
276
+ actions: {
277
+ refresh: string;
278
+ update: string;
279
+ cancel: string;
280
+ create: string;
281
+ confirm: string;
282
+ search: string;
283
+ unbind: string;
284
+ unbindDevice: string;
285
+ bindDevice: string;
286
+ addDevice: string;
287
+ forceSync: string;
288
+ regenerate: string;
289
+ };
290
+ table: {
291
+ columns: {
292
+ deviceName: string;
293
+ displayImage: string;
294
+ restaurantName: string;
295
+ deviceType: string;
296
+ bindingAt: string;
297
+ };
298
+ };
299
+ filters: {
300
+ restaurant: {
301
+ label: string;
302
+ search: string;
303
+ };
304
+ deviceType: string;
305
+ all: string;
306
+ selected: string;
307
+ };
308
+ menu: {
309
+ logs: string;
310
+ configurations: string;
311
+ };
312
+ creation: {
313
+ title: string;
314
+ fields: {
315
+ name: {
316
+ label: string;
317
+ placeholder: string;
318
+ };
319
+ type: {
320
+ label: string;
321
+ placeholder: string;
322
+ options: {
323
+ counter: string;
324
+ orderStation: string;
325
+ };
326
+ };
327
+ restaurant: {
328
+ label: string;
329
+ placeholder: string;
330
+ };
331
+ printer: {
332
+ label: string;
333
+ placeholder: string;
334
+ };
335
+ };
336
+ };
337
+ information: {
338
+ title: string;
339
+ sections: {
340
+ deviceInfo: string;
341
+ heartbeatStatus: string;
342
+ applicationInfo: string;
343
+ systemInfo: string;
344
+ androidOS: string;
345
+ iOSOS: string;
346
+ windowsOS: string;
347
+ };
348
+ main: {
349
+ id: string;
350
+ name: string;
351
+ type: string;
352
+ bindingAt: string;
353
+ };
354
+ heartbeat: {
355
+ lastSyncAt: string;
356
+ freeMemory: string;
357
+ appMemory: string;
358
+ totalMemory: string;
359
+ freeSpace: string;
360
+ totalSpace: string;
361
+ };
362
+ app: {
363
+ name: string;
364
+ buildNumber: string;
365
+ buildSignature: string;
366
+ installerStore: string;
367
+ packageName: string;
368
+ version: string;
369
+ };
370
+ system: {
371
+ kernalArchitecture: string;
372
+ kernalBitness: string;
373
+ kernalName: string;
374
+ kernalVersion: string;
375
+ operatingSystemName: string;
376
+ operatingSystemVersion: string;
377
+ rawKernalArchitecture: string;
378
+ userDirectory: string;
379
+ userId: string;
380
+ userName: string;
381
+ userSpaceBitness: string;
382
+ };
383
+ android: {
384
+ baseOS: string;
385
+ codename: string;
386
+ incremental: string;
387
+ previewSdkInt: string;
388
+ release: string;
389
+ sdkInt: string;
390
+ securityPatch: string;
391
+ board: string;
392
+ bootloader: string;
393
+ brand: string;
394
+ device: string;
395
+ display: string;
396
+ fingerprint: string;
397
+ hardware: string;
398
+ host: string;
399
+ id: string;
400
+ isPhysicalDevice: string;
401
+ manufacturer: string;
402
+ model: string;
403
+ product: string;
404
+ serialNumber: string;
405
+ supported32BitsAbis: string;
406
+ supported64BitsAbis: string;
407
+ supportedAbis: string;
408
+ systemFeatures: string;
409
+ version: string;
410
+ };
411
+ ios: {
412
+ identifierForVendor: string;
413
+ isPhysicalDevice: string;
414
+ localizedModel: string;
415
+ model: string;
416
+ name: string;
417
+ systemName: string;
418
+ systemVersion: string;
419
+ utsname: {
420
+ machine: string;
421
+ nodename: string;
422
+ release: string;
423
+ sysname: string;
424
+ version: string;
425
+ };
426
+ };
427
+ windows: {
428
+ buildLab: string;
429
+ buildLabEx: string;
430
+ buildNumber: string;
431
+ computerName: string;
432
+ csdVersion: string;
433
+ deviceId: string;
434
+ digitalProductId: string;
435
+ displayVersion: string;
436
+ editionId: string;
437
+ installDate: string;
438
+ majorVersion: string;
439
+ minorVersion: string;
440
+ numberOfCores: string;
441
+ platformId: string;
442
+ productId: string;
443
+ productName: string;
444
+ productType: string;
445
+ registeredOwner: string;
446
+ releaseId: string;
447
+ reserved: string;
448
+ servicePackMajor: string;
449
+ servicePackMinor: string;
450
+ suitMask: string;
451
+ systemMemoryInMegabytes: string;
452
+ userName: string;
453
+ };
454
+ };
455
+ customerDisplay: {
456
+ title: string;
457
+ description: string;
458
+ imageSize: {
459
+ recommendation: string;
460
+ dimensions: string;
461
+ };
462
+ selection: {
463
+ title: string;
464
+ description: string;
465
+ };
466
+ update: {
467
+ success: string;
468
+ };
469
+ };
470
+ logs: {
471
+ redirect: string;
472
+ };
473
+ otp: {
474
+ otpCopiedMessage: string;
475
+ otpExpiryMessage: string;
476
+ };
477
+ unbindDevice: {
478
+ unbindConfirmationMessage: string;
479
+ confirmationInstructionPart1: string;
480
+ confirmationInstructionPart2: string;
481
+ };
482
+ config: {
483
+ sidesheet: {
484
+ header: string;
485
+ };
486
+ logging: {
487
+ title: string;
488
+ enable: {
489
+ label: string;
490
+ sublabel: string;
491
+ };
492
+ logLevel: string;
493
+ ttl: {
494
+ label: string;
495
+ unit: string;
496
+ };
497
+ };
498
+ telemetry: {
499
+ title: string;
500
+ enable: {
501
+ label: string;
502
+ sublabel: string;
503
+ };
504
+ };
505
+ };
506
+ validation: {
507
+ required: string;
508
+ invalid: string;
509
+ min: string;
510
+ max: string;
511
+ number: string;
512
+ };
513
+ status: {
514
+ sync: {
515
+ confirmation: string;
516
+ inProgress: string;
517
+ success: string;
518
+ error: string;
519
+ };
520
+ bind: {
521
+ success: string;
522
+ error: string;
523
+ };
524
+ unbind: {
525
+ success: string;
526
+ error: string;
527
+ };
528
+ creation: {
529
+ success: string;
530
+ error: string;
531
+ limitError: string;
532
+ };
533
+ config: {
534
+ success: string;
535
+ error: string;
536
+ };
537
+ };
538
+ error: {
539
+ general: string;
540
+ getDevices: string;
541
+ };
542
+ };
543
+ };
544
+ };
1
545
  export { default as FmApp } from './App.vue';
2
546
  export { routers } from './router/shared';