skapi-js 1.2.8 → 1.2.9
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 +61 -9
- package/dist/bundle-report-commonjs.html +2 -2
- package/dist/bundle-report.html +1 -1
- package/dist/skapi.cjs +1 -1
- package/dist/skapi.cjs.map +1 -1
- package/dist/skapi.js +1 -1
- package/dist/skapi.js.map +1 -1
- package/js/main/skapi.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
# Skapi
|
|
2
2
|
|
|
3
|
-
### Zero-Setup Backend
|
|
3
|
+
### Zero-Setup Serverless Backend
|
|
4
4
|
|
|
5
|
-
Skapi is a
|
|
6
|
-
Build full-featured web applications faster with Skapi - No complex installations, No server configurations, No database management required.
|
|
5
|
+
Skapi is a backend API that runs entirely serverless—no complex installations, no server configurations, and no database management required. Build full-featured web applications faster and focus on what matters: your product.
|
|
7
6
|
|
|
8
|
-
###
|
|
7
|
+
### Works Everywhere: Vanilla HTML, SPAs, and AI Agents
|
|
9
8
|
|
|
10
|
-
No fancy
|
|
9
|
+
No fancy frameworks or complex deployments needed. Skapi is a single JavaScript library that works seamlessly with vanilla HTML, modern frameworks like React, Vue, and Angular, and integrates effortlessly with AI-powered development tools.
|
|
11
10
|
|
|
12
11
|
### All-in-One Package
|
|
13
12
|
|
|
@@ -45,11 +44,11 @@ For vanilla HTML projects, import Skapi in the script tag, and initialize the li
|
|
|
45
44
|
<!DOCTYPE html>
|
|
46
45
|
<script src="https://cdn.jsdelivr.net/npm/skapi-js@latest/dist/skapi.js"></script>
|
|
47
46
|
<script>
|
|
48
|
-
const skapi = new Skapi('
|
|
47
|
+
const skapi = new Skapi('SERVICE_ID');
|
|
49
48
|
</script>
|
|
50
49
|
```
|
|
51
50
|
|
|
52
|
-
**Be sure to replace `'
|
|
51
|
+
**Be sure to replace `'SERVICE_ID'` with the actual ID of your service**
|
|
53
52
|
|
|
54
53
|
For more information, check out our [documentation](https://docs.skapi.com/introduction/getting-started.html).
|
|
55
54
|
|
|
@@ -66,7 +65,7 @@ Then, import the library into your main JavaScript file.
|
|
|
66
65
|
```javascript
|
|
67
66
|
// main.js
|
|
68
67
|
import { Skapi } from 'skapi-js';
|
|
69
|
-
const skapi = new Skapi('
|
|
68
|
+
const skapi = new Skapi('SERVICE_ID');
|
|
70
69
|
|
|
71
70
|
// Export the skapi instance, so you can use it in other component files
|
|
72
71
|
export { skapi }
|
|
@@ -83,7 +82,7 @@ Below is an example of how you can use the `mock()` method in HTML forms.
|
|
|
83
82
|
<!DOCTYPE html>
|
|
84
83
|
<script src="https://cdn.jsdelivr.net/npm/skapi-js@latest/dist/skapi.js"></script>
|
|
85
84
|
<script>
|
|
86
|
-
const skapi = new Skapi('
|
|
85
|
+
const skapi = new Skapi('SERVICE_ID');
|
|
87
86
|
</script>
|
|
88
87
|
|
|
89
88
|
<form onsubmit='skapi.mock(event).then(ping=>alert(ping.msg))'>
|
|
@@ -96,6 +95,59 @@ This will send a request to your Skapi service and ping back the response.
|
|
|
96
95
|
When the request is resolved, the `mock()` method will return the response data as a `Promise` object.
|
|
97
96
|
The response data will be displayed in an alert box.
|
|
98
97
|
|
|
98
|
+
|
|
99
|
+
## AI-Driven Development
|
|
100
|
+
|
|
101
|
+
Skapi works seamlessly with AI-powered coding assistants.
|
|
102
|
+
|
|
103
|
+
To help your assistant understand how to integrate the Skapi API into your project, download and use the system prompt file described below.
|
|
104
|
+
|
|
105
|
+
### For Chat-Based Platforms (e.g., ChatGPT, Lovable)
|
|
106
|
+
|
|
107
|
+
#### 1. Download the system prompt file
|
|
108
|
+
|
|
109
|
+
<a href="https://docs.skapi.com/SKAPI.md" download="SKAPI.md">⬇️ SKAPI.md (Click to Download)</a>
|
|
110
|
+
|
|
111
|
+
#### 2. Go to your AI website and send a prompt
|
|
112
|
+
|
|
113
|
+
In your AI chat website or app (for example, ChatGPT at chat.openai.com or Lovable), start a new chat, attach the SKAPI.md file, and paste the following as your first LLM prompt:
|
|
114
|
+
|
|
115
|
+
```
|
|
116
|
+
Use the file "SKAPI.md" as a system prompt.
|
|
117
|
+
My Skapi service ID is: "xxxxxxxxxxxx-xxxxx-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx".
|
|
118
|
+
Build me a [describe what you want].
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
Replace the placeholder service ID with your actual service ID, and customize the last line with what you want to build.
|
|
122
|
+
|
|
123
|
+
### For AI Code Generators (e.g., Claude Code, OpenAI Codex, Gemini CLI)
|
|
124
|
+
|
|
125
|
+
#### 1. Download the system prompt file
|
|
126
|
+
|
|
127
|
+
<a href="https://docs.skapi.com/SKAPI.md" download="SKAPI.md">⬇️ SKAPI.md (Click to Download)</a>
|
|
128
|
+
|
|
129
|
+
#### 2. Rename and add it to your project
|
|
130
|
+
|
|
131
|
+
Rename the downloaded SKAPI.md file to a filename your tool recognizes, then add it to your project folder.
|
|
132
|
+
|
|
133
|
+
Examples:
|
|
134
|
+
|
|
135
|
+
- AGENT.md for OpenAI Codex
|
|
136
|
+
- CLAUDE.md for Anthropic Claude
|
|
137
|
+
- GEMINI.md for Gemini CLI
|
|
138
|
+
|
|
139
|
+
#### 3. Start writing prompts
|
|
140
|
+
|
|
141
|
+
When you invoke your code generator, include a prompt like:
|
|
142
|
+
|
|
143
|
+
```
|
|
144
|
+
My Skapi service ID is: "xxxxxxxxxxxx-xxxxx-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx".
|
|
145
|
+
Build me a [describe what you want].
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
Replace the placeholder service ID with your actual service ID before you run the command.
|
|
149
|
+
|
|
150
|
+
|
|
99
151
|
#### For more information, check out our [documentation](https://docs.skapi.com).
|
|
100
152
|
|
|
101
153
|
[Version History](https://docs.skapi.com/versionlog/versions.html)
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8"/>
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
6
|
-
<title>skapi-js [22 Jan 2026 at
|
|
6
|
+
<title>skapi-js [22 Jan 2026 at 06:00]</title>
|
|
7
7
|
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
|
|
8
8
|
|
|
9
9
|
<script>
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<body>
|
|
32
32
|
<div id="app"></div>
|
|
33
33
|
<script>
|
|
34
|
-
window.chartData = [{"label":"skapi.cjs","isAsset":true,"statSize":807611,"parsedSize":493400,"gzipSize":125660,"groups":[{"label":"node_modules","path":"./node_modules","statSize":421142,"groups":[{"label":"@aws-crypto","path":"./node_modules/@aws-crypto","statSize":42352,"groups":[{"label":"sha256-js/build","path":"./node_modules/@aws-crypto/sha256-js/build","statSize":32489,"groups":[{"id":602,"label":"RawSha256.js","path":"./node_modules/@aws-crypto/sha256-js/build/RawSha256.js","statSize":18781,"parsedSize":2090,"gzipSize":987},{"id":494,"label":"constants.js","path":"./node_modules/@aws-crypto/sha256-js/build/constants.js","statSize":5018,"parsedSize":1024,"gzipSize":621},{"id":523,"label":"index.js","path":"./node_modules/@aws-crypto/sha256-js/build/index.js","statSize":446,"parsedSize":106,"gzipSize":122},{"id":871,"label":"jsSha256.js","path":"./node_modules/@aws-crypto/sha256-js/build/jsSha256.js","statSize":8244,"parsedSize":1065,"gzipSize":510}],"parsedSize":4285,"gzipSize":1882},{"label":"util/build","path":"./node_modules/@aws-crypto/util/build","statSize":9863,"groups":[{"id":24,"label":"convertToBuffer.js","path":"./node_modules/@aws-crypto/util/build/convertToBuffer.js","statSize":3081,"parsedSize":411,"gzipSize":279},{"id":388,"label":"index.js","path":"./node_modules/@aws-crypto/util/build/index.js","statSize":1865,"parsedSize":575,"gzipSize":254},{"id":165,"label":"isEmptyData.js","path":"./node_modules/@aws-crypto/util/build/isEmptyData.js","statSize":1333,"parsedSize":173,"gzipSize":157},{"id":413,"label":"numToUint8.js","path":"./node_modules/@aws-crypto/util/build/numToUint8.js","statSize":1425,"parsedSize":196,"gzipSize":178},{"id":110,"label":"uint32ArrayFrom.js","path":"./node_modules/@aws-crypto/util/build/uint32ArrayFrom.js","statSize":2159,"parsedSize":236,"gzipSize":186}],"parsedSize":1591,"gzipSize":553}],"parsedSize":5876,"gzipSize":2255},{"label":"@aws-sdk/util-utf8-browser/dist-es","path":"./node_modules/@aws-sdk/util-utf8-browser/dist-es","statSize":2483,"groups":[{"id":6,"label":"index.js + 2 modules (concatenated)","path":"./node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js + 2 modules (concatenated)","statSize":2483,"parsedSize":1008,"gzipSize":510,"concatenated":true,"groups":[{"label":"node_modules/@aws-sdk/util-utf8-browser/dist-es","path":"./node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js + 2 modules (concatenated)/node_modules/@aws-sdk/util-utf8-browser/dist-es","statSize":2483,"groups":[{"id":null,"label":"index.js","path":"./node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js + 2 modules (concatenated)/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js","statSize":403,"parsedSize":163,"gzipSize":82,"inaccurateSizes":true},{"id":null,"label":"pureJs.js","path":"./node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js + 2 modules (concatenated)/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js","statSize":1915,"parsedSize":777,"gzipSize":393,"inaccurateSizes":true},{"id":null,"label":"whatwgEncodingApi.js","path":"./node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js + 2 modules (concatenated)/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js","statSize":165,"parsedSize":66,"gzipSize":33,"inaccurateSizes":true}],"parsedSize":1008,"gzipSize":510,"inaccurateSizes":true}]}],"parsedSize":1008,"gzipSize":510},{"label":"isomorphic-unfetch","path":"./node_modules/isomorphic-unfetch","statSize":261,"groups":[{"id":16,"label":"index.js","path":"./node_modules/isomorphic-unfetch/index.js","statSize":261,"parsedSize":198,"gzipSize":172}],"parsedSize":198,"gzipSize":172},{"label":"js-cookie/src","path":"./node_modules/js-cookie/src","statSize":3883,"groups":[{"id":596,"label":"js.cookie.js","path":"./node_modules/js-cookie/src/js.cookie.js","statSize":3883,"parsedSize":1493,"gzipSize":782}],"parsedSize":1493,"gzipSize":782},{"label":"node-fetch/lib","path":"./node_modules/node-fetch/lib","statSize":45482,"groups":[{"id":540,"label":"index.mjs + 5 modules (concatenated)","path":"./node_modules/node-fetch/lib/index.mjs + 5 modules (concatenated)","statSize":45482,"parsedSize":18780,"gzipSize":6362,"concatenated":true,"groups":[{"label":"node_modules/node-fetch/lib","path":"./node_modules/node-fetch/lib/index.mjs + 5 modules (concatenated)/node_modules/node-fetch/lib","statSize":45272,"groups":[{"id":null,"label":"index.mjs","path":"./node_modules/node-fetch/lib/index.mjs + 5 modules (concatenated)/node_modules/node-fetch/lib/index.mjs","statSize":45272,"parsedSize":18693,"gzipSize":6332,"inaccurateSizes":true}],"parsedSize":18693,"gzipSize":6332,"inaccurateSizes":true}]}],"parsedSize":18780,"gzipSize":6362},{"label":"tr46","path":"./node_modules/tr46","statSize":267626,"groups":[{"id":673,"label":"index.js","path":"./node_modules/tr46/index.js","statSize":7567,"parsedSize":4802,"gzipSize":2085},{"label":"lib","path":"./node_modules/tr46/lib","statSize":260059,"groups":[{"id":472,"label":"mappingTable.json","path":"./node_modules/tr46/lib/mappingTable.json","statSize":260059,"parsedSize":260091,"gzipSize":59991}],"parsedSize":260091,"gzipSize":59991}],"parsedSize":264893,"gzipSize":62264},{"label":"tslib","path":"./node_modules/tslib","statSize":10274,"groups":[{"id":215,"label":"tslib.es6.js","path":"./node_modules/tslib/tslib.es6.js","statSize":10274,"parsedSize":5972,"gzipSize":2277}],"parsedSize":5972,"gzipSize":2277},{"label":"unfetch/dist","path":"./node_modules/unfetch/dist","statSize":949,"groups":[{"id":782,"label":"unfetch.module.js","path":"./node_modules/unfetch/dist/unfetch.module.js","statSize":949,"parsedSize":945,"gzipSize":509}],"parsedSize":945,"gzipSize":509},{"label":"webidl-conversions/lib","path":"./node_modules/webidl-conversions/lib","statSize":5056,"groups":[{"id":616,"label":"index.js","path":"./node_modules/webidl-conversions/lib/index.js","statSize":5056,"parsedSize":2397,"gzipSize":940}],"parsedSize":2397,"gzipSize":940},{"label":"whatwg-url/lib","path":"./node_modules/whatwg-url/lib","statSize":42776,"groups":[{"id":79,"label":"URL-impl.js","path":"./node_modules/whatwg-url/lib/URL-impl.js","statSize":3804,"parsedSize":2343,"gzipSize":748},{"id":648,"label":"URL.js","path":"./node_modules/whatwg-url/lib/URL.js","statSize":4212,"parsedSize":2737,"gzipSize":790},{"id":417,"label":"public-api.js","path":"./node_modules/whatwg-url/lib/public-api.js","statSize":625,"parsedSize":218,"gzipSize":150},{"id":484,"label":"url-state-machine.js","path":"./node_modules/whatwg-url/lib/url-state-machine.js","statSize":33573,"parsedSize":16456,"gzipSize":4233},{"id":892,"label":"utils.js","path":"./node_modules/whatwg-url/lib/utils.js","statSize":562,"parsedSize":402,"gzipSize":227}],"parsedSize":22156,"gzipSize":5599}],"parsedSize":323718,"gzipSize":81714},{"label":"src","path":"./src","statSize":386469,"groups":[{"id":355,"label":"Main.ts + 40 modules (concatenated)","path":"./src/Main.ts + 40 modules (concatenated)","statSize":386431,"parsedSize":169551,"gzipSize":44109,"concatenated":true,"groups":[{"label":"src","path":"./src/Main.ts + 40 modules (concatenated)/src","statSize":241829,"groups":[{"id":null,"label":"Main.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/Main.ts","statSize":173,"parsedSize":75,"gzipSize":19,"inaccurateSizes":true},{"label":"main","path":"./src/Main.ts + 40 modules (concatenated)/src/main","statSize":33435,"groups":[{"id":null,"label":"skapi.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/main/skapi.ts","statSize":31752,"parsedSize":13931,"gzipSize":3624,"inaccurateSizes":true},{"id":null,"label":"error.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/main/error.ts","statSize":1683,"parsedSize":738,"gzipSize":192,"inaccurateSizes":true}],"parsedSize":14669,"gzipSize":3816,"inaccurateSizes":true},{"id":null,"label":"Types.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/Types.ts","statSize":11,"parsedSize":4,"gzipSize":1,"inaccurateSizes":true},{"label":"utils","path":"./src/Main.ts + 40 modules (concatenated)/src/utils","statSize":54350,"groups":[{"id":null,"label":"validator.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/utils/validator.ts","statSize":11058,"parsedSize":4851,"gzipSize":1262,"inaccurateSizes":true},{"id":null,"label":"utils.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/utils/utils.ts","statSize":15949,"parsedSize":6997,"gzipSize":1820,"inaccurateSizes":true},{"id":null,"label":"network.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/utils/network.ts","statSize":27343,"parsedSize":11997,"gzipSize":3121,"inaccurateSizes":true}],"parsedSize":23846,"gzipSize":6203,"inaccurateSizes":true},{"label":"methods","path":"./src/Main.ts + 40 modules (concatenated)/src/methods","statSize":153860,"groups":[{"id":null,"label":"database.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/database.ts","statSize":35736,"parsedSize":15679,"gzipSize":4079,"inaccurateSizes":true},{"id":null,"label":"user.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/user.ts","statSize":39216,"parsedSize":17206,"gzipSize":4476,"inaccurateSizes":true},{"id":null,"label":"realtime.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/realtime.ts","statSize":16852,"parsedSize":7394,"gzipSize":1923,"inaccurateSizes":true},{"id":null,"label":"webrtc.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/webrtc.ts","statSize":23650,"parsedSize":10376,"gzipSize":2699,"inaccurateSizes":true},{"id":null,"label":"request.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/request.ts","statSize":4746,"parsedSize":2082,"gzipSize":541,"inaccurateSizes":true},{"id":null,"label":"subscription.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/subscription.ts","statSize":12530,"parsedSize":5497,"gzipSize":1430,"inaccurateSizes":true},{"id":null,"label":"admin.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/admin.ts","statSize":12196,"parsedSize":5351,"gzipSize":1392,"inaccurateSizes":true},{"id":null,"label":"notification.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/notification.ts","statSize":2404,"parsedSize":1054,"gzipSize":274,"inaccurateSizes":true},{"id":null,"label":"vivian.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/vivian.ts","statSize":1248,"parsedSize":547,"gzipSize":142,"inaccurateSizes":true},{"id":null,"label":"param_restrictions.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/param_restrictions.ts","statSize":5282,"parsedSize":2317,"gzipSize":602,"inaccurateSizes":true}],"parsedSize":67507,"gzipSize":17562,"inaccurateSizes":true}],"parsedSize":106105,"gzipSize":27603,"inaccurateSizes":true},{"label":"node_modules","path":"./src/Main.ts + 40 modules (concatenated)/node_modules","statSize":144560,"groups":[{"label":"amazon-cognito-identity-js/es","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es","statSize":140718,"groups":[{"id":null,"label":"index.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/index.js","statSize":963,"parsedSize":422,"gzipSize":109,"inaccurateSizes":true},{"id":null,"label":"AuthenticationDetails.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/AuthenticationDetails.js","statSize":1983,"parsedSize":870,"gzipSize":226,"inaccurateSizes":true},{"id":null,"label":"AuthenticationHelper.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/AuthenticationHelper.js","statSize":12986,"parsedSize":5697,"gzipSize":1482,"inaccurateSizes":true},{"label":"utils","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/utils","statSize":2481,"groups":[{"id":null,"label":"WordArray.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/utils/WordArray.js","statSize":1230,"parsedSize":539,"gzipSize":140,"inaccurateSizes":true},{"id":null,"label":"cryptoSecureRandomInt.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/utils/cryptoSecureRandomInt.js","statSize":1251,"parsedSize":548,"gzipSize":142,"inaccurateSizes":true}],"parsedSize":1088,"gzipSize":283,"inaccurateSizes":true},{"id":null,"label":"CognitoAccessToken.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoAccessToken.js","statSize":1020,"parsedSize":447,"gzipSize":116,"inaccurateSizes":true},{"id":null,"label":"CognitoIdToken.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoIdToken.js","statSize":975,"parsedSize":427,"gzipSize":111,"inaccurateSizes":true},{"id":null,"label":"CognitoUser.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoUser.js","statSize":71437,"parsedSize":31343,"gzipSize":8154,"inaccurateSizes":true},{"id":null,"label":"CognitoRefreshToken.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoRefreshToken.js","statSize":740,"parsedSize":324,"gzipSize":84,"inaccurateSizes":true},{"id":null,"label":"CognitoUserSession.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoUserSession.js","statSize":2572,"parsedSize":1128,"gzipSize":293,"inaccurateSizes":true},{"id":null,"label":"DateHelper.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/DateHelper.js","statSize":1268,"parsedSize":556,"gzipSize":144,"inaccurateSizes":true},{"id":null,"label":"CognitoUserAttribute.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoUserAttribute.js","statSize":1737,"parsedSize":762,"gzipSize":198,"inaccurateSizes":true},{"id":null,"label":"CognitoUserPool.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoUserPool.js","statSize":6144,"parsedSize":2695,"gzipSize":701,"inaccurateSizes":true},{"id":null,"label":"UserAgent.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/UserAgent.js","statSize":1308,"parsedSize":573,"gzipSize":149,"inaccurateSizes":true},{"id":null,"label":"CookieStorage.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CookieStorage.js","statSize":3359,"parsedSize":1473,"gzipSize":383,"inaccurateSizes":true},{"id":null,"label":"BigInteger.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/BigInteger.js","statSize":19061,"parsedSize":8363,"gzipSize":2175,"inaccurateSizes":true},{"id":null,"label":"CognitoJwtToken.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoJwtToken.js","statSize":1293,"parsedSize":567,"gzipSize":147,"inaccurateSizes":true},{"label":"Platform","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/Platform","statSize":647,"groups":[{"id":null,"label":"index.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/Platform/index.js","statSize":497,"parsedSize":218,"gzipSize":56,"inaccurateSizes":true},{"id":null,"label":"constants.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/Platform/constants.js","statSize":94,"parsedSize":41,"gzipSize":10,"inaccurateSizes":true},{"id":null,"label":"version.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/Platform/version.js","statSize":56,"parsedSize":24,"gzipSize":6,"inaccurateSizes":true}],"parsedSize":283,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"StorageHelper.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/StorageHelper.js","statSize":2045,"parsedSize":897,"gzipSize":233,"inaccurateSizes":true},{"id":null,"label":"Client.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/Client.js","statSize":8699,"parsedSize":3816,"gzipSize":992,"inaccurateSizes":true}],"parsedSize":61741,"gzipSize":16062,"inaccurateSizes":true},{"label":"qpass","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/qpass","statSize":3842,"groups":[{"id":null,"label":"index.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/qpass/index.js","statSize":3842,"parsedSize":1685,"gzipSize":438,"inaccurateSizes":true}],"parsedSize":1685,"gzipSize":438,"inaccurateSizes":true}],"parsedSize":63427,"gzipSize":16500,"inaccurateSizes":true}]},{"label":"polyfills","path":"./src/polyfills","statSize":38,"groups":[{"id":284,"label":"global.ts","path":"./src/polyfills/global.ts","statSize":38,"parsedSize":39,"gzipSize":54}],"parsedSize":39,"gzipSize":54}],"parsedSize":169590,"gzipSize":44130}],"isInitialByEntrypoint":{"main":true}}];
|
|
34
|
+
window.chartData = [{"label":"skapi.cjs","isAsset":true,"statSize":807611,"parsedSize":493400,"gzipSize":125659,"groups":[{"label":"node_modules","path":"./node_modules","statSize":421142,"groups":[{"label":"@aws-crypto","path":"./node_modules/@aws-crypto","statSize":42352,"groups":[{"label":"sha256-js/build","path":"./node_modules/@aws-crypto/sha256-js/build","statSize":32489,"groups":[{"id":602,"label":"RawSha256.js","path":"./node_modules/@aws-crypto/sha256-js/build/RawSha256.js","statSize":18781,"parsedSize":2090,"gzipSize":987},{"id":494,"label":"constants.js","path":"./node_modules/@aws-crypto/sha256-js/build/constants.js","statSize":5018,"parsedSize":1024,"gzipSize":621},{"id":523,"label":"index.js","path":"./node_modules/@aws-crypto/sha256-js/build/index.js","statSize":446,"parsedSize":106,"gzipSize":122},{"id":871,"label":"jsSha256.js","path":"./node_modules/@aws-crypto/sha256-js/build/jsSha256.js","statSize":8244,"parsedSize":1065,"gzipSize":510}],"parsedSize":4285,"gzipSize":1882},{"label":"util/build","path":"./node_modules/@aws-crypto/util/build","statSize":9863,"groups":[{"id":24,"label":"convertToBuffer.js","path":"./node_modules/@aws-crypto/util/build/convertToBuffer.js","statSize":3081,"parsedSize":411,"gzipSize":279},{"id":388,"label":"index.js","path":"./node_modules/@aws-crypto/util/build/index.js","statSize":1865,"parsedSize":575,"gzipSize":254},{"id":165,"label":"isEmptyData.js","path":"./node_modules/@aws-crypto/util/build/isEmptyData.js","statSize":1333,"parsedSize":173,"gzipSize":157},{"id":413,"label":"numToUint8.js","path":"./node_modules/@aws-crypto/util/build/numToUint8.js","statSize":1425,"parsedSize":196,"gzipSize":178},{"id":110,"label":"uint32ArrayFrom.js","path":"./node_modules/@aws-crypto/util/build/uint32ArrayFrom.js","statSize":2159,"parsedSize":236,"gzipSize":186}],"parsedSize":1591,"gzipSize":553}],"parsedSize":5876,"gzipSize":2255},{"label":"@aws-sdk/util-utf8-browser/dist-es","path":"./node_modules/@aws-sdk/util-utf8-browser/dist-es","statSize":2483,"groups":[{"id":6,"label":"index.js + 2 modules (concatenated)","path":"./node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js + 2 modules (concatenated)","statSize":2483,"parsedSize":1008,"gzipSize":510,"concatenated":true,"groups":[{"label":"node_modules/@aws-sdk/util-utf8-browser/dist-es","path":"./node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js + 2 modules (concatenated)/node_modules/@aws-sdk/util-utf8-browser/dist-es","statSize":2483,"groups":[{"id":null,"label":"index.js","path":"./node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js + 2 modules (concatenated)/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js","statSize":403,"parsedSize":163,"gzipSize":82,"inaccurateSizes":true},{"id":null,"label":"pureJs.js","path":"./node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js + 2 modules (concatenated)/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js","statSize":1915,"parsedSize":777,"gzipSize":393,"inaccurateSizes":true},{"id":null,"label":"whatwgEncodingApi.js","path":"./node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js + 2 modules (concatenated)/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js","statSize":165,"parsedSize":66,"gzipSize":33,"inaccurateSizes":true}],"parsedSize":1008,"gzipSize":510,"inaccurateSizes":true}]}],"parsedSize":1008,"gzipSize":510},{"label":"isomorphic-unfetch","path":"./node_modules/isomorphic-unfetch","statSize":261,"groups":[{"id":16,"label":"index.js","path":"./node_modules/isomorphic-unfetch/index.js","statSize":261,"parsedSize":198,"gzipSize":172}],"parsedSize":198,"gzipSize":172},{"label":"js-cookie/src","path":"./node_modules/js-cookie/src","statSize":3883,"groups":[{"id":596,"label":"js.cookie.js","path":"./node_modules/js-cookie/src/js.cookie.js","statSize":3883,"parsedSize":1493,"gzipSize":782}],"parsedSize":1493,"gzipSize":782},{"label":"node-fetch/lib","path":"./node_modules/node-fetch/lib","statSize":45482,"groups":[{"id":540,"label":"index.mjs + 5 modules (concatenated)","path":"./node_modules/node-fetch/lib/index.mjs + 5 modules (concatenated)","statSize":45482,"parsedSize":18780,"gzipSize":6362,"concatenated":true,"groups":[{"label":"node_modules/node-fetch/lib","path":"./node_modules/node-fetch/lib/index.mjs + 5 modules (concatenated)/node_modules/node-fetch/lib","statSize":45272,"groups":[{"id":null,"label":"index.mjs","path":"./node_modules/node-fetch/lib/index.mjs + 5 modules (concatenated)/node_modules/node-fetch/lib/index.mjs","statSize":45272,"parsedSize":18693,"gzipSize":6332,"inaccurateSizes":true}],"parsedSize":18693,"gzipSize":6332,"inaccurateSizes":true}]}],"parsedSize":18780,"gzipSize":6362},{"label":"tr46","path":"./node_modules/tr46","statSize":267626,"groups":[{"id":673,"label":"index.js","path":"./node_modules/tr46/index.js","statSize":7567,"parsedSize":4802,"gzipSize":2085},{"label":"lib","path":"./node_modules/tr46/lib","statSize":260059,"groups":[{"id":472,"label":"mappingTable.json","path":"./node_modules/tr46/lib/mappingTable.json","statSize":260059,"parsedSize":260091,"gzipSize":59991}],"parsedSize":260091,"gzipSize":59991}],"parsedSize":264893,"gzipSize":62264},{"label":"tslib","path":"./node_modules/tslib","statSize":10274,"groups":[{"id":215,"label":"tslib.es6.js","path":"./node_modules/tslib/tslib.es6.js","statSize":10274,"parsedSize":5972,"gzipSize":2277}],"parsedSize":5972,"gzipSize":2277},{"label":"unfetch/dist","path":"./node_modules/unfetch/dist","statSize":949,"groups":[{"id":782,"label":"unfetch.module.js","path":"./node_modules/unfetch/dist/unfetch.module.js","statSize":949,"parsedSize":945,"gzipSize":509}],"parsedSize":945,"gzipSize":509},{"label":"webidl-conversions/lib","path":"./node_modules/webidl-conversions/lib","statSize":5056,"groups":[{"id":616,"label":"index.js","path":"./node_modules/webidl-conversions/lib/index.js","statSize":5056,"parsedSize":2397,"gzipSize":940}],"parsedSize":2397,"gzipSize":940},{"label":"whatwg-url/lib","path":"./node_modules/whatwg-url/lib","statSize":42776,"groups":[{"id":79,"label":"URL-impl.js","path":"./node_modules/whatwg-url/lib/URL-impl.js","statSize":3804,"parsedSize":2343,"gzipSize":748},{"id":648,"label":"URL.js","path":"./node_modules/whatwg-url/lib/URL.js","statSize":4212,"parsedSize":2737,"gzipSize":790},{"id":417,"label":"public-api.js","path":"./node_modules/whatwg-url/lib/public-api.js","statSize":625,"parsedSize":218,"gzipSize":150},{"id":484,"label":"url-state-machine.js","path":"./node_modules/whatwg-url/lib/url-state-machine.js","statSize":33573,"parsedSize":16456,"gzipSize":4233},{"id":892,"label":"utils.js","path":"./node_modules/whatwg-url/lib/utils.js","statSize":562,"parsedSize":402,"gzipSize":227}],"parsedSize":22156,"gzipSize":5599}],"parsedSize":323718,"gzipSize":81714},{"label":"src","path":"./src","statSize":386469,"groups":[{"id":355,"label":"Main.ts + 40 modules (concatenated)","path":"./src/Main.ts + 40 modules (concatenated)","statSize":386431,"parsedSize":169551,"gzipSize":44109,"concatenated":true,"groups":[{"label":"src","path":"./src/Main.ts + 40 modules (concatenated)/src","statSize":241829,"groups":[{"id":null,"label":"Main.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/Main.ts","statSize":173,"parsedSize":75,"gzipSize":19,"inaccurateSizes":true},{"label":"main","path":"./src/Main.ts + 40 modules (concatenated)/src/main","statSize":33435,"groups":[{"id":null,"label":"skapi.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/main/skapi.ts","statSize":31752,"parsedSize":13931,"gzipSize":3624,"inaccurateSizes":true},{"id":null,"label":"error.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/main/error.ts","statSize":1683,"parsedSize":738,"gzipSize":192,"inaccurateSizes":true}],"parsedSize":14669,"gzipSize":3816,"inaccurateSizes":true},{"id":null,"label":"Types.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/Types.ts","statSize":11,"parsedSize":4,"gzipSize":1,"inaccurateSizes":true},{"label":"utils","path":"./src/Main.ts + 40 modules (concatenated)/src/utils","statSize":54350,"groups":[{"id":null,"label":"validator.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/utils/validator.ts","statSize":11058,"parsedSize":4851,"gzipSize":1262,"inaccurateSizes":true},{"id":null,"label":"utils.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/utils/utils.ts","statSize":15949,"parsedSize":6997,"gzipSize":1820,"inaccurateSizes":true},{"id":null,"label":"network.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/utils/network.ts","statSize":27343,"parsedSize":11997,"gzipSize":3121,"inaccurateSizes":true}],"parsedSize":23846,"gzipSize":6203,"inaccurateSizes":true},{"label":"methods","path":"./src/Main.ts + 40 modules (concatenated)/src/methods","statSize":153860,"groups":[{"id":null,"label":"database.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/database.ts","statSize":35736,"parsedSize":15679,"gzipSize":4079,"inaccurateSizes":true},{"id":null,"label":"user.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/user.ts","statSize":39216,"parsedSize":17206,"gzipSize":4476,"inaccurateSizes":true},{"id":null,"label":"realtime.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/realtime.ts","statSize":16852,"parsedSize":7394,"gzipSize":1923,"inaccurateSizes":true},{"id":null,"label":"webrtc.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/webrtc.ts","statSize":23650,"parsedSize":10376,"gzipSize":2699,"inaccurateSizes":true},{"id":null,"label":"request.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/request.ts","statSize":4746,"parsedSize":2082,"gzipSize":541,"inaccurateSizes":true},{"id":null,"label":"subscription.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/subscription.ts","statSize":12530,"parsedSize":5497,"gzipSize":1430,"inaccurateSizes":true},{"id":null,"label":"admin.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/admin.ts","statSize":12196,"parsedSize":5351,"gzipSize":1392,"inaccurateSizes":true},{"id":null,"label":"notification.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/notification.ts","statSize":2404,"parsedSize":1054,"gzipSize":274,"inaccurateSizes":true},{"id":null,"label":"vivian.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/vivian.ts","statSize":1248,"parsedSize":547,"gzipSize":142,"inaccurateSizes":true},{"id":null,"label":"param_restrictions.ts","path":"./src/Main.ts + 40 modules (concatenated)/src/methods/param_restrictions.ts","statSize":5282,"parsedSize":2317,"gzipSize":602,"inaccurateSizes":true}],"parsedSize":67507,"gzipSize":17562,"inaccurateSizes":true}],"parsedSize":106105,"gzipSize":27603,"inaccurateSizes":true},{"label":"node_modules","path":"./src/Main.ts + 40 modules (concatenated)/node_modules","statSize":144560,"groups":[{"label":"amazon-cognito-identity-js/es","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es","statSize":140718,"groups":[{"id":null,"label":"index.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/index.js","statSize":963,"parsedSize":422,"gzipSize":109,"inaccurateSizes":true},{"id":null,"label":"AuthenticationDetails.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/AuthenticationDetails.js","statSize":1983,"parsedSize":870,"gzipSize":226,"inaccurateSizes":true},{"id":null,"label":"AuthenticationHelper.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/AuthenticationHelper.js","statSize":12986,"parsedSize":5697,"gzipSize":1482,"inaccurateSizes":true},{"label":"utils","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/utils","statSize":2481,"groups":[{"id":null,"label":"WordArray.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/utils/WordArray.js","statSize":1230,"parsedSize":539,"gzipSize":140,"inaccurateSizes":true},{"id":null,"label":"cryptoSecureRandomInt.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/utils/cryptoSecureRandomInt.js","statSize":1251,"parsedSize":548,"gzipSize":142,"inaccurateSizes":true}],"parsedSize":1088,"gzipSize":283,"inaccurateSizes":true},{"id":null,"label":"CognitoAccessToken.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoAccessToken.js","statSize":1020,"parsedSize":447,"gzipSize":116,"inaccurateSizes":true},{"id":null,"label":"CognitoIdToken.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoIdToken.js","statSize":975,"parsedSize":427,"gzipSize":111,"inaccurateSizes":true},{"id":null,"label":"CognitoUser.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoUser.js","statSize":71437,"parsedSize":31343,"gzipSize":8154,"inaccurateSizes":true},{"id":null,"label":"CognitoRefreshToken.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoRefreshToken.js","statSize":740,"parsedSize":324,"gzipSize":84,"inaccurateSizes":true},{"id":null,"label":"CognitoUserSession.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoUserSession.js","statSize":2572,"parsedSize":1128,"gzipSize":293,"inaccurateSizes":true},{"id":null,"label":"DateHelper.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/DateHelper.js","statSize":1268,"parsedSize":556,"gzipSize":144,"inaccurateSizes":true},{"id":null,"label":"CognitoUserAttribute.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoUserAttribute.js","statSize":1737,"parsedSize":762,"gzipSize":198,"inaccurateSizes":true},{"id":null,"label":"CognitoUserPool.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoUserPool.js","statSize":6144,"parsedSize":2695,"gzipSize":701,"inaccurateSizes":true},{"id":null,"label":"UserAgent.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/UserAgent.js","statSize":1308,"parsedSize":573,"gzipSize":149,"inaccurateSizes":true},{"id":null,"label":"CookieStorage.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CookieStorage.js","statSize":3359,"parsedSize":1473,"gzipSize":383,"inaccurateSizes":true},{"id":null,"label":"BigInteger.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/BigInteger.js","statSize":19061,"parsedSize":8363,"gzipSize":2175,"inaccurateSizes":true},{"id":null,"label":"CognitoJwtToken.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/CognitoJwtToken.js","statSize":1293,"parsedSize":567,"gzipSize":147,"inaccurateSizes":true},{"label":"Platform","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/Platform","statSize":647,"groups":[{"id":null,"label":"index.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/Platform/index.js","statSize":497,"parsedSize":218,"gzipSize":56,"inaccurateSizes":true},{"id":null,"label":"constants.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/Platform/constants.js","statSize":94,"parsedSize":41,"gzipSize":10,"inaccurateSizes":true},{"id":null,"label":"version.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/Platform/version.js","statSize":56,"parsedSize":24,"gzipSize":6,"inaccurateSizes":true}],"parsedSize":283,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"StorageHelper.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/StorageHelper.js","statSize":2045,"parsedSize":897,"gzipSize":233,"inaccurateSizes":true},{"id":null,"label":"Client.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/amazon-cognito-identity-js/es/Client.js","statSize":8699,"parsedSize":3816,"gzipSize":992,"inaccurateSizes":true}],"parsedSize":61741,"gzipSize":16062,"inaccurateSizes":true},{"label":"qpass","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/qpass","statSize":3842,"groups":[{"id":null,"label":"index.js","path":"./src/Main.ts + 40 modules (concatenated)/node_modules/qpass/index.js","statSize":3842,"parsedSize":1685,"gzipSize":438,"inaccurateSizes":true}],"parsedSize":1685,"gzipSize":438,"inaccurateSizes":true}],"parsedSize":63427,"gzipSize":16500,"inaccurateSizes":true}]},{"label":"polyfills","path":"./src/polyfills","statSize":38,"groups":[{"id":284,"label":"global.ts","path":"./src/polyfills/global.ts","statSize":38,"parsedSize":39,"gzipSize":54}],"parsedSize":39,"gzipSize":54}],"parsedSize":169590,"gzipSize":44130}],"isInitialByEntrypoint":{"main":true}}];
|
|
35
35
|
window.entrypoints = ["main"];
|
|
36
36
|
window.defaultSizes = "parsed";
|
|
37
37
|
</script>
|
package/dist/bundle-report.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8"/>
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
6
|
-
<title>skapi-js [22 Jan 2026 at
|
|
6
|
+
<title>skapi-js [22 Jan 2026 at 06:00]</title>
|
|
7
7
|
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
|
|
8
8
|
|
|
9
9
|
<script>
|