@conboai/app.db.query 0.8.3 → 0.8.4
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.
|
@@ -92,6 +92,9 @@ export type MatchTabItem = {
|
|
|
92
92
|
} | null;
|
|
93
93
|
properties: Record<string, any>;
|
|
94
94
|
} | null;
|
|
95
|
+
configuration: {
|
|
96
|
+
name: string;
|
|
97
|
+
} | null;
|
|
95
98
|
};
|
|
96
99
|
export type ConboMatchStore = {
|
|
97
100
|
tabs: MatchTabItem[];
|
|
@@ -115,5 +118,8 @@ export type ConboMatchStore = {
|
|
|
115
118
|
endTime?: string;
|
|
116
119
|
assignedFeedId?: number;
|
|
117
120
|
}) => Promise<void>;
|
|
121
|
+
onFetchConfiguration: ({ deploymentId }: {
|
|
122
|
+
deploymentId: string;
|
|
123
|
+
}) => Promise<void>;
|
|
118
124
|
};
|
|
119
125
|
export declare const useConboMatchStore: import('zustand').UseBoundStore<import('zustand').StoreApi<ConboMatchStore>>;
|