@laboratoria/sdk-js 5.3.0-beta.2 → 5.3.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.
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@laboratoria/sdk-js",
3
- "version": "5.3.0-beta.2",
3
+ "version": "5.3.0",
4
4
  "description": "Laboratoria JavaScript (browser) SDK",
5
5
  "license": "MIT",
6
6
  "scripts": {
7
7
  "test": "jest --verbose --coverage",
8
8
  "build": "rm -rf dist && webpack --mode production",
9
9
  "watch": "webpack --mode development --watch",
10
- "changelog": "git log $(git tag | grep -v -E \"alpha|beta|rc\" | sort | tail -1)..HEAD --oneline --format=\"* %h %s (%an)\""
10
+ "changelog": "git log $(git tag | grep -v -E \"alpha|beta|rc\" | sort | tail -1)..HEAD --oneline --format=\"* %h %s\" | grep -v 'chore(release): Bump'"
11
11
  },
12
12
  "dependencies": {
13
13
  "blueimp-md5": "^2.19.0",
14
- "firebase": "^10.0.0"
14
+ "firebase": "^10.1.0"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@babel/core": "^7.22.9",
package/schemas/core.json CHANGED
@@ -372,6 +372,18 @@
372
372
  "null"
373
373
  ]
374
374
  },
375
+ "langs": {
376
+ "type": "array",
377
+ "enum": [
378
+ "en",
379
+ "es",
380
+ "pt"
381
+ ]
382
+ },
383
+ "hidden": {
384
+ "type": "boolean",
385
+ "default": false
386
+ },
375
387
  "track": {
376
388
  "$ref": "#/definitions/Track"
377
389
  },