@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.
@@ -1,6 +1,5 @@
1
1
  type InputType = {
2
2
  title?: string;
3
- showSiteName?: boolean;
4
3
  onHomeClick?: () => void;
5
4
  };
6
5
  export declare const ImageAnalysisHeader: (props: InputType) => import("react/jsx-runtime").JSX.Element;
@@ -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>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conboai/app.db.query",
3
- "version": "0.8.3",
3
+ "version": "0.8.4",
4
4
  "type": "module",
5
5
  "main": "dist/app.db.query.js",
6
6
  "types": "dist/build/index.d.ts",