gleap 17.0.3 → 18.0.0

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.
Files changed (26) hide show
  1. package/.worktrees/JavaScript-SDK-147158-corp-headers/.assetsignore +30 -0
  2. package/.worktrees/JavaScript-SDK-147158-corp-headers/.claude/launch.json +11 -0
  3. package/.worktrees/JavaScript-SDK-147158-corp-headers/.prettierignore +12 -0
  4. package/.worktrees/JavaScript-SDK-147158-corp-headers/.prettierrc.json +8 -0
  5. package/.worktrees/JavaScript-SDK-147158-corp-headers/LICENSE +7 -0
  6. package/.worktrees/JavaScript-SDK-147158-corp-headers/build/browser/index.js +2 -0
  7. package/.worktrees/JavaScript-SDK-147158-corp-headers/build/browser/index.js.map +1 -0
  8. package/.worktrees/JavaScript-SDK-147158-corp-headers/build/cjs/index.js +2 -0
  9. package/.worktrees/JavaScript-SDK-147158-corp-headers/build/cjs/index.js.map +1 -0
  10. package/.worktrees/JavaScript-SDK-147158-corp-headers/build/esm/index.mjs +2 -0
  11. package/.worktrees/JavaScript-SDK-147158-corp-headers/build/esm/index.mjs.map +1 -0
  12. package/.worktrees/JavaScript-SDK-147158-corp-headers/index.d.ts +390 -0
  13. package/.worktrees/JavaScript-SDK-147158-corp-headers/package-lock.json +13926 -0
  14. package/.worktrees/JavaScript-SDK-147158-corp-headers/package.json +82 -0
  15. package/.worktrees/JavaScript-SDK-147158-corp-headers/resources/banner.png +0 -0
  16. package/.worktrees/JavaScript-SDK-147158-corp-headers/swa-cli.config.json +9 -0
  17. package/.worktrees/JavaScript-SDK-147158-corp-headers/wrangler.jsonc +16 -0
  18. package/README.md +9 -0
  19. package/build/browser/index.js +1 -1
  20. package/build/browser/index.js.map +1 -1
  21. package/build/cjs/index.js +1 -1
  22. package/build/cjs/index.js.map +1 -1
  23. package/build/esm/index.mjs +1 -1
  24. package/build/esm/index.mjs.map +1 -1
  25. package/index.d.ts +25 -0
  26. package/package.json +1 -1
@@ -0,0 +1,30 @@
1
+ # Node.js
2
+ **/node_modules
3
+ **/.npm
4
+ **/package-lock.json
5
+
6
+ # Build artifacts and source
7
+ src/
8
+ scripts/
9
+ webpack.config.js
10
+ babel.config.js
11
+
12
+ # Git and version control
13
+ **/.git
14
+ **/.gitignore
15
+
16
+ # OS files
17
+ **/.DS_Store
18
+ **/Thumbs.db
19
+
20
+ # Development and configuration files
21
+ **/.env*
22
+ **/wrangler.jsonc
23
+ **/.assetsignore
24
+
25
+ # Test files
26
+ **/*.test.js
27
+ **/*.spec.js
28
+
29
+ # Documentation (excluding demo files)
30
+ README.md
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": "0.0.1",
3
+ "configurations": [
4
+ {
5
+ "name": "sdk-demo",
6
+ "runtimeExecutable": "npm",
7
+ "runtimeArgs": ["run", "start", "--", "--no-open"],
8
+ "port": 4444
9
+ }
10
+ ]
11
+ }
@@ -0,0 +1,12 @@
1
+ published
2
+ build
3
+ node_modules
4
+ .git
5
+ .gitignore
6
+ .prettierignore
7
+ .prettierrc.json
8
+ .prettierrc.js
9
+ .prettierrc.yaml
10
+ .prettierrc.yml
11
+ .prettierrc.toml
12
+ .prettierrc.toml
@@ -0,0 +1,8 @@
1
+ {
2
+ "trailingComma": "es5",
3
+ "tabWidth": 2,
4
+ "semi": true,
5
+ "singleQuote": true,
6
+ "printWidth": 125,
7
+ "endOfLine": "lf"
8
+ }
@@ -0,0 +1,7 @@
1
+ Copyright 2024 Gleap GmbH
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.