@phystack/hub-device 4.4.30

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 (82) hide show
  1. package/.prettierignore +10 -0
  2. package/.prettierrc +10 -0
  3. package/CHANGELOG.md +1202 -0
  4. package/README.md +12 -0
  5. package/dist/index.d.ts +114 -0
  6. package/dist/index.d.ts.map +1 -0
  7. package/dist/index.js +967 -0
  8. package/dist/index.js.map +1 -0
  9. package/dist/storage/browser.d.ts +2 -0
  10. package/dist/storage/browser.d.ts.map +1 -0
  11. package/dist/storage/browser.js +20 -0
  12. package/dist/storage/browser.js.map +1 -0
  13. package/dist/storage/index.d.ts +6 -0
  14. package/dist/storage/index.d.ts.map +1 -0
  15. package/dist/storage/index.js +31 -0
  16. package/dist/storage/index.js.map +1 -0
  17. package/dist/storage/node.d.ts +2 -0
  18. package/dist/storage/node.d.ts.map +1 -0
  19. package/dist/storage/node.js +47 -0
  20. package/dist/storage/node.js.map +1 -0
  21. package/dist/sysinfo/browser.d.ts +3 -0
  22. package/dist/sysinfo/browser.d.ts.map +1 -0
  23. package/dist/sysinfo/browser.js +194 -0
  24. package/dist/sysinfo/browser.js.map +1 -0
  25. package/dist/sysinfo/index.d.ts +3 -0
  26. package/dist/sysinfo/index.d.ts.map +1 -0
  27. package/dist/sysinfo/index.js +34 -0
  28. package/dist/sysinfo/index.js.map +1 -0
  29. package/dist/sysinfo/node.d.ts +3 -0
  30. package/dist/sysinfo/node.d.ts.map +1 -0
  31. package/dist/sysinfo/node.js +53 -0
  32. package/dist/sysinfo/node.js.map +1 -0
  33. package/dist/sysinfo/tizen.d.ts +8 -0
  34. package/dist/sysinfo/tizen.d.ts.map +1 -0
  35. package/dist/sysinfo/tizen.js +168 -0
  36. package/dist/sysinfo/tizen.js.map +1 -0
  37. package/dist/types/command.types.d.ts +8 -0
  38. package/dist/types/command.types.d.ts.map +1 -0
  39. package/dist/types/command.types.js +8 -0
  40. package/dist/types/command.types.js.map +1 -0
  41. package/dist/types/container.types.d.ts +10 -0
  42. package/dist/types/container.types.d.ts.map +1 -0
  43. package/dist/types/container.types.js +3 -0
  44. package/dist/types/container.types.js.map +1 -0
  45. package/dist/types/job.types.d.ts +31 -0
  46. package/dist/types/job.types.d.ts.map +1 -0
  47. package/dist/types/job.types.js +15 -0
  48. package/dist/types/job.types.js.map +1 -0
  49. package/dist/types/twin.types.d.ts +653 -0
  50. package/dist/types/twin.types.d.ts.map +1 -0
  51. package/dist/types/twin.types.js +21 -0
  52. package/dist/types/twin.types.js.map +1 -0
  53. package/dist/utilities/get-device-identifier.utility.d.ts +2 -0
  54. package/dist/utilities/get-device-identifier.utility.d.ts.map +1 -0
  55. package/dist/utilities/get-device-identifier.utility.js +140 -0
  56. package/dist/utilities/get-device-identifier.utility.js.map +1 -0
  57. package/dist/utilities/get-hub-credentials.utility.d.ts +8 -0
  58. package/dist/utilities/get-hub-credentials.utility.d.ts.map +1 -0
  59. package/dist/utilities/get-hub-credentials.utility.js +47 -0
  60. package/dist/utilities/get-hub-credentials.utility.js.map +1 -0
  61. package/dist/utilities/get-provisioning-code.utility.d.ts +3 -0
  62. package/dist/utilities/get-provisioning-code.utility.d.ts.map +1 -0
  63. package/dist/utilities/get-provisioning-code.utility.js +49 -0
  64. package/dist/utilities/get-provisioning-code.utility.js.map +1 -0
  65. package/package.json +39 -0
  66. package/src/hub-device.d.ts +0 -0
  67. package/src/index.ts +1228 -0
  68. package/src/storage/browser.ts +16 -0
  69. package/src/storage/index.ts +46 -0
  70. package/src/storage/node.ts +42 -0
  71. package/src/sysinfo/browser.ts +217 -0
  72. package/src/sysinfo/index.ts +29 -0
  73. package/src/sysinfo/node.ts +387 -0
  74. package/src/sysinfo/tizen.ts +203 -0
  75. package/src/types/command.types.ts +8 -0
  76. package/src/types/container.types.ts +12 -0
  77. package/src/types/job.types.ts +36 -0
  78. package/src/types/twin.types.ts +751 -0
  79. package/src/utilities/get-device-identifier.utility.ts +179 -0
  80. package/src/utilities/get-hub-credentials.utility.ts +56 -0
  81. package/src/utilities/get-provisioning-code.utility.ts +55 -0
  82. package/tsconfig.json +45 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1202 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## 3.92.13 (2024-05-30)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * refactored ga-messaging ([0f1b527](https://github.com/ombori/gridapp/commit/0f1b527e66150611fd31f4cea72f10ee56503198))
12
+
13
+
14
+
15
+
16
+
17
+ ## 3.92.12 (2024-05-29)
18
+
19
+ **Note:** Version bump only for package @ombori/ga-settings
20
+
21
+
22
+
23
+
24
+
25
+ ## 3.92.11 (2024-05-26)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * scanner ([0550883](https://github.com/ombori/gridapp/commit/05508835d802344500028f297f4e0c3f25411aaa))
31
+
32
+
33
+
34
+
35
+
36
+ ## 3.92.10 (2024-05-25)
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * reconnect ([5b8adac](https://github.com/ombori/gridapp/commit/5b8adacae1041fde922222da46b141e9eaee456f))
42
+
43
+
44
+
45
+
46
+
47
+ ## 3.92.9 (2024-05-25)
48
+
49
+ **Note:** Version bump only for package @ombori/ga-settings
50
+
51
+
52
+
53
+
54
+
55
+ ## 3.92.8 (2024-05-24)
56
+
57
+ **Note:** Version bump only for package @ombori/ga-settings
58
+
59
+
60
+
61
+
62
+
63
+ ## 3.92.7 (2024-05-24)
64
+
65
+
66
+ ### Bug Fixes
67
+
68
+ * ver ([a6b8c30](https://github.com/ombori/gridapp/commit/a6b8c307d841d1cd4f0574b754b29d06724002dd))
69
+
70
+
71
+
72
+
73
+
74
+ ## 3.92.6 (2024-05-24)
75
+
76
+ **Note:** Version bump only for package @ombori/ga-settings
77
+
78
+
79
+
80
+
81
+
82
+ ## 3.92.5 (2024-05-20)
83
+
84
+
85
+ ### Bug Fixes
86
+
87
+ * exit if it can not connect to phyedged timeout 2 ([ad402af](https://github.com/ombori/gridapp/commit/ad402af91d8a75f56578dbe9ad41b98e09ddbb3a))
88
+
89
+
90
+
91
+
92
+
93
+ ## 3.92.4 (2024-05-20)
94
+
95
+
96
+ ### Bug Fixes
97
+
98
+ * exit if it can not connect to phyedged timeout ([c45ca4a](https://github.com/ombori/gridapp/commit/c45ca4ae63ceba6773ef8d301db5e51f74fbda80))
99
+
100
+
101
+
102
+
103
+
104
+ ## 3.92.3 (2024-05-20)
105
+
106
+
107
+ ### Bug Fixes
108
+
109
+ * throw an error it connection fails ([5f61fc8](https://github.com/ombori/gridapp/commit/5f61fc8c4546a8c202128a023951288fc67e1bb4))
110
+
111
+
112
+
113
+
114
+
115
+ ## 3.92.2 (2024-05-16)
116
+
117
+ **Note:** Version bump only for package @ombori/ga-settings
118
+
119
+
120
+
121
+
122
+
123
+ ## 3.92.1 (2024-05-16)
124
+
125
+ **Note:** Version bump only for package @ombori/ga-settings
126
+
127
+
128
+
129
+
130
+
131
+ # 3.92.0 (2024-05-15)
132
+
133
+
134
+ ### Features
135
+
136
+ * data matrix data source type ([bc47310](https://github.com/ombori/gridapp/commit/bc47310fec84b9fcf7b22a4d5261f7053f8877bd))
137
+
138
+
139
+
140
+
141
+
142
+ ## 3.91.13 (2024-05-14)
143
+
144
+ **Note:** Version bump only for package @ombori/ga-settings
145
+
146
+
147
+
148
+
149
+
150
+ ## 3.91.12 (2024-05-14)
151
+
152
+ **Note:** Version bump only for package @ombori/ga-settings
153
+
154
+
155
+
156
+
157
+
158
+ ## 3.91.11 (2024-05-14)
159
+
160
+
161
+ ### Bug Fixes
162
+
163
+ * new docker buildx local tag 2 ([4b63c84](https://github.com/ombori/gridapp/commit/4b63c8408ddb0264ced7a026f2658547f4fb2bba))
164
+
165
+
166
+
167
+
168
+
169
+ ## 3.91.10 (2024-05-14)
170
+
171
+
172
+ ### Bug Fixes
173
+
174
+ * new docker buildx local tag ([084f1a9](https://github.com/ombori/gridapp/commit/084f1a923ae16cd978d7a3a84036cf81ca07748a))
175
+
176
+
177
+
178
+
179
+
180
+ ## 3.91.9 (2024-05-12)
181
+
182
+ **Note:** Version bump only for package @ombori/ga-settings
183
+
184
+
185
+
186
+
187
+
188
+ ## 3.91.8 (2024-05-12)
189
+
190
+ **Note:** Version bump only for package @ombori/ga-settings
191
+
192
+
193
+
194
+
195
+
196
+ ## 3.91.7 (2024-05-11)
197
+
198
+ **Note:** Version bump only for package @ombori/ga-settings
199
+
200
+
201
+
202
+
203
+
204
+ ## 3.91.6 (2024-05-03)
205
+
206
+ **Note:** Version bump only for package @ombori/ga-settings
207
+
208
+
209
+
210
+
211
+
212
+ ## 3.91.5 (2024-04-16)
213
+
214
+ **Note:** Version bump only for package @ombori/ga-settings
215
+
216
+
217
+
218
+
219
+
220
+ ## 3.91.4 (2024-04-15)
221
+
222
+ **Note:** Version bump only for package @ombori/ga-settings
223
+
224
+
225
+
226
+
227
+
228
+ ## 3.91.3 (2024-04-15)
229
+
230
+ **Note:** Version bump only for package @ombori/ga-settings
231
+
232
+
233
+
234
+
235
+
236
+ ## 3.91.2 (2024-04-15)
237
+
238
+
239
+ ### Reverts
240
+
241
+ * format changes ([ac616fe](https://github.com/ombori/gridapp/commit/ac616feeaf79f3a57123cad0c87868b17880c635))
242
+
243
+
244
+
245
+
246
+
247
+ ## 3.91.1 (2024-04-08)
248
+
249
+ **Note:** Version bump only for package @ombori/ga-settings
250
+
251
+
252
+
253
+
254
+
255
+ # 3.91.0 (2024-04-08)
256
+
257
+
258
+ ### Features
259
+
260
+ * override ai assistants ([1519ed6](https://github.com/ombori/gridapp/commit/1519ed6d3fdfafdc99a521c91e9efd1348dc976b))
261
+
262
+
263
+
264
+
265
+
266
+ ## 3.90.12 (2024-03-14)
267
+
268
+ **Note:** Version bump only for package @ombori/ga-settings
269
+
270
+
271
+
272
+
273
+
274
+ ## 3.90.11 (2024-03-14)
275
+
276
+ **Note:** Version bump only for package @ombori/ga-settings
277
+
278
+
279
+
280
+
281
+
282
+ ## 3.90.10 (2024-03-11)
283
+
284
+ **Note:** Version bump only for package @ombori/ga-settings
285
+
286
+
287
+
288
+
289
+
290
+ ## 3.90.9 (2024-03-11)
291
+
292
+ **Note:** Version bump only for package @ombori/ga-settings
293
+
294
+
295
+
296
+
297
+
298
+ ## 3.90.8 (2024-03-11)
299
+
300
+ **Note:** Version bump only for package @ombori/ga-settings
301
+
302
+
303
+
304
+
305
+
306
+ ## 3.90.7 (2024-03-11)
307
+
308
+ **Note:** Version bump only for package @ombori/ga-settings
309
+
310
+
311
+
312
+
313
+
314
+ ## 3.90.6 (2024-03-08)
315
+
316
+ **Note:** Version bump only for package @ombori/ga-settings
317
+
318
+
319
+
320
+
321
+
322
+ ## 3.90.5 (2024-03-07)
323
+
324
+ **Note:** Version bump only for package @ombori/ga-settings
325
+
326
+
327
+
328
+
329
+
330
+ ## 3.90.3 (2024-03-07)
331
+
332
+ **Note:** Version bump only for package @ombori/ga-settings
333
+
334
+
335
+
336
+
337
+
338
+ ## 3.90.2 (2024-03-07)
339
+
340
+
341
+ ### Bug Fixes
342
+
343
+ * update yarn.lock ([c68966c](https://github.com/ombori/gridapp/commit/c68966c4aaa68e9e217716723db0e3ed09d559f2))
344
+
345
+
346
+
347
+
348
+
349
+ ## 3.90.1 (2024-03-06)
350
+
351
+ **Note:** Version bump only for package @ombori/ga-settings
352
+
353
+
354
+
355
+
356
+
357
+ ## [3.64.1](https://github.com/ombori/gridapp/compare/v3.64.0...v3.64.1) (2023-10-10)
358
+
359
+
360
+ ### Bug Fixes
361
+
362
+ * remove unused dependency ([d708810](https://github.com/ombori/gridapp/commit/d7088102e556175240908f63318233cf348e1f82))
363
+
364
+
365
+
366
+
367
+
368
+ ## [3.63.1](https://github.com/ombori/gridapp/compare/v3.63.0...v3.63.1) (2023-10-06)
369
+
370
+
371
+ ### Bug Fixes
372
+
373
+ * upgrade axios and babel-plugin-module-resolver ([4773385](https://github.com/ombori/gridapp/commit/4773385feda4bd10db94dcceff6ca9bb73660d54))
374
+
375
+
376
+
377
+
378
+
379
+ ## [3.37.1](https://github.com/ombori/gridapp/compare/v3.37.0...v3.37.1) (2023-04-25)
380
+
381
+ **Note:** Version bump only for package @ombori/ga-settings
382
+
383
+
384
+
385
+
386
+
387
+ # [3.37.0](https://github.com/ombori/gridapp/compare/v3.36.0...v3.37.0) (2023-04-25)
388
+
389
+
390
+ ### Features
391
+
392
+ * expose types in ga-settings ([72f9898](https://github.com/ombori/gridapp/commit/72f9898025299d9f9a517fd6d2fa4a1eed200605))
393
+
394
+
395
+
396
+
397
+
398
+ # [3.21.0](https://github.com/ombori/gridapp/compare/v3.20.17...v3.21.0) (2023-02-22)
399
+
400
+
401
+ ### Bug Fixes
402
+
403
+ * ga-settings ([d96ebaa](https://github.com/ombori/gridapp/commit/d96ebaa51a12d0a05723a8a4096c64aa1e797b9b))
404
+ * ga-settings type ([159a348](https://github.com/ombori/gridapp/commit/159a3480e49c0f262eb71e93042009aee74f9a61))
405
+
406
+
407
+ ### Features
408
+
409
+ * refactor types ([3f84070](https://github.com/ombori/gridapp/commit/3f84070e9ddb7675a9e6ce00deca98c12ef007e4))
410
+ * settings overriding ([0b306bb](https://github.com/ombori/gridapp/commit/0b306bb41725fd35dba9c694853f98146dea3745))
411
+
412
+
413
+
414
+
415
+
416
+ ## [3.11.3](https://github.com/ombori/gridapp/compare/v3.11.2...v3.11.3) (2023-01-05)
417
+
418
+
419
+ ### Bug Fixes
420
+
421
+ * get cache for use settings ([fb3dcd8](https://github.com/ombori/gridapp/commit/fb3dcd8b5cac2e36a34e2eaa42ab056fa1d2da8d))
422
+
423
+
424
+
425
+
426
+
427
+ ## [3.10.2](https://github.com/ombori/gridapp/compare/v3.10.1...v3.10.2) (2022-12-22)
428
+
429
+
430
+ ### Bug Fixes
431
+
432
+ * types for analytics schema ([f0b8d88](https://github.com/ombori/gridapp/commit/f0b8d88f5bbe40a040dac070c7553c4346315d0a))
433
+
434
+
435
+
436
+
437
+
438
+ ## [3.1.12](https://github.com/ombori/gridapp/compare/v3.1.11...v3.1.12) (2022-12-13)
439
+
440
+
441
+ ### Bug Fixes
442
+
443
+ * access key for generic browsers after omg-devices changes ([0109a16](https://github.com/ombori/gridapp/commit/0109a16f1c5422de6b7a4f1342758d52c204ab06))
444
+
445
+
446
+
447
+
448
+
449
+ ## [3.1.10](https://github.com/ombori/gridapp/compare/v3.1.9...v3.1.10) (2022-12-13)
450
+
451
+ **Note:** Version bump only for package @ombori/ga-settings
452
+
453
+
454
+
455
+
456
+
457
+ ## [3.1.8](https://github.com/ombori/gridapp/compare/v3.1.7...v3.1.8) (2022-12-13)
458
+
459
+ **Note:** Version bump only for package @ombori/ga-settings
460
+
461
+
462
+
463
+
464
+
465
+ ## [2.238.1](https://github.com/ombori/gridapp/compare/v2.238.0...v2.238.1) (2022-11-09)
466
+
467
+ **Note:** Version bump only for package @ombori/ga-settings
468
+
469
+
470
+
471
+
472
+
473
+ # [2.238.0](https://github.com/ombori/gridapp/compare/v2.237.0...v2.238.0) (2022-11-09)
474
+
475
+
476
+ ### Features
477
+
478
+ * removed video workarounds and render gridapp without iframe ([06c482d](https://github.com/ombori/gridapp/commit/06c482d4f462a8d4b3c1065c39d074469139a527))
479
+
480
+
481
+
482
+
483
+
484
+ ## [2.226.2](https://github.com/ombori/gridapp/compare/v2.226.1...v2.226.2) (2022-09-11)
485
+
486
+
487
+ ### Bug Fixes
488
+
489
+ * module stage and ga-settings ([1796ca6](https://github.com/ombori/gridapp/commit/1796ca6c09f658ff326e6448fc25c990295b3ed8))
490
+
491
+
492
+
493
+
494
+
495
+ ## [2.226.1](https://github.com/ombori/gridapp/compare/v2.226.0...v2.226.1) (2022-09-08)
496
+
497
+
498
+ ### Bug Fixes
499
+
500
+ * pass props to useSettings inside useAppInfo ([d8284eb](https://github.com/ombori/gridapp/commit/d8284eb45dd26ba3b888d23b7b4da5b2fdd3b1ba))
501
+
502
+
503
+
504
+
505
+
506
+ ## [2.225.2](https://github.com/ombori/gridapp/compare/v2.225.1...v2.225.2) (2022-09-08)
507
+
508
+
509
+ ### Bug Fixes
510
+
511
+ * update useGridSignalsInitParams ([9f3cdda](https://github.com/ombori/gridapp/commit/9f3cdda5dc952f194da7ffb9fe29250f7b12d5cc))
512
+
513
+
514
+
515
+
516
+
517
+ ## [2.225.1](https://github.com/ombori/gridapp/compare/v2.225.0...v2.225.1) (2022-08-25)
518
+
519
+
520
+ ### Bug Fixes
521
+
522
+ * update usage comment ([536eb29](https://github.com/ombori/gridapp/commit/536eb29273a43e3b5d0c24d9ff1dac2b359b2792))
523
+ * update usage of "process" variable ([e7f1a3e](https://github.com/ombori/gridapp/commit/e7f1a3e37ca388711e72c58a7c41800df85854ec))
524
+
525
+
526
+
527
+
528
+
529
+ # [2.225.0](https://github.com/ombori/gridapp/compare/v2.224.0...v2.225.0) (2022-08-25)
530
+
531
+
532
+ ### Bug Fixes
533
+
534
+ * update branch ([c74c42e](https://github.com/ombori/gridapp/commit/c74c42ebc415fbf533025100ee4bb9faf2f16df8))
535
+ * update settings ([2217e5a](https://github.com/ombori/gridapp/commit/2217e5a92dfe543c07779b3afe694bee04d87d4e))
536
+
537
+
538
+ ### Features
539
+
540
+ * add possibility to override dev settings path ([3121518](https://github.com/ombori/gridapp/commit/31215187527cc53507492cc17d12b936de1a3695))
541
+
542
+
543
+
544
+
545
+
546
+ ## [2.218.5](https://github.com/ombori/gridapp/compare/v2.218.4...v2.218.5) (2022-07-06)
547
+
548
+
549
+ ### Bug Fixes
550
+
551
+ * a bug in dev env ([9f430ad](https://github.com/ombori/gridapp/commit/9f430ad666f63ad9ad1191b49818d94959923ff2))
552
+
553
+
554
+
555
+
556
+
557
+ # [2.217.0](https://github.com/ombori/gridapp/compare/v2.216.0...v2.217.0) (2022-06-15)
558
+
559
+
560
+ ### Features
561
+
562
+ * mobileEndpoint type on AppInfo ([3c891b1](https://github.com/ombori/gridapp/commit/3c891b128596d8d878e789940a74584b011af033))
563
+
564
+
565
+
566
+
567
+
568
+ ## [2.213.1](https://github.com/ombori/gridapp/compare/v2.213.0...v2.213.1) (2022-05-24)
569
+
570
+ **Note:** Version bump only for package @ombori/ga-settings
571
+
572
+
573
+
574
+
575
+
576
+ # [2.213.0](https://github.com/ombori/gridapp/compare/v2.212.0...v2.213.0) (2022-05-24)
577
+
578
+
579
+ ### Features
580
+
581
+ * mobile endpoint support ([eaefc7f](https://github.com/ombori/gridapp/commit/eaefc7f5d877c55d38f464b0ac6a5e64fb5867f5))
582
+
583
+
584
+
585
+
586
+
587
+ # [2.185.0](https://github.com/ombori/gridapp/compare/v2.184.0...v2.185.0) (2022-03-18)
588
+
589
+
590
+ ### Features
591
+
592
+ * add device name in useAppinfo ([8e21ed9](https://github.com/ombori/gridapp/commit/8e21ed98d3b7afe8ad3524f3253cb5dbe3f35446))
593
+
594
+
595
+
596
+
597
+
598
+ ## [2.170.1](https://github.com/ombori/gridapp/compare/v2.170.0...v2.170.1) (2022-02-09)
599
+
600
+
601
+ ### Bug Fixes
602
+
603
+ * use app info ([1f8bf55](https://github.com/ombori/gridapp/commit/1f8bf553903bf456f2a78c4d24b0ba5258d2a7d1))
604
+
605
+
606
+
607
+
608
+
609
+ ## [2.169.6](https://github.com/ombori/gridapp/compare/v2.169.5...v2.169.6) (2022-02-09)
610
+
611
+ **Note:** Version bump only for package @ombori/ga-settings
612
+
613
+
614
+
615
+
616
+
617
+ ## [2.169.5](https://github.com/ombori/gridapp/compare/v2.169.4...v2.169.5) (2022-02-09)
618
+
619
+ **Note:** Version bump only for package @ombori/ga-settings
620
+
621
+
622
+
623
+
624
+
625
+ ## [2.169.4](https://github.com/ombori/gridapp/compare/v2.169.3...v2.169.4) (2022-02-09)
626
+
627
+
628
+ ### Bug Fixes
629
+
630
+ * tizen grid signals ([037e336](https://github.com/ombori/gridapp/commit/037e3368da707ab47f5ebdda819908dabcbc6339))
631
+
632
+
633
+
634
+
635
+
636
+ ## [2.169.3](https://github.com/ombori/gridapp/compare/v2.169.2...v2.169.3) (2022-02-09)
637
+
638
+ **Note:** Version bump only for package @ombori/ga-settings
639
+
640
+
641
+
642
+
643
+
644
+ ## [2.169.2](https://github.com/ombori/gridapp/compare/v2.169.1...v2.169.2) (2022-02-09)
645
+
646
+
647
+ ### Bug Fixes
648
+
649
+ * space id in settings ([7904516](https://github.com/ombori/gridapp/commit/7904516385fd44e88a62d9ecabc3f3b032386456))
650
+
651
+
652
+
653
+
654
+
655
+ ## [2.169.1](https://github.com/ombori/gridapp/compare/v2.169.0...v2.169.1) (2022-02-09)
656
+
657
+
658
+ ### Bug Fixes
659
+
660
+ * device id in ga-settings for xorg screen module ([90de13f](https://github.com/ombori/gridapp/commit/90de13f83c36bec3dc4b9479a696258baea9298f))
661
+
662
+
663
+
664
+
665
+
666
+ # [2.169.0](https://github.com/ombori/gridapp/compare/v2.168.0...v2.169.0) (2022-02-09)
667
+
668
+
669
+ ### Features
670
+
671
+ * ga-settings support on xorg-based screen module ([0ad2fca](https://github.com/ombori/gridapp/commit/0ad2fcaa20cf549196a7d92c10c0b10306ed229c))
672
+
673
+
674
+
675
+
676
+
677
+ ## [2.167.1](https://github.com/ombori/gridapp/compare/v2.167.0...v2.167.1) (2022-02-02)
678
+
679
+
680
+ ### Bug Fixes
681
+
682
+ * avoid logging in test env ([5d51c10](https://github.com/ombori/gridapp/commit/5d51c10901e9bd1875dacce4e751f9dcc3c83807))
683
+
684
+
685
+
686
+
687
+
688
+ # [2.162.0](https://github.com/ombori/gridapp/compare/v2.161.3...v2.162.0) (2022-01-25)
689
+
690
+
691
+ ### Features
692
+
693
+ * rename username and password on grid-signals ([ea89774](https://github.com/ombori/gridapp/commit/ea89774c50d984ed6ee526a9224fffe99abc4d7a))
694
+
695
+
696
+
697
+
698
+
699
+ ## [2.161.2](https://github.com/ombori/gridapp/compare/v2.161.1...v2.161.2) (2022-01-18)
700
+
701
+
702
+ ### Bug Fixes
703
+
704
+ * update ts config ([fe5bd08](https://github.com/ombori/gridapp/commit/fe5bd0808629cbdcbc69d83ebcf197ed1871c0ee))
705
+
706
+
707
+
708
+
709
+
710
+ ## [2.140.4](https://github.com/ombori/gridapp/compare/v2.140.3...v2.140.4) (2021-12-16)
711
+
712
+
713
+ ### Bug Fixes
714
+
715
+ * remove logs ([68ebaa4](https://github.com/ombori/gridapp/commit/68ebaa4c192d88c5e84c62a13149e26860f15c89))
716
+
717
+
718
+
719
+
720
+
721
+ ## [2.140.3](https://github.com/ombori/gridapp/compare/v2.140.2...v2.140.3) (2021-12-16)
722
+
723
+
724
+ ### Bug Fixes
725
+
726
+ * force get settings for late mount ([1bafc45](https://github.com/ombori/gridapp/commit/1bafc4551672eb8e3a1495280c8406088f0de30f))
727
+
728
+
729
+
730
+
731
+
732
+ ## [2.140.2](https://github.com/ombori/gridapp/compare/v2.140.1...v2.140.2) (2021-12-16)
733
+
734
+ **Note:** Version bump only for package @ombori/ga-settings
735
+
736
+
737
+
738
+
739
+
740
+ ## [2.137.5](https://github.com/ombori/gridapp/compare/v2.137.4...v2.137.5) (2021-12-13)
741
+
742
+
743
+ ### Bug Fixes
744
+
745
+ * version bump and remove console logs ([54bd3a2](https://github.com/ombori/gridapp/commit/54bd3a2686c29be18c72578049771292082e605a))
746
+
747
+
748
+
749
+
750
+
751
+ ## [2.137.2](https://github.com/ombori/gridapp/compare/v2.137.1...v2.137.2) (2021-12-13)
752
+
753
+ **Note:** Version bump only for package @ombori/ga-settings
754
+
755
+
756
+
757
+
758
+
759
+ ## [2.137.1](https://github.com/ombori/gridapp/compare/v2.137.0...v2.137.1) (2021-12-13)
760
+
761
+ **Note:** Version bump only for package @ombori/ga-settings
762
+
763
+
764
+
765
+
766
+
767
+ # [2.137.0](https://github.com/ombori/gridapp/compare/v2.136.3...v2.137.0) (2021-12-13)
768
+
769
+
770
+ ### Bug Fixes
771
+
772
+ * do not leak username and password in useAppInfo ([55c94c6](https://github.com/ombori/gridapp/commit/55c94c64d844aef5dda330191aa6684e08241f30))
773
+
774
+
775
+ ### Features
776
+
777
+ * browserId and accessKey in ga-settings ([cebde76](https://github.com/ombori/gridapp/commit/cebde7621a0d01bce3cc0a8958ed291bd0a22562))
778
+
779
+
780
+
781
+
782
+
783
+ # [2.133.0](https://github.com/ombori/gridapp/compare/v2.132.2...v2.133.0) (2021-12-09)
784
+
785
+
786
+ ### Features
787
+
788
+ * rename grid-session-manager to grid-signals ([99205ce](https://github.com/ombori/gridapp/commit/99205ce318dd4e3fb4a628bf493f373e9c255145))
789
+
790
+
791
+
792
+
793
+
794
+ ## [2.132.2](https://github.com/ombori/gridapp/compare/v2.132.1...v2.132.2) (2021-12-09)
795
+
796
+
797
+ ### Bug Fixes
798
+
799
+ * do not require settings if not calling ga-settings on build ([74efdfe](https://github.com/ombori/gridapp/commit/74efdfec9f4db263b38553903d6396321c9670f0))
800
+
801
+
802
+
803
+
804
+
805
+ # [2.131.0](https://github.com/ombori/gridapp/compare/v2.130.3...v2.131.0) (2021-12-07)
806
+
807
+
808
+ ### Features
809
+
810
+ * include username and password in init object ([ed65ad2](https://github.com/ombori/gridapp/commit/ed65ad28b4d00fb0b78b18082aa4ebf901687e75))
811
+
812
+
813
+
814
+
815
+
816
+ ## [2.125.5](https://github.com/ombori/gridapp/compare/v2.125.4...v2.125.5) (2021-12-04)
817
+
818
+
819
+ ### Bug Fixes
820
+
821
+ * useQAApi ([b9cfcbb](https://github.com/ombori/gridapp/commit/b9cfcbb16a4fce78896284e90185396e08dec2f8))
822
+
823
+
824
+
825
+
826
+
827
+ ## [2.125.4](https://github.com/ombori/gridapp/compare/v2.125.3...v2.125.4) (2021-12-04)
828
+
829
+
830
+ ### Bug Fixes
831
+
832
+ * comments ([de28e2f](https://github.com/ombori/gridapp/commit/de28e2f31b46fa0c8d1aeea4ae639be1abb7dfb2))
833
+
834
+
835
+
836
+
837
+
838
+ ## [2.125.3](https://github.com/ombori/gridapp/compare/v2.125.2...v2.125.3) (2021-12-04)
839
+
840
+ **Note:** Version bump only for package @ombori/ga-settings
841
+
842
+
843
+
844
+
845
+
846
+ ## [2.125.2](https://github.com/ombori/gridapp/compare/v2.125.1...v2.125.2) (2021-12-04)
847
+
848
+
849
+ ### Bug Fixes
850
+
851
+ * import issues ([eff0e02](https://github.com/ombori/gridapp/commit/eff0e02aa3ca1909a5bfc21087d5a8347fde653b))
852
+
853
+
854
+
855
+
856
+
857
+ ## [2.125.1](https://github.com/ombori/gridapp/compare/v2.125.0...v2.125.1) (2021-12-04)
858
+
859
+
860
+ ### Bug Fixes
861
+
862
+ * attempt fix react version issues ([9c124c6](https://github.com/ombori/gridapp/commit/9c124c64df56f36fc155271963676c8e20b78d0a))
863
+
864
+
865
+
866
+
867
+
868
+ # [2.125.0](https://github.com/ombori/gridapp/compare/v2.124.0...v2.125.0) (2021-12-03)
869
+
870
+
871
+ ### Features
872
+
873
+ * only require locals settings on runtime ([be5a62e](https://github.com/ombori/gridapp/commit/be5a62ec79bb00c06bf6f66c532762264be1c853))
874
+
875
+
876
+
877
+
878
+
879
+ ## [2.120.1](https://github.com/ombori/gridapp/compare/v2.120.0...v2.120.1) (2021-11-30)
880
+
881
+
882
+ ### Bug Fixes
883
+
884
+ * session manager docs and more ([d5070b4](https://github.com/ombori/gridapp/commit/d5070b4e2368e2fc7e27feec1af0205107ecdde2))
885
+ * session manager, ga-settings and more ([5c07188](https://github.com/ombori/gridapp/commit/5c0718847de4ef68313357621a36644c384eb8d5))
886
+
887
+
888
+
889
+
890
+
891
+ ## [2.116.13](https://github.com/ombori/gridapp/compare/v2.116.12...v2.116.13) (2021-11-27)
892
+
893
+
894
+ ### Bug Fixes
895
+
896
+ * env development value and rename user to contacts for session manager ([02ede2d](https://github.com/ombori/gridapp/commit/02ede2db35ff6ed6513e11e6f1cdecbbe72101f5))
897
+
898
+
899
+
900
+
901
+
902
+ ## [2.116.12](https://github.com/ombori/gridapp/compare/v2.116.11...v2.116.12) (2021-11-26)
903
+
904
+ **Note:** Version bump only for package @ombori/ga-settings
905
+
906
+
907
+
908
+
909
+
910
+ ## [2.116.7](https://github.com/ombori/gridapp/compare/v2.116.6...v2.116.7) (2021-11-26)
911
+
912
+
913
+ ### Bug Fixes
914
+
915
+ * session manager and ga settings fixes ([cada531](https://github.com/ombori/gridapp/commit/cada531e67050eefc6c30dd8ff2253acd333643f))
916
+
917
+
918
+
919
+
920
+
921
+ ## [2.116.6](https://github.com/ombori/gridapp/compare/v2.116.5...v2.116.6) (2021-11-26)
922
+
923
+
924
+ ### Bug Fixes
925
+
926
+ * session-manager ([64e7213](https://github.com/ombori/gridapp/commit/64e7213598967a40b4416c7ace8850b6980d4cfc))
927
+
928
+
929
+
930
+
931
+
932
+ ## [2.116.5](https://github.com/ombori/gridapp/compare/v2.116.4...v2.116.5) (2021-11-26)
933
+
934
+
935
+ ### Bug Fixes
936
+
937
+ * ga-settings session manager hook ([7fe284e](https://github.com/ombori/gridapp/commit/7fe284e880ab137b870b23526b3f4f40153ff195))
938
+
939
+
940
+
941
+
942
+
943
+ # [2.116.0](https://github.com/ombori/gridapp/compare/v2.115.1...v2.116.0) (2021-11-25)
944
+
945
+
946
+ ### Features
947
+
948
+ * development env proper settings like in prod ([3e06923](https://github.com/ombori/gridapp/commit/3e069234d4d6a3b5d8519616b86d560d606c2486))
949
+
950
+
951
+
952
+
953
+
954
+ ## [2.114.1](https://github.com/ombori/gridapp/compare/v2.114.0...v2.114.1) (2021-11-22)
955
+
956
+ **Note:** Version bump only for package @ombori/ga-settings
957
+
958
+
959
+
960
+
961
+
962
+ # [2.114.0](https://github.com/ombori/gridapp/compare/v2.113.5...v2.114.0) (2021-11-22)
963
+
964
+
965
+ ### Features
966
+
967
+ * browser support ([06edbff](https://github.com/ombori/gridapp/commit/06edbff1ae50a601183417ce66573221744c22ff))
968
+ * more session manager init logic ([d99572c](https://github.com/ombori/gridapp/commit/d99572c6065ce6aa0bbc4c6c73aadf9e3e0104ec))
969
+ * useSessionManagerInitProps ([92edd70](https://github.com/ombori/gridapp/commit/92edd7060cb77bcf3bbba96fe4be9043ac9fc111))
970
+
971
+
972
+
973
+
974
+
975
+ ## [2.82.17](https://github.com/ombori/gridapp/compare/v2.82.16...v2.82.17) (2021-08-13)
976
+
977
+
978
+ ### Bug Fixes
979
+
980
+ * builtin types in settings ([f970d2e](https://github.com/ombori/gridapp/commit/f970d2e16ebd3e834dad81e10267daa22e44c188))
981
+
982
+
983
+
984
+
985
+
986
+ ## [2.75.7](https://github.com/ombori/gridapp/compare/v2.75.6...v2.75.7) (2021-07-27)
987
+
988
+ **Note:** Version bump only for package @ombori/ga-settings
989
+
990
+
991
+
992
+
993
+
994
+ ## [2.75.6](https://github.com/ombori/gridapp/compare/v2.75.5...v2.75.6) (2021-07-27)
995
+
996
+ **Note:** Version bump only for package @ombori/ga-settings
997
+
998
+
999
+
1000
+
1001
+
1002
+ ## [2.75.5](https://github.com/ombori/gridapp/compare/v2.75.4...v2.75.5) (2021-07-27)
1003
+
1004
+ **Note:** Version bump only for package @ombori/ga-settings
1005
+
1006
+
1007
+
1008
+
1009
+
1010
+ ## [2.75.4](https://github.com/ombori/gridapp/compare/v2.75.3...v2.75.4) (2021-07-27)
1011
+
1012
+ **Note:** Version bump only for package @ombori/ga-settings
1013
+
1014
+
1015
+
1016
+
1017
+
1018
+ ## [2.75.3](https://github.com/ombori/gridapp/compare/v2.75.2...v2.75.3) (2021-07-27)
1019
+
1020
+ **Note:** Version bump only for package @ombori/ga-settings
1021
+
1022
+
1023
+
1024
+
1025
+
1026
+ ## [2.74.3](https://github.com/ombori/gridapp/compare/v2.74.2...v2.74.3) (2021-07-23)
1027
+
1028
+ **Note:** Version bump only for package @ombori/ga-settings
1029
+
1030
+
1031
+
1032
+
1033
+
1034
+ ## [2.67.5](https://github.com/ombori/gridapp/compare/v2.67.4...v2.67.5) (2021-06-17)
1035
+
1036
+ **Note:** Version bump only for package @ombori/ga-settings
1037
+
1038
+
1039
+
1040
+
1041
+
1042
+ ## [2.67.4](https://github.com/ombori/gridapp/compare/v2.67.3...v2.67.4) (2021-06-17)
1043
+
1044
+
1045
+ ### Bug Fixes
1046
+
1047
+ * build script is a part of ga-boot now ([a4a9183](https://github.com/ombori/gridapp/commit/a4a9183527c2ba69bd75208350828a02f632f460))
1048
+
1049
+
1050
+
1051
+
1052
+
1053
+ ## [2.63.3](https://github.com/ombori/gridapp/compare/v2.63.2...v2.63.3) (2021-06-07)
1054
+
1055
+
1056
+ ### Bug Fixes
1057
+
1058
+ * device info in ga-settings ([494f05c](https://github.com/ombori/gridapp/commit/494f05c755b1121f6e2975af2b33fdc0b4667c79))
1059
+
1060
+
1061
+
1062
+
1063
+
1064
+ # [2.55.0](https://github.com/ombori/gridapp/compare/v2.54.4...v2.55.0) (2021-04-30)
1065
+
1066
+
1067
+ ### Features
1068
+
1069
+ * useAppInfo for ga-settings ([a16d061](https://github.com/ombori/gridapp/commit/a16d061dc47ee90c25a65daeae3fb97466def89f))
1070
+
1071
+
1072
+
1073
+
1074
+
1075
+ ## [2.35.1](https://github.com/ombori/gridapp/compare/v2.35.0...v2.35.1) (2021-02-26)
1076
+
1077
+
1078
+ ### Bug Fixes
1079
+
1080
+ * useSettings works even if the component wasnt mounted on app start ([24c0876](https://github.com/ombori/gridapp/commit/24c0876efe1654c38aeff858719929ba35b382a6))
1081
+
1082
+
1083
+
1084
+
1085
+
1086
+ ## [2.20.7](https://github.com/ombori/gridapp/compare/v2.20.6...v2.20.7) (2020-12-02)
1087
+
1088
+
1089
+ ### Bug Fixes
1090
+
1091
+ * grid app settings propagation ([f57c42f](https://github.com/ombori/gridapp/commit/f57c42f7245b22c92571e10f5b5da9036edb1909))
1092
+
1093
+
1094
+
1095
+
1096
+
1097
+ ## [2.19.2](https://github.com/ombori/gridapp/compare/v2.19.1...v2.19.2) (2020-12-01)
1098
+
1099
+ **Note:** Version bump only for package @ombori/ga-settings
1100
+
1101
+
1102
+
1103
+
1104
+
1105
+ ## [2.19.1](https://github.com/ombori/gridapp/compare/v2.19.0...v2.19.1) (2020-12-01)
1106
+
1107
+ **Note:** Version bump only for package @ombori/ga-settings
1108
+
1109
+
1110
+
1111
+
1112
+
1113
+ # [2.19.0](https://github.com/ombori/gridapp/compare/v2.18.0...v2.19.0) (2020-11-28)
1114
+
1115
+
1116
+ ### Features
1117
+
1118
+ * ga-settings package ([ba6a9ba](https://github.com/ombori/gridapp/commit/ba6a9ba8db9e93fec7adbc18b579e37c6798d2e0))
1119
+ * ga-settings works ([b8be28e](https://github.com/ombori/gridapp/commit/b8be28e01cbdfaeaaaa202adaa06ba07c9db560a))
1120
+
1121
+
1122
+
1123
+
1124
+
1125
+ # [2.18.0](https://github.com/ombori/gridapp/compare/v2.17.0...v2.18.0) (2020-10-27)
1126
+
1127
+
1128
+ ### Bug Fixes
1129
+
1130
+ * more debugs ([5fe4a35](https://github.com/ombori/gridapp/commit/5fe4a35702400e379340e3e97fc887e00d819781))
1131
+
1132
+
1133
+ ### Features
1134
+
1135
+ * messaging-test-server ([eb96cac](https://github.com/ombori/gridapp/commit/eb96cac4f1af0211656eac60fb1138d42158a319))
1136
+
1137
+
1138
+
1139
+
1140
+
1141
+ ## [2.14.3](https://github.com/ombori/gridapp/compare/v2.14.2...v2.14.3) (2020-10-05)
1142
+
1143
+
1144
+ ### Bug Fixes
1145
+
1146
+ * display spinner when theres no connection to the server ([09f38fc](https://github.com/ombori/gridapp/commit/09f38fcaa357097118b50e7aca906ef72cf10dec))
1147
+
1148
+
1149
+
1150
+
1151
+
1152
+ ## [2.14.2](https://github.com/ombori/gridapp/compare/v2.14.1...v2.14.2) (2020-10-05)
1153
+
1154
+
1155
+ ### Bug Fixes
1156
+
1157
+ * custom space ids are always using dns-discovery ([91abcfa](https://github.com/ombori/gridapp/commit/91abcfa8d97152ed17183448906a0208b5b2a786))
1158
+ * use wss for local messaging ([46873b8](https://github.com/ombori/gridapp/commit/46873b81a2a9c302db05a12e4f9de28e98f0bdd2))
1159
+
1160
+
1161
+
1162
+
1163
+
1164
+ ## [2.13.1](https://github.com/ombori/gridapp/compare/v2.13.0...v2.13.1) (2020-09-25)
1165
+
1166
+ **Note:** Version bump only for package @ombori/ga-messaging
1167
+
1168
+
1169
+
1170
+
1171
+
1172
+ # [2.13.0](https://github.com/ombori/gridapp/compare/v2.12.1...v2.13.0) (2020-09-25)
1173
+
1174
+
1175
+ ### Bug Fixes
1176
+
1177
+ * settings for door-signage ([366fa2c](https://github.com/ombori/gridapp/commit/366fa2c1bc8bfb7a207e9d77077c0603c58d9356))
1178
+
1179
+
1180
+
1181
+
1182
+
1183
+ ## [2.12.1](https://github.com/ombori/gridapp/compare/v2.12.0...v2.12.1) (2020-09-25)
1184
+
1185
+ **Note:** Version bump only for package @ombori/ga-messaging
1186
+
1187
+
1188
+
1189
+
1190
+
1191
+ # [2.12.0](https://github.com/ombori/gridapp/compare/v2.11.0...v2.12.0) (2020-09-24)
1192
+
1193
+
1194
+ ### Bug Fixes
1195
+
1196
+ * messaging module ([59ebd5e](https://github.com/ombori/gridapp/commit/59ebd5e4ac3056c90a51990e21e69c6f34d8674f))
1197
+
1198
+
1199
+
1200
+
1201
+
1202
+ # Change Log