chelys 2.8.1 → 2.9.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/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # Chelys
2
- Common code between [Yatga](https://github.com/TableauBits/Yatga) and [Kalimba](https://github.com/TableauBits/Kalimba)
2
+ Common code between Matbay Projects.
3
3
 
4
4
  Data struct for :
5
5
  * Constitutions
package/dist/song.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export declare enum SongPlatform {
2
- YOUTUBE = 0
2
+ SOUNDCLOUD = 0,
3
+ YOUTUBE = 1
3
4
  }
4
5
  export interface Title {
5
6
  original: string;
package/dist/song.js CHANGED
@@ -4,7 +4,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.EMPTY_SONG = exports.SongPlatform = void 0;
5
5
  var SongPlatform;
6
6
  (function (SongPlatform) {
7
- SongPlatform[SongPlatform["YOUTUBE"] = 0] = "YOUTUBE";
7
+ SongPlatform[SongPlatform["SOUNDCLOUD"] = 0] = "SOUNDCLOUD";
8
+ SongPlatform[SongPlatform["YOUTUBE"] = 1] = "YOUTUBE";
8
9
  })(SongPlatform = exports.SongPlatform || (exports.SongPlatform = {}));
9
10
  exports.EMPTY_SONG = {
10
11
  id: -1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chelys",
3
- "version": "2.8.1",
3
+ "version": "2.9.0",
4
4
  "description": "Common code between Yatga and Kalimba",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {