@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.
- package/dist/types/index.d.ts +10 -10
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -139,7 +139,7 @@ export interface IActionOutput {
|
|
|
139
139
|
description?: string;
|
|
140
140
|
required?: boolean;
|
|
141
141
|
}
|
|
142
|
-
export interface
|
|
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
|
|
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
|
-
|
|
163
|
-
|
|
164
|
-
onlyPartyMembers?: boolean;
|
|
160
|
+
usage: ActionInput[];
|
|
161
|
+
outputs: IActionOutput[];
|
|
165
162
|
};
|
|
166
163
|
}
|
|
167
|
-
export interface
|
|
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
|
-
|
|
171
|
+
isHidden?: boolean;
|
|
172
|
+
description: string;
|
|
173
|
+
onlyLeader?: boolean;
|
|
174
|
+
onlyPrivate?: boolean;
|
|
175
|
+
onlyPartyMembers?: boolean;
|
|
176
176
|
};
|
|
177
177
|
}
|
|
178
178
|
export interface IDBBot {
|