@adaas/a-concept 0.0.34 → 0.0.35

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.
@@ -40,7 +40,5 @@ export declare class A_Fragment {
40
40
  *
41
41
  * @returns
42
42
  */
43
- toJSON(): {
44
- name: string;
45
- };
43
+ toJSON(): Record<string, any>;
46
44
  }
@@ -7,12 +7,7 @@ import { CommandContainer } from "./Command.container";
7
7
  import { A_TYPES__A_ExecutableMethods } from "@adaas/a-concept/global/A-Channel/A-Channel.types";
8
8
 
9
9
 
10
- export class ScheduleContainer extends A_Container<[
11
- 'schedule',
12
- 'start',
13
- 'stop',
14
- 'pause',
15
- ]> {
10
+ export class ScheduleContainer extends A_Container{
16
11
 
17
12
  private tasks = [];
18
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaas/a-concept",
3
- "version": "0.0.34",
3
+ "version": "0.0.35",
4
4
  "description": "A-Concept is a framework to build new Applications within or outside the ADAAS ecosystem. This framework is designed to be modular structure regardless environment and program goal.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -124,7 +124,7 @@ export class A_Fragment {
124
124
  *
125
125
  * @returns
126
126
  */
127
- toJSON() {
127
+ toJSON(): Record<string, any> {
128
128
  return {
129
129
  name: this.name,
130
130
  };