dataset-types 3.0.13 → 3.0.15
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/index.d.ts +21 -0
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -95,6 +95,7 @@ export interface IProcessingConfig {
|
|
|
95
95
|
remove?: boolean;
|
|
96
96
|
record?: boolean;
|
|
97
97
|
modes?: IChannel[];
|
|
98
|
+
notificationenabled?: boolean;
|
|
98
99
|
}
|
|
99
100
|
export interface IPersistResult {
|
|
100
101
|
data: any[] | any;
|
|
@@ -229,6 +230,26 @@ export interface IDataTypeMeta {
|
|
|
229
230
|
tooltip: string;
|
|
230
231
|
value: (ci: IConfigurationItem) => string;
|
|
231
232
|
}
|
|
233
|
+
export type HOOK_USE_FILES = (context: string, projectcontext: string, term: string, recordtype: string, onlyenabled: boolean, hash: number, page: number, pageSize: number) => IResults<any>;
|
|
234
|
+
export interface IManageDatasetReplayConfiguration {
|
|
235
|
+
context: string;
|
|
236
|
+
projectcontext: string;
|
|
237
|
+
name: string;
|
|
238
|
+
columns: {
|
|
239
|
+
[datatype: string]: any[];
|
|
240
|
+
};
|
|
241
|
+
required_permission: string;
|
|
242
|
+
permissions: IPermission[];
|
|
243
|
+
role: string;
|
|
244
|
+
actions?: IDataGridAction<IDocument>[];
|
|
245
|
+
dataactions?: {
|
|
246
|
+
[datatype: string]: IDataGridAction<any>[];
|
|
247
|
+
};
|
|
248
|
+
postReplay: {
|
|
249
|
+
[datatype: string]: API_POST_REPLAY;
|
|
250
|
+
};
|
|
251
|
+
useFiles: HOOK_USE_FILES;
|
|
252
|
+
}
|
|
232
253
|
export interface IMenuLink {
|
|
233
254
|
path: string;
|
|
234
255
|
label: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dataset-types",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.15",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "npm run build && npm run package",
|
|
6
6
|
"build": "tsc --rootDir 'src/types' --outDir './dist'",
|
|
@@ -30,4 +30,4 @@
|
|
|
30
30
|
"prettier": "^3.4.2",
|
|
31
31
|
"typescript": "^5.7.2"
|
|
32
32
|
}
|
|
33
|
-
}
|
|
33
|
+
}
|