@dovetail-v2/refine 0.1.18-alpha.2 → 0.1.18-alpha.3

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/lib/i18n.d.ts CHANGED
@@ -174,6 +174,7 @@ export declare const resources: {
174
174
  search: string;
175
175
  edit_label: string;
176
176
  csi: string;
177
+ confirm: string;
177
178
  };
178
179
  };
179
180
  'zh-CN': {
@@ -412,6 +413,7 @@ export declare const resources: {
412
413
  taint_effect_PreferNoSchedule_tooltip_2: string;
413
414
  taint_effect_PreferNoSchedule_tooltip_3: string;
414
415
  taint_effect_NoExecute_tooltip_3: string;
416
+ confirm: string;
415
417
  };
416
418
  };
417
419
  };
@@ -171,6 +171,7 @@ declare const _default: {
171
171
  search: string;
172
172
  edit_label: string;
173
173
  csi: string;
174
+ confirm: string;
174
175
  };
175
176
  };
176
177
  export default _default;
@@ -234,6 +234,7 @@ declare const _default: {
234
234
  taint_effect_PreferNoSchedule_tooltip_2: string;
235
235
  taint_effect_PreferNoSchedule_tooltip_3: string;
236
236
  taint_effect_NoExecute_tooltip_3: string;
237
+ confirm: string;
237
238
  };
238
239
  };
239
240
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dovetail-v2/refine",
3
- "version": "0.1.18-alpha.2",
3
+ "version": "0.1.18-alpha.3",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -1,18 +0,0 @@
1
- import { MetaQuery } from '@refinedev/core';
2
- import { IProviderPlugin, WatchEvent, GlobalStoreInitParams, Unstructured, UnstructuredList, CancelQueriesParams } from 'k8s-api-provider';
3
- export interface IGlobalStore {
4
- plugins: IProviderPlugin[];
5
- prefix?: string;
6
- fieldManager?: string;
7
- apiUrl: string;
8
- kubeApiTimeout: number | false | undefined;
9
- get<T = UnstructuredList>(resource: string, meta?: MetaQuery): Promise<T>;
10
- subscribe(resource: string, onEvent: (data: WatchEvent) => void): () => void;
11
- publish(resource: string, data: WatchEvent): void;
12
- init(params: GlobalStoreInitParams): void;
13
- loadPlugins(plugins?: IProviderPlugin[]): void;
14
- restoreItem(item: Unstructured): Unstructured;
15
- restoreData(list: UnstructuredList): UnstructuredList;
16
- destroy(): void;
17
- cancelQueries(params?: CancelQueriesParams): void;
18
- }