@accelbyte/sdk 0.1.1-alpha.59 → 0.2.0-beta.1
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 +22 -0
- package/dist/index.browser.es.js +804 -354
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.d.ts +10161 -10905
- package/dist/index.node.es.js +804 -354
- package/dist/index.node.es.js.map +1 -1
- package/dist/index.node.js +836 -363
- package/dist/index.node.js.map +1 -1
- package/examples/next/package.json +1 -1
- package/examples/next/pages/index.tsx +15 -14
- package/examples/next/yarn.lock +14 -14
- package/examples/node/index.mjs +13 -12
- package/examples/node/package.json +1 -1
- package/examples/node/yarn.lock +14 -14
- package/examples/vite/package.json +1 -1
- package/examples/vite/src/Sdk.ts +12 -12
- package/examples/vite/yarn.lock +14 -14
- package/package.json +1 -1
- package/examples/next/.env.example +0 -7
- package/examples/node/.env.example +0 -7
- package/examples/vite/.env.example +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,28 @@
|
|
|
1
|
+
### 0.2.0-beta.1 - 2023-02-15
|
|
2
|
+
|
|
3
|
+
- Release Web SDK as a Beta Version
|
|
4
|
+
|
|
5
|
+
### 0.1.1-alpha.63 - 2023-02-15
|
|
6
|
+
|
|
7
|
+
- Update codegen to emit `interface` instead of `type` when inferring Zod type
|
|
8
|
+
|
|
9
|
+
### 0.1.1-alpha.62 - 2023-02-08
|
|
10
|
+
|
|
11
|
+
- Allow simplification when passing configs to widgetOptions in SdkWidget
|
|
12
|
+
|
|
13
|
+
### 0.1.1-alpha.61 - 2023-02-07
|
|
14
|
+
|
|
15
|
+
- OS-8668 fixing check EligibleUser dateOfBirth is now could be undefined
|
|
16
|
+
|
|
17
|
+
### 0.1.1-alpha.60 - 2023-02-06
|
|
18
|
+
|
|
19
|
+
- Fix build for Windows
|
|
20
|
+
- Create missing config types and move configs from private package
|
|
21
|
+
|
|
1
22
|
### 0.1.1-alpha.59 - 2023-02-01
|
|
2
23
|
|
|
3
24
|
- Move example SDK and Widgets usages to the SDK and Widgets folder
|
|
25
|
+
- Expose passing data config from SDK to Widget
|
|
4
26
|
|
|
5
27
|
### 0.1.1-alpha.58 - 2023-01-30
|
|
6
28
|
|