@smartico/public-api 0.0.85 → 0.0.86

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
@@ -17,7 +17,7 @@ As soon as the _smartico object is available in the global context and the user
17
17
 
18
18
  ```javascript
19
19
 
20
- _smartico.api.levelsGet().then( levels => {
20
+ _smartico.api.getLevels().then( levels => {
21
21
  console.log('There are ' + levels.length + ' levels available');
22
22
  });
23
23
 
@@ -31,4 +31,5 @@ export interface SAWTemplateUI {
31
31
  max_spins_period_ms?: number;
32
32
  show_countdown_for_next_availability?: boolean;
33
33
  disable_background_music?: boolean;
34
+ custom_section_id?: number;
34
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartico/public-api",
3
- "version": "0.0.85",
3
+ "version": "0.0.86",
4
4
  "description": "Smartico public API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -34,5 +34,5 @@ export interface SAWTemplateUI {
34
34
  max_spins_period_ms?: number;
35
35
  show_countdown_for_next_availability?: boolean;
36
36
  disable_background_music?: boolean;
37
-
37
+ custom_section_id?: number;
38
38
  }