@accelbyte/sdk 0.2.0-beta.4 → 0.2.0-beta.8
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 +16 -0
- package/README.md +1 -4
- package/dist/index.browser.es.js +950 -541
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.d.ts +1499 -1060
- package/dist/index.node.es.js +950 -541
- package/dist/index.node.es.js.map +1 -1
- package/dist/index.node.js +950 -541
- package/dist/index.node.js.map +1 -1
- package/examples/next/package.json +1 -1
- package/examples/node/package.json +1 -1
- package/examples/typescript-node/README.md +13 -0
- package/examples/typescript-node/node-example.ts +60 -0
- package/examples/vite/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
### 0.2.0-beta.8 - 2023-02-21
|
|
2
|
+
|
|
3
|
+
- Adds Version info to each service
|
|
4
|
+
|
|
5
|
+
### 0.2.0-beta.7 - 2023-02-21
|
|
6
|
+
|
|
7
|
+
- Code-generated Web SDK with the latest swagger specs
|
|
8
|
+
|
|
9
|
+
### 0.2.0-beta.6 - 2023-02-20
|
|
10
|
+
|
|
11
|
+
- Add DesktopChecker to the entry index
|
|
12
|
+
|
|
13
|
+
### 0.2.0-beta.5 - 2023-02-19
|
|
14
|
+
|
|
15
|
+
- Updated documentation
|
|
16
|
+
|
|
1
17
|
### 0.2.0-beta.4 - 2023-02-17
|
|
2
18
|
|
|
3
19
|
- Updated comments replacing all markups with markdowns
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# AccelByte Web SDK
|
|
2
2
|
|
|
3
|
-
This folder contains the source code of the
|
|
3
|
+
This folder contains the source code of the [github.com/AccelByte/accelbyte-web-sdk](https://github.com/AccelByte/accelbyte-web-sdk). For full documentation and live playground open [AccelByte Web SDK](https://demo.accelbyte.io/web-sdk-playground/)
|
|
4
4
|
|
|
5
5
|
## Key directories
|
|
6
6
|
|
|
@@ -8,6 +8,3 @@ This folder contains the source code of the AccelByte Web SDK. For full document
|
|
|
8
8
|
- [src](https://github.com/AccelByte/accelbyte-web-sdk/tree/main/packages/sdk/src): The source files of the AccelByte Web SDK.
|
|
9
9
|
- [test](https://github.com/AccelByte/accelbyte-web-sdk/tree/main/packages/sdk/test): The test files of the AccelByte Web SDK.
|
|
10
10
|
|
|
11
|
-
## Web SDK Playground
|
|
12
|
-
|
|
13
|
-
Live test the Accelbyte Web SDK in the [Web SDK Playground](https://demo.accelbyte.io/web-sdk-playground/).
|