@fnlb-project/shared 1.5.118 → 1.5.119

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.
@@ -139,7 +139,7 @@ export interface IActionOutput {
139
139
  description?: string;
140
140
  required?: boolean;
141
141
  }
142
- export interface ISerializedActionFunction {
142
+ export interface ISerializedActionControlFlow {
143
143
  id: string;
144
144
  config: {
145
145
  name: string;
@@ -150,29 +150,29 @@ export interface ISerializedActionFunction {
150
150
  outputs: IActionOutput[];
151
151
  };
152
152
  }
153
- export interface ISerializedCommand {
153
+ export interface ISerializedActionFunction {
154
154
  id: string;
155
155
  config: {
156
156
  name: string;
157
157
  parent: string;
158
158
  alias: string[];
159
- usage: ActionInput[];
160
- isHidden?: boolean;
161
159
  description: string;
162
- onlyLeader?: boolean;
163
- onlyPrivate?: boolean;
164
- onlyPartyMembers?: boolean;
160
+ usage: ActionInput[];
161
+ outputs: IActionOutput[];
165
162
  };
166
163
  }
167
- export interface ISerializedControlFlow {
164
+ export interface ISerializedCommand {
168
165
  id: string;
169
166
  config: {
170
167
  name: string;
171
168
  parent: string;
172
169
  alias: string[];
173
- description: string;
174
170
  usage: ActionInput[];
175
- outputs: IActionOutput[];
171
+ isHidden?: boolean;
172
+ description: string;
173
+ onlyLeader?: boolean;
174
+ onlyPrivate?: boolean;
175
+ onlyPartyMembers?: boolean;
176
176
  };
177
177
  }
178
178
  export interface IDBBot {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fnlb-project/shared",
3
- "version": "1.5.118",
3
+ "version": "1.5.119",
4
4
  "description": "FNLB Shared Library",
5
5
  "files": [
6
6
  "dist"