@accelbyte/sdk 1.0.1 → 1.0.3
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/README.md +0 -8
- package/dist/cjs/node/index.cjs +2 -3
- package/dist/cjs/node/index.cjs.map +1 -1
- package/dist/es/browser/api/iam/OAuthApi.js +0 -1
- package/dist/es/browser/api/iam/OAuthApi.js.map +1 -1
- package/dist/es/browser/api/iam/UserAuthorizationApi.js +1 -1
- package/dist/es/browser/generated-public/platform/definitions/RegionDataItem.js +1 -1
- package/dist/es/browser/generated-public/platform/definitions/RegionDataItem.js.map +1 -1
- package/dist/es/node/api/iam/OAuthApi.js +0 -1
- package/dist/es/node/api/iam/OAuthApi.js.map +1 -1
- package/dist/es/node/api/iam/UserAuthorizationApi.js +1 -1
- package/dist/es/node/generated-public/platform/definitions/RegionDataItem.js +1 -1
- package/dist/es/node/generated-public/platform/definitions/RegionDataItem.js.map +1 -1
- package/dist/index.d.ts +207 -207
- package/examples/next/pages/index.tsx +4 -4
- package/examples/next/yarn.lock +207 -267
- package/examples/node/index.mjs +1 -1
- package/examples/node/yarn.lock +545 -150
- package/examples/vite/src/App.tsx +3 -3
- package/examples/vite/yarn.lock +91 -91
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright (c) 2018-
|
|
2
|
+
* Copyright (c) 2018-2023 AccelByte Inc. All Rights Reserved
|
|
3
3
|
* This is licensed software from AccelByte Inc, for limitations
|
|
4
4
|
* and restrictions contact your company contract manager.
|
|
5
5
|
*/
|
|
@@ -55,10 +55,10 @@ export default App
|
|
|
55
55
|
// composing components.
|
|
56
56
|
function Collapsible(props: { title: string; json: any }) {
|
|
57
57
|
return (
|
|
58
|
-
<details>
|
|
58
|
+
<details id={'toogle' + props.title}>
|
|
59
59
|
<summary>{props.title}</summary>
|
|
60
60
|
|
|
61
|
-
<pre>{JSON.stringify(props.json, null, 2)}</pre>
|
|
61
|
+
<pre id={props.title}>{JSON.stringify(props.json, null, 2)}</pre>
|
|
62
62
|
</details>
|
|
63
63
|
)
|
|
64
64
|
}
|