@accelbyte/sdk 0.1.1-alpha.50 → 0.1.1-alpha.52
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/CHANGELOG.md +10 -0
- package/README.md +3 -0
- package/dist/index.d.ts +4886 -539
- package/dist/index.es.js +1554 -1049
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1559 -1048
- package/dist/index.js.map +1 -1
- package/package.json +3 -4
- package/dist/index.browser.es.js +0 -42242
- package/dist/index.browser.es.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
### 0.1.1-alpha.52 - 2022-12-28
|
|
2
|
+
|
|
3
|
+
- Register feature flag for Login Web placed under Player Portal section
|
|
4
|
+
- Add 3rd-party login config to hide/show it as the login option
|
|
5
|
+
### 0.1.1-alpha.51 - 2023-01-06
|
|
6
|
+
|
|
7
|
+
- Deprecate justice-js-common-utils
|
|
8
|
+
|
|
1
9
|
### 0.1.1-alpha.50 - 2023-01-04
|
|
2
10
|
|
|
3
11
|
- Fix build error
|
|
@@ -20,6 +28,7 @@
|
|
|
20
28
|
|
|
21
29
|
### 0.1.1-alpha.45 - 2022-12-19
|
|
22
30
|
|
|
31
|
+
- Update typings of IResponseError
|
|
23
32
|
- Update conditional exports to support both Node and Browser environments
|
|
24
33
|
|
|
25
34
|
### 0.1.1-alpha.44 - 2022-12-09
|
|
@@ -33,6 +42,7 @@
|
|
|
33
42
|
### 0.1.1-alpha.42 - 2022-12-08
|
|
34
43
|
|
|
35
44
|
- Remove peer dependencies
|
|
45
|
+
- [Editor] Global Styles are automatically applied to all areas of Player Portal V2, Launcher V2 and other apps
|
|
36
46
|
|
|
37
47
|
### 0.1.1-alpha.40 - 2022-12-01
|
|
38
48
|
|
package/README.md
ADDED