@@ -1,4 +1,10 @@
-type Item = {
+type ConfigItem = {
id: string;
name: string;
+ type: string;
+ provider: string;
+ maxRetryTimes: number;
+ creatorId: string;
+ createTime: number;
+ configuration: Record<string, unknown>;
};
@@ -1,4 +1,9 @@
+type TemplateItem = {
+ template: string;