async-playfab-web-sdk 1.192.250526-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/dist/Addon.d.ts +591 -0
- package/dist/Addon.js +452 -0
- package/dist/Addon.js.map +1 -0
- package/dist/Admin.d.ts +3484 -0
- package/dist/Admin.js +1112 -0
- package/dist/Admin.js.map +1 -0
- package/dist/Authentication.d.ts +109 -0
- package/dist/Authentication.js +290 -0
- package/dist/Authentication.js.map +1 -0
- package/dist/Client.d.ts +4482 -0
- package/dist/Client.js +1893 -0
- package/dist/Client.js.map +1 -0
- package/dist/CloudScript.d.ts +511 -0
- package/dist/CloudScript.js +349 -0
- package/dist/CloudScript.js.map +1 -0
- package/dist/Data.d.ts +228 -0
- package/dist/Data.js +291 -0
- package/dist/Data.js.map +1 -0
- package/dist/Economy.d.ts +1865 -0
- package/dist/Economy.js +614 -0
- package/dist/Economy.js.map +1 -0
- package/dist/Events.d.ts +307 -0
- package/dist/Events.js +327 -0
- package/dist/Events.js.map +1 -0
- package/dist/Experimentation.d.ts +357 -0
- package/dist/Experimentation.js +333 -0
- package/dist/Experimentation.js.map +1 -0
- package/dist/Groups.d.ts +546 -0
- package/dist/Groups.js +417 -0
- package/dist/Groups.js.map +1 -0
- package/dist/Insights.d.ts +141 -0
- package/dist/Insights.js +286 -0
- package/dist/Insights.js.map +1 -0
- package/dist/Localization.d.ts +20 -0
- package/dist/Localization.js +249 -0
- package/dist/Localization.js.map +1 -0
- package/dist/Multiplayer.d.ts +3059 -0
- package/dist/Multiplayer.js +862 -0
- package/dist/Multiplayer.js.map +1 -0
- package/dist/PlayFabCommon-BUv4zqXf.d.ts +72 -0
- package/dist/Profiles.d.ts +278 -0
- package/dist/Profiles.js +306 -0
- package/dist/Profiles.js.map +1 -0
- package/dist/Progression.d.ts +598 -0
- package/dist/Progression.js +404 -0
- package/dist/Progression.js.map +1 -0
- package/dist/Server.d.ts +3889 -0
- package/dist/Server.js +1377 -0
- package/dist/Server.js.map +1 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.js +6007 -0
- package/dist/index.js.map +1 -0
- package/package.json +23 -0
- package/readme.md +25 -0
package/package.json
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
{
|
2
|
+
"name": "async-playfab-web-sdk",
|
3
|
+
"version": "1.192.250526-1",
|
4
|
+
"description": "Asynchronous Playfab SDK for JS client applications",
|
5
|
+
"license": "Apache-2.0",
|
6
|
+
"type": "module",
|
7
|
+
"scripts": {
|
8
|
+
"build": "tsup"
|
9
|
+
},
|
10
|
+
"main": "dist/index.js",
|
11
|
+
"files": [
|
12
|
+
"/dist"
|
13
|
+
],
|
14
|
+
"repository": {
|
15
|
+
"type": "git",
|
16
|
+
"url": "git+https://github.com/r3pwn/async-playfab-web-sdk.git"
|
17
|
+
},
|
18
|
+
"devDependencies": {
|
19
|
+
"@rollup/rollup-linux-x64-gnu": "^4.41.1",
|
20
|
+
"tsup": "^8.5.0",
|
21
|
+
"typescript": "^5.8.3"
|
22
|
+
}
|
23
|
+
}
|
package/readme.md
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# Async-JavaScriptSDK README
|
2
|
+
|
3
|
+
## 1. Overview:
|
4
|
+
|
5
|
+
Unofficial (async-compatible) JavaScriptSDK for the Client API of PlayFab
|
6
|
+
|
7
|
+
This SDK is auto-generated using the same resources the PlayFab team uses, but is not officially endorsed or supported by them in any way, shape, or form.
|
8
|
+
|
9
|
+
## 2. NPM support:
|
10
|
+
|
11
|
+
You may install the SDK with npm by running :
|
12
|
+
|
13
|
+
`npm install async-playfab-web-sdk`
|
14
|
+
|
15
|
+
## 3. Acknowledgements
|
16
|
+
|
17
|
+
- The PlayFab team
|
18
|
+
|
19
|
+
## 4. Copyright and Licensing Information:
|
20
|
+
|
21
|
+
Apache License --
|
22
|
+
Version 2.0, January 2004
|
23
|
+
http://www.apache.org/licenses/
|
24
|
+
|
25
|
+
Full details available within the LICENSE file.
|