@ws-ui/store 0.2.0-beta.20240726.0 → 0.2.0-beta.20240726.1
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/dist/hooks/store.d.ts +2 -0
- package/dist/index.cjs.js +18 -18
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +608 -582
- package/dist/index.es.js.map +1 -1
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/roles/index.d.ts +1 -0
- package/dist/modules/roles/reducer.d.ts +10 -1
- package/dist/modules/roles/types.d.ts +2 -0
- package/dist/modules/tabs/selectors.d.ts +1 -0
- package/dist/modules/webforms/datasources.adapter.d.ts +1 -0
- package/dist/selectors/catalog.d.ts +8 -0
- package/dist/selectors/common.d.ts +4 -0
- package/dist/selectors/components.d.ts +1 -0
- package/dist/selectors/datasources.d.ts +6 -0
- package/dist/selectors/debugger.d.ts +22 -0
- package/dist/selectors/explorer.d.ts +26 -0
- package/dist/selectors/modals.d.ts +1 -0
- package/dist/selectors/roles.d.ts +74 -0
- package/dist/selectors/settings.d.ts +12 -0
- package/dist/selectors/states.d.ts +5 -0
- package/dist/selectors/styles.d.ts +5 -0
- package/dist/selectors/tabs.d.ts +3 -0
- package/dist/selectors/webforms.d.ts +12 -0
- package/package.json +2 -2
package/dist/modules/index.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export declare const stateReducer: import("redux").Reducer<import("redux").Combi
|
|
|
28
28
|
privileges: import("./roles").TById;
|
|
29
29
|
roles: import("./roles").TRolesDict;
|
|
30
30
|
forceLogin?: boolean | undefined;
|
|
31
|
+
allowedOnGet?: string[] | undefined;
|
|
31
32
|
selectedTab: "roles" | "privileges";
|
|
32
33
|
};
|
|
33
34
|
sharedDatasources: import("./shared-datasources").ISharedDatasourcesState;
|
|
@@ -12,6 +12,7 @@ declare const _default: import("redux").Reducer<{
|
|
|
12
12
|
privileges: import("./types").TById;
|
|
13
13
|
roles: import("./types").TRolesDict;
|
|
14
14
|
forceLogin?: boolean | undefined;
|
|
15
|
+
allowedOnGet?: string[] | undefined;
|
|
15
16
|
selectedTab: "roles" | "privileges";
|
|
16
17
|
}>;
|
|
17
18
|
export default _default;
|
|
@@ -14,6 +14,7 @@ declare const stateSlice: import("@reduxjs/toolkit").Slice<{
|
|
|
14
14
|
privileges: TById;
|
|
15
15
|
roles: TRolesDict;
|
|
16
16
|
forceLogin?: boolean | undefined;
|
|
17
|
+
allowedOnGet?: string[] | undefined;
|
|
17
18
|
selectedTab: "roles" | "privileges";
|
|
18
19
|
}, {
|
|
19
20
|
updatePrivileges: (state: import("immer/dist/internal.js").WritableDraft<IRolesState>, action: PayloadAction<TById>) => void;
|
|
@@ -24,6 +25,10 @@ declare const stateSlice: import("@reduxjs/toolkit").Slice<{
|
|
|
24
25
|
}>) => void;
|
|
25
26
|
toggleTab: (state: import("immer/dist/internal.js").WritableDraft<IRolesState>, action: PayloadAction<'privileges' | 'roles'>) => void;
|
|
26
27
|
toggleForceLogin: (state: import("immer/dist/internal.js").WritableDraft<IRolesState>, action: PayloadAction<boolean>) => void;
|
|
28
|
+
setAllowedOnHTTPGet: (state: import("immer/dist/internal.js").WritableDraft<IRolesState>, action: PayloadAction<{
|
|
29
|
+
allowed: boolean;
|
|
30
|
+
applyTo: string;
|
|
31
|
+
}>) => void;
|
|
27
32
|
setRolesContent(state: import("immer/dist/internal.js").WritableDraft<IRolesState>, action: PayloadAction<{
|
|
28
33
|
content: TRawData;
|
|
29
34
|
date?: string;
|
|
@@ -42,6 +47,7 @@ declare const stateSlice: import("@reduxjs/toolkit").Slice<{
|
|
|
42
47
|
privileges: TById;
|
|
43
48
|
roles: TRolesDict;
|
|
44
49
|
forceLogin?: boolean | undefined;
|
|
50
|
+
allowedOnGet?: string[] | undefined;
|
|
45
51
|
selectedTab: "roles" | "privileges";
|
|
46
52
|
};
|
|
47
53
|
}, "roles">;
|
|
@@ -57,7 +63,10 @@ export declare const updatePrivileges: import("@reduxjs/toolkit").ActionCreatorW
|
|
|
57
63
|
enabled: boolean;
|
|
58
64
|
confirmed: boolean;
|
|
59
65
|
}> | undefined;
|
|
60
|
-
}, string>, toggleTab: import("@reduxjs/toolkit").ActionCreatorWithPayload<"roles" | "privileges", string>, toggleForceLogin: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>,
|
|
66
|
+
}, string>, toggleTab: import("@reduxjs/toolkit").ActionCreatorWithPayload<"roles" | "privileges", string>, toggleForceLogin: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, setAllowedOnHTTPGet: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
67
|
+
allowed: boolean;
|
|
68
|
+
applyTo: string;
|
|
69
|
+
}, string>, updateRolesAndPrivileges: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
61
70
|
roles: TRolesDict;
|
|
62
71
|
privileges: TById;
|
|
63
72
|
}, string>;
|
|
@@ -46,6 +46,7 @@ export interface IPermission {
|
|
|
46
46
|
describe?: string | string[];
|
|
47
47
|
execute?: string | string[];
|
|
48
48
|
promote?: string | string[];
|
|
49
|
+
allowedOnHTTPGet?: boolean;
|
|
49
50
|
}
|
|
50
51
|
/**
|
|
51
52
|
* Sanitized data
|
|
@@ -54,6 +55,7 @@ export interface ISanitized {
|
|
|
54
55
|
privileges: TById;
|
|
55
56
|
roles: TRolesDict;
|
|
56
57
|
forceLogin?: boolean;
|
|
58
|
+
allowedOnGet?: string[];
|
|
57
59
|
}
|
|
58
60
|
export interface IResourcePermission {
|
|
59
61
|
name: TAction;
|
|
@@ -27,6 +27,7 @@ export declare const selectPanelByPath: (path: string) => ((state: import("redux
|
|
|
27
27
|
privileges: import("..").TById;
|
|
28
28
|
roles: import("..").TRolesDict;
|
|
29
29
|
forceLogin?: boolean | undefined;
|
|
30
|
+
allowedOnGet?: string[] | undefined;
|
|
30
31
|
selectedTab: "roles" | "privileges";
|
|
31
32
|
};
|
|
32
33
|
sharedDatasources: import("..").ISharedDatasourcesState;
|
|
@@ -28,6 +28,7 @@ export declare const listDsNamespaces: import("lodash").CurriedFunction3<string,
|
|
|
28
28
|
privileges: import("..").TById;
|
|
29
29
|
roles: import("..").TRolesDict;
|
|
30
30
|
forceLogin?: boolean | undefined;
|
|
31
|
+
allowedOnGet?: string[] | undefined;
|
|
31
32
|
selectedTab: "roles" | "privileges";
|
|
32
33
|
};
|
|
33
34
|
sharedDatasources: import("..").ISharedDatasourcesState;
|
|
@@ -28,6 +28,7 @@ export declare const selectCatalog: ((state: import("redux").EmptyObject & {
|
|
|
28
28
|
privileges: import('../modules').TById;
|
|
29
29
|
roles: import('../modules').TRolesDict;
|
|
30
30
|
forceLogin?: boolean | undefined;
|
|
31
|
+
allowedOnGet?: string[] | undefined;
|
|
31
32
|
selectedTab: "roles" | "privileges";
|
|
32
33
|
};
|
|
33
34
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -64,6 +65,7 @@ export declare const selectCatalog: ((state: import("redux").EmptyObject & {
|
|
|
64
65
|
privileges: import('../modules').TById;
|
|
65
66
|
roles: import('../modules').TRolesDict;
|
|
66
67
|
forceLogin?: boolean | undefined;
|
|
68
|
+
allowedOnGet?: string[] | undefined;
|
|
67
69
|
selectedTab: "roles" | "privileges";
|
|
68
70
|
};
|
|
69
71
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -105,6 +107,7 @@ export declare const selectCatalogState: ((state: import("redux").EmptyObject &
|
|
|
105
107
|
privileges: import('../modules').TById;
|
|
106
108
|
roles: import('../modules').TRolesDict;
|
|
107
109
|
forceLogin?: boolean | undefined;
|
|
110
|
+
allowedOnGet?: string[] | undefined;
|
|
108
111
|
selectedTab: "roles" | "privileges";
|
|
109
112
|
};
|
|
110
113
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -141,6 +144,7 @@ export declare const selectCatalogState: ((state: import("redux").EmptyObject &
|
|
|
141
144
|
privileges: import('../modules').TById;
|
|
142
145
|
roles: import('../modules').TRolesDict;
|
|
143
146
|
forceLogin?: boolean | undefined;
|
|
147
|
+
allowedOnGet?: string[] | undefined;
|
|
144
148
|
selectedTab: "roles" | "privileges";
|
|
145
149
|
};
|
|
146
150
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -182,6 +186,7 @@ export declare const selectDataclasses: ((state: import("redux").EmptyObject & {
|
|
|
182
186
|
privileges: import('../modules').TById;
|
|
183
187
|
roles: import('../modules').TRolesDict;
|
|
184
188
|
forceLogin?: boolean | undefined;
|
|
189
|
+
allowedOnGet?: string[] | undefined;
|
|
185
190
|
selectedTab: "roles" | "privileges";
|
|
186
191
|
};
|
|
187
192
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -223,6 +228,7 @@ export declare const selectSingletons: ((state: import("redux").EmptyObject & {
|
|
|
223
228
|
privileges: import('../modules').TById;
|
|
224
229
|
roles: import('../modules').TRolesDict;
|
|
225
230
|
forceLogin?: boolean | undefined;
|
|
231
|
+
allowedOnGet?: string[] | undefined;
|
|
226
232
|
selectedTab: "roles" | "privileges";
|
|
227
233
|
};
|
|
228
234
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -264,6 +270,7 @@ export declare const selectVirtualDataClasses: ((state: import("redux").EmptyObj
|
|
|
264
270
|
privileges: import('../modules').TById;
|
|
265
271
|
roles: import('../modules').TRolesDict;
|
|
266
272
|
forceLogin?: boolean | undefined;
|
|
273
|
+
allowedOnGet?: string[] | undefined;
|
|
267
274
|
selectedTab: "roles" | "privileges";
|
|
268
275
|
};
|
|
269
276
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -305,6 +312,7 @@ export declare const selectCatalogMethods: ((state: import("redux").EmptyObject
|
|
|
305
312
|
privileges: import('../modules').TById;
|
|
306
313
|
roles: import('../modules').TRolesDict;
|
|
307
314
|
forceLogin?: boolean | undefined;
|
|
315
|
+
allowedOnGet?: string[] | undefined;
|
|
308
316
|
selectedTab: "roles" | "privileges";
|
|
309
317
|
};
|
|
310
318
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -27,6 +27,7 @@ export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
|
27
27
|
privileges: import("../modules").TById;
|
|
28
28
|
roles: import("../modules").TRolesDict;
|
|
29
29
|
forceLogin?: boolean | undefined;
|
|
30
|
+
allowedOnGet?: string[] | undefined;
|
|
30
31
|
selectedTab: "roles" | "privileges";
|
|
31
32
|
};
|
|
32
33
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -63,6 +64,7 @@ export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
|
63
64
|
privileges: import("../modules").TById;
|
|
64
65
|
roles: import("../modules").TRolesDict;
|
|
65
66
|
forceLogin?: boolean | undefined;
|
|
67
|
+
allowedOnGet?: string[] | undefined;
|
|
66
68
|
selectedTab: "roles" | "privileges";
|
|
67
69
|
};
|
|
68
70
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -99,6 +101,7 @@ export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
|
99
101
|
privileges: import("../modules").TById;
|
|
100
102
|
roles: import("../modules").TRolesDict;
|
|
101
103
|
forceLogin?: boolean | undefined;
|
|
104
|
+
allowedOnGet?: string[] | undefined;
|
|
102
105
|
selectedTab: "roles" | "privileges";
|
|
103
106
|
};
|
|
104
107
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -135,6 +138,7 @@ export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
|
135
138
|
privileges: import("../modules").TById;
|
|
136
139
|
roles: import("../modules").TRolesDict;
|
|
137
140
|
forceLogin?: boolean | undefined;
|
|
141
|
+
allowedOnGet?: string[] | undefined;
|
|
138
142
|
selectedTab: "roles" | "privileges";
|
|
139
143
|
};
|
|
140
144
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -32,6 +32,7 @@ export declare const selectComponentsByPath: (tabPath: string) => ((state: impor
|
|
|
32
32
|
privileges: import("..").TById;
|
|
33
33
|
roles: import("..").TRolesDict;
|
|
34
34
|
forceLogin?: boolean | undefined;
|
|
35
|
+
allowedOnGet?: string[] | undefined;
|
|
35
36
|
selectedTab: "roles" | "privileges";
|
|
36
37
|
};
|
|
37
38
|
sharedDatasources: import("..").ISharedDatasourcesState;
|
|
@@ -32,6 +32,7 @@ export declare const selectDatasourcesByPath: (tabPath: string) => ((state: impo
|
|
|
32
32
|
privileges: import("../modules").TById;
|
|
33
33
|
roles: import("../modules").TRolesDict;
|
|
34
34
|
forceLogin?: boolean | undefined;
|
|
35
|
+
allowedOnGet?: string[] | undefined;
|
|
35
36
|
selectedTab: "roles" | "privileges";
|
|
36
37
|
};
|
|
37
38
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -80,6 +81,7 @@ export declare const selectDatasource: (id: string, namespace: string, tabPath:
|
|
|
80
81
|
privileges: import("../modules").TById;
|
|
81
82
|
roles: import("../modules").TRolesDict;
|
|
82
83
|
forceLogin?: boolean | undefined;
|
|
84
|
+
allowedOnGet?: string[] | undefined;
|
|
83
85
|
selectedTab: "roles" | "privileges";
|
|
84
86
|
};
|
|
85
87
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -116,6 +118,7 @@ export declare const selectDatasource: (id: string, namespace: string, tabPath:
|
|
|
116
118
|
privileges: import("../modules").TById;
|
|
117
119
|
roles: import("../modules").TRolesDict;
|
|
118
120
|
forceLogin?: boolean | undefined;
|
|
121
|
+
allowedOnGet?: string[] | undefined;
|
|
119
122
|
selectedTab: "roles" | "privileges";
|
|
120
123
|
};
|
|
121
124
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -160,6 +163,7 @@ export declare const selectSharedDatasources: ((state: import("redux").EmptyObje
|
|
|
160
163
|
privileges: import("../modules").TById;
|
|
161
164
|
roles: import("../modules").TRolesDict;
|
|
162
165
|
forceLogin?: boolean | undefined;
|
|
166
|
+
allowedOnGet?: string[] | undefined;
|
|
163
167
|
selectedTab: "roles" | "privileges";
|
|
164
168
|
};
|
|
165
169
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -203,6 +207,7 @@ export declare const selectSharedDatasources: ((state: import("redux").EmptyObje
|
|
|
203
207
|
privileges: import("../modules").TById;
|
|
204
208
|
roles: import("../modules").TRolesDict;
|
|
205
209
|
forceLogin?: boolean | undefined;
|
|
210
|
+
allowedOnGet?: string[] | undefined;
|
|
206
211
|
selectedTab: "roles" | "privileges";
|
|
207
212
|
};
|
|
208
213
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -261,6 +266,7 @@ export declare const selectAllDatasourcesByPath: (tabPath: string, type: 'webfor
|
|
|
261
266
|
privileges: import("../modules").TById;
|
|
262
267
|
roles: import("../modules").TRolesDict;
|
|
263
268
|
forceLogin?: boolean | undefined;
|
|
269
|
+
allowedOnGet?: string[] | undefined;
|
|
264
270
|
selectedTab: "roles" | "privileges";
|
|
265
271
|
};
|
|
266
272
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -29,6 +29,7 @@ export declare const selectDebuggerMeta: ((state: import("redux").EmptyObject &
|
|
|
29
29
|
privileges: import('../modules').TById;
|
|
30
30
|
roles: import('../modules').TRolesDict;
|
|
31
31
|
forceLogin?: boolean | undefined;
|
|
32
|
+
allowedOnGet?: string[] | undefined;
|
|
32
33
|
selectedTab: "roles" | "privileges";
|
|
33
34
|
};
|
|
34
35
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -70,6 +71,7 @@ export declare const selectDebuggerData: ((state: import("redux").EmptyObject &
|
|
|
70
71
|
privileges: import('../modules').TById;
|
|
71
72
|
roles: import('../modules').TRolesDict;
|
|
72
73
|
forceLogin?: boolean | undefined;
|
|
74
|
+
allowedOnGet?: string[] | undefined;
|
|
73
75
|
selectedTab: "roles" | "privileges";
|
|
74
76
|
};
|
|
75
77
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -111,6 +113,7 @@ export declare const selectDebuggerSessions: ((state: import("redux").EmptyObjec
|
|
|
111
113
|
privileges: import('../modules').TById;
|
|
112
114
|
roles: import('../modules').TRolesDict;
|
|
113
115
|
forceLogin?: boolean | undefined;
|
|
116
|
+
allowedOnGet?: string[] | undefined;
|
|
114
117
|
selectedTab: "roles" | "privileges";
|
|
115
118
|
};
|
|
116
119
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -152,6 +155,7 @@ export declare const selectDebuggerSessionsCount: ((state: import("redux").Empty
|
|
|
152
155
|
privileges: import('../modules').TById;
|
|
153
156
|
roles: import('../modules').TRolesDict;
|
|
154
157
|
forceLogin?: boolean | undefined;
|
|
158
|
+
allowedOnGet?: string[] | undefined;
|
|
155
159
|
selectedTab: "roles" | "privileges";
|
|
156
160
|
};
|
|
157
161
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -196,6 +200,7 @@ export declare const selectBreakpoints: (filePath: string, methodName: string) =
|
|
|
196
200
|
privileges: import('../modules').TById;
|
|
197
201
|
roles: import('../modules').TRolesDict;
|
|
198
202
|
forceLogin?: boolean | undefined;
|
|
203
|
+
allowedOnGet?: string[] | undefined;
|
|
199
204
|
selectedTab: "roles" | "privileges";
|
|
200
205
|
};
|
|
201
206
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -237,6 +242,7 @@ export declare const selectDraftBreakpoints: (filePath: string, methodName: stri
|
|
|
237
242
|
privileges: import('../modules').TById;
|
|
238
243
|
roles: import('../modules').TRolesDict;
|
|
239
244
|
forceLogin?: boolean | undefined;
|
|
245
|
+
allowedOnGet?: string[] | undefined;
|
|
240
246
|
selectedTab: "roles" | "privileges";
|
|
241
247
|
};
|
|
242
248
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -278,6 +284,7 @@ export declare const selectClassBreakpoints: (filePath: string) => ((state: impo
|
|
|
278
284
|
privileges: import('../modules').TById;
|
|
279
285
|
roles: import('../modules').TRolesDict;
|
|
280
286
|
forceLogin?: boolean | undefined;
|
|
287
|
+
allowedOnGet?: string[] | undefined;
|
|
281
288
|
selectedTab: "roles" | "privileges";
|
|
282
289
|
};
|
|
283
290
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -319,6 +326,7 @@ export declare const selectDraftClassBreakpoints: (filePath: string) => ((state:
|
|
|
319
326
|
privileges: import('../modules').TById;
|
|
320
327
|
roles: import('../modules').TRolesDict;
|
|
321
328
|
forceLogin?: boolean | undefined;
|
|
329
|
+
allowedOnGet?: string[] | undefined;
|
|
322
330
|
selectedTab: "roles" | "privileges";
|
|
323
331
|
};
|
|
324
332
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -360,6 +368,7 @@ export declare const selectHighlightedLines: (threadId: number) => ((state: impo
|
|
|
360
368
|
privileges: import('../modules').TById;
|
|
361
369
|
roles: import('../modules').TRolesDict;
|
|
362
370
|
forceLogin?: boolean | undefined;
|
|
371
|
+
allowedOnGet?: string[] | undefined;
|
|
363
372
|
selectedTab: "roles" | "privileges";
|
|
364
373
|
};
|
|
365
374
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -407,6 +416,7 @@ export declare const selectActiveLine: (threadId: number) => ((state: import("re
|
|
|
407
416
|
privileges: import('../modules').TById;
|
|
408
417
|
roles: import('../modules').TRolesDict;
|
|
409
418
|
forceLogin?: boolean | undefined;
|
|
419
|
+
allowedOnGet?: string[] | undefined;
|
|
410
420
|
selectedTab: "roles" | "privileges";
|
|
411
421
|
};
|
|
412
422
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -448,6 +458,7 @@ export declare const selectExpressions: (threadId: number) => ((state: import("r
|
|
|
448
458
|
privileges: import('../modules').TById;
|
|
449
459
|
roles: import('../modules').TRolesDict;
|
|
450
460
|
forceLogin?: boolean | undefined;
|
|
461
|
+
allowedOnGet?: string[] | undefined;
|
|
451
462
|
selectedTab: "roles" | "privileges";
|
|
452
463
|
};
|
|
453
464
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -489,6 +500,7 @@ export declare const selectStoppedFromDebugSession: (threadId: number) => ((stat
|
|
|
489
500
|
privileges: import('../modules').TById;
|
|
490
501
|
roles: import('../modules').TRolesDict;
|
|
491
502
|
forceLogin?: boolean | undefined;
|
|
503
|
+
allowedOnGet?: string[] | undefined;
|
|
492
504
|
selectedTab: "roles" | "privileges";
|
|
493
505
|
};
|
|
494
506
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -530,6 +542,7 @@ export declare const selectSourceByPath: (filePath: string, methodName: string)
|
|
|
530
542
|
privileges: import('../modules').TById;
|
|
531
543
|
roles: import('../modules').TRolesDict;
|
|
532
544
|
forceLogin?: boolean | undefined;
|
|
545
|
+
allowedOnGet?: string[] | undefined;
|
|
533
546
|
selectedTab: "roles" | "privileges";
|
|
534
547
|
};
|
|
535
548
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -571,6 +584,7 @@ export declare const selectThreadIdByPath: (tabPath: string) => ((state: import(
|
|
|
571
584
|
privileges: import('../modules').TById;
|
|
572
585
|
roles: import('../modules').TRolesDict;
|
|
573
586
|
forceLogin?: boolean | undefined;
|
|
587
|
+
allowedOnGet?: string[] | undefined;
|
|
574
588
|
selectedTab: "roles" | "privileges";
|
|
575
589
|
};
|
|
576
590
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -612,6 +626,7 @@ export declare const selectSourceByThreadId: (threadId: number) => ((state: impo
|
|
|
612
626
|
privileges: import('../modules').TById;
|
|
613
627
|
roles: import('../modules').TRolesDict;
|
|
614
628
|
forceLogin?: boolean | undefined;
|
|
629
|
+
allowedOnGet?: string[] | undefined;
|
|
615
630
|
selectedTab: "roles" | "privileges";
|
|
616
631
|
};
|
|
617
632
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -659,6 +674,7 @@ export declare const selectCurrentFrameByThreadId: (threadId: number) => ((state
|
|
|
659
674
|
privileges: import('../modules').TById;
|
|
660
675
|
roles: import('../modules').TRolesDict;
|
|
661
676
|
forceLogin?: boolean | undefined;
|
|
677
|
+
allowedOnGet?: string[] | undefined;
|
|
662
678
|
selectedTab: "roles" | "privileges";
|
|
663
679
|
};
|
|
664
680
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -700,6 +716,7 @@ export declare const selectDebuggerChannels: ((state: import("redux").EmptyObjec
|
|
|
700
716
|
privileges: import('../modules').TById;
|
|
701
717
|
roles: import('../modules').TRolesDict;
|
|
702
718
|
forceLogin?: boolean | undefined;
|
|
719
|
+
allowedOnGet?: string[] | undefined;
|
|
703
720
|
selectedTab: "roles" | "privileges";
|
|
704
721
|
};
|
|
705
722
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -747,6 +764,7 @@ export declare const selectStackFrames: (threadId: number) => ((state: import("r
|
|
|
747
764
|
privileges: import('../modules').TById;
|
|
748
765
|
roles: import('../modules').TRolesDict;
|
|
749
766
|
forceLogin?: boolean | undefined;
|
|
767
|
+
allowedOnGet?: string[] | undefined;
|
|
750
768
|
selectedTab: "roles" | "privileges";
|
|
751
769
|
};
|
|
752
770
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -788,6 +806,7 @@ export declare const selectCallChainVariables: (threadId: number) => ((state: im
|
|
|
788
806
|
privileges: import('../modules').TById;
|
|
789
807
|
roles: import('../modules').TRolesDict;
|
|
790
808
|
forceLogin?: boolean | undefined;
|
|
809
|
+
allowedOnGet?: string[] | undefined;
|
|
791
810
|
selectedTab: "roles" | "privileges";
|
|
792
811
|
};
|
|
793
812
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -829,6 +848,7 @@ export declare const selectExpressionsVariables: (threadId: number) => ((state:
|
|
|
829
848
|
privileges: import('../modules').TById;
|
|
830
849
|
roles: import('../modules').TRolesDict;
|
|
831
850
|
forceLogin?: boolean | undefined;
|
|
851
|
+
allowedOnGet?: string[] | undefined;
|
|
832
852
|
selectedTab: "roles" | "privileges";
|
|
833
853
|
};
|
|
834
854
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -870,6 +890,7 @@ export declare const selectClassOffset: (filePath: string, type?: keyof IDebugge
|
|
|
870
890
|
privileges: import('../modules').TById;
|
|
871
891
|
roles: import('../modules').TRolesDict;
|
|
872
892
|
forceLogin?: boolean | undefined;
|
|
893
|
+
allowedOnGet?: string[] | undefined;
|
|
873
894
|
selectedTab: "roles" | "privileges";
|
|
874
895
|
};
|
|
875
896
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -911,6 +932,7 @@ export declare const selectExceptions: (threadId: number, fileType: FileFolderTy
|
|
|
911
932
|
privileges: import('../modules').TById;
|
|
912
933
|
roles: import('../modules').TRolesDict;
|
|
913
934
|
forceLogin?: boolean | undefined;
|
|
935
|
+
allowedOnGet?: string[] | undefined;
|
|
914
936
|
selectedTab: "roles" | "privileges";
|
|
915
937
|
};
|
|
916
938
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
@@ -28,6 +28,7 @@ export declare const selectRoot: ((state: import("redux").EmptyObject & {
|
|
|
28
28
|
privileges: import("../modules").TById;
|
|
29
29
|
roles: import("../modules").TRolesDict;
|
|
30
30
|
forceLogin?: boolean | undefined;
|
|
31
|
+
allowedOnGet?: string[] | undefined;
|
|
31
32
|
selectedTab: "roles" | "privileges";
|
|
32
33
|
};
|
|
33
34
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -69,6 +70,7 @@ export declare const selectTabs: ((state: import("redux").EmptyObject & {
|
|
|
69
70
|
privileges: import("../modules").TById;
|
|
70
71
|
roles: import("../modules").TRolesDict;
|
|
71
72
|
forceLogin?: boolean | undefined;
|
|
73
|
+
allowedOnGet?: string[] | undefined;
|
|
72
74
|
selectedTab: "roles" | "privileges";
|
|
73
75
|
};
|
|
74
76
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -140,6 +142,7 @@ export declare const selectActiveTab: ((state: import("redux").EmptyObject & {
|
|
|
140
142
|
privileges: import("../modules").TById;
|
|
141
143
|
roles: import("../modules").TRolesDict;
|
|
142
144
|
forceLogin?: boolean | undefined;
|
|
145
|
+
allowedOnGet?: string[] | undefined;
|
|
143
146
|
selectedTab: "roles" | "privileges";
|
|
144
147
|
};
|
|
145
148
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -181,6 +184,7 @@ export declare const selectRecentFiles: ((state: import("redux").EmptyObject & {
|
|
|
181
184
|
privileges: import("../modules").TById;
|
|
182
185
|
roles: import("../modules").TRolesDict;
|
|
183
186
|
forceLogin?: boolean | undefined;
|
|
187
|
+
allowedOnGet?: string[] | undefined;
|
|
184
188
|
selectedTab: "roles" | "privileges";
|
|
185
189
|
};
|
|
186
190
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -252,6 +256,7 @@ export declare const selectCurrentTab: ((state: import("redux").EmptyObject & {
|
|
|
252
256
|
privileges: import("../modules").TById;
|
|
253
257
|
roles: import("../modules").TRolesDict;
|
|
254
258
|
forceLogin?: boolean | undefined;
|
|
259
|
+
allowedOnGet?: string[] | undefined;
|
|
255
260
|
selectedTab: "roles" | "privileges";
|
|
256
261
|
};
|
|
257
262
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -323,6 +328,7 @@ export declare const selectTabMaxWeight: ((state: import("redux").EmptyObject &
|
|
|
323
328
|
privileges: import("../modules").TById;
|
|
324
329
|
roles: import("../modules").TRolesDict;
|
|
325
330
|
forceLogin?: boolean | undefined;
|
|
331
|
+
allowedOnGet?: string[] | undefined;
|
|
326
332
|
selectedTab: "roles" | "privileges";
|
|
327
333
|
};
|
|
328
334
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -394,6 +400,7 @@ export declare const selectPreviewedWebformsPaths: ((state: import("redux").Empt
|
|
|
394
400
|
privileges: import("../modules").TById;
|
|
395
401
|
roles: import("../modules").TRolesDict;
|
|
396
402
|
forceLogin?: boolean | undefined;
|
|
403
|
+
allowedOnGet?: string[] | undefined;
|
|
397
404
|
selectedTab: "roles" | "privileges";
|
|
398
405
|
};
|
|
399
406
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -450,6 +457,7 @@ export declare const selectHasTabs: ((state: import("redux").EmptyObject & {
|
|
|
450
457
|
privileges: import("../modules").TById;
|
|
451
458
|
roles: import("../modules").TRolesDict;
|
|
452
459
|
forceLogin?: boolean | undefined;
|
|
460
|
+
allowedOnGet?: string[] | undefined;
|
|
453
461
|
selectedTab: "roles" | "privileges";
|
|
454
462
|
};
|
|
455
463
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -506,6 +514,7 @@ export declare const selectTabByPath: (tabPath: string) => ((state: import("redu
|
|
|
506
514
|
privileges: import("../modules").TById;
|
|
507
515
|
roles: import("../modules").TRolesDict;
|
|
508
516
|
forceLogin?: boolean | undefined;
|
|
517
|
+
allowedOnGet?: string[] | undefined;
|
|
509
518
|
selectedTab: "roles" | "privileges";
|
|
510
519
|
};
|
|
511
520
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -577,6 +586,7 @@ export declare const selectContentByPath: (tabPath: string, contentPath?: string
|
|
|
577
586
|
privileges: import("../modules").TById;
|
|
578
587
|
roles: import("../modules").TRolesDict;
|
|
579
588
|
forceLogin?: boolean | undefined;
|
|
589
|
+
allowedOnGet?: string[] | undefined;
|
|
580
590
|
selectedTab: "roles" | "privileges";
|
|
581
591
|
};
|
|
582
592
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -633,6 +643,7 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
|
|
|
633
643
|
privileges: import("../modules").TById;
|
|
634
644
|
roles: import("../modules").TRolesDict;
|
|
635
645
|
forceLogin?: boolean | undefined;
|
|
646
|
+
allowedOnGet?: string[] | undefined;
|
|
636
647
|
selectedTab: "roles" | "privileges";
|
|
637
648
|
};
|
|
638
649
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -719,6 +730,7 @@ export declare const selectWebformNodes: (path: string, transformer?: (value: ob
|
|
|
719
730
|
privileges: import("../modules").TById;
|
|
720
731
|
roles: import("../modules").TRolesDict;
|
|
721
732
|
forceLogin?: boolean | undefined;
|
|
733
|
+
allowedOnGet?: string[] | undefined;
|
|
722
734
|
selectedTab: "roles" | "privileges";
|
|
723
735
|
};
|
|
724
736
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -760,6 +772,7 @@ export declare const selectTouchedTabs: ((state: import("redux").EmptyObject & {
|
|
|
760
772
|
privileges: import("../modules").TById;
|
|
761
773
|
roles: import("../modules").TRolesDict;
|
|
762
774
|
forceLogin?: boolean | undefined;
|
|
775
|
+
allowedOnGet?: string[] | undefined;
|
|
763
776
|
selectedTab: "roles" | "privileges";
|
|
764
777
|
};
|
|
765
778
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -846,6 +859,7 @@ export declare const selectTouchedTabsLength: ((state: import("redux").EmptyObje
|
|
|
846
859
|
privileges: import("../modules").TById;
|
|
847
860
|
roles: import("../modules").TRolesDict;
|
|
848
861
|
forceLogin?: boolean | undefined;
|
|
862
|
+
allowedOnGet?: string[] | undefined;
|
|
849
863
|
selectedTab: "roles" | "privileges";
|
|
850
864
|
};
|
|
851
865
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -902,6 +916,7 @@ export declare const selectDebuggers: ((state: import("redux").EmptyObject & {
|
|
|
902
916
|
privileges: import("../modules").TById;
|
|
903
917
|
roles: import("../modules").TRolesDict;
|
|
904
918
|
forceLogin?: boolean | undefined;
|
|
919
|
+
allowedOnGet?: string[] | undefined;
|
|
905
920
|
selectedTab: "roles" | "privileges";
|
|
906
921
|
};
|
|
907
922
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -973,6 +988,7 @@ export declare const selectExplorer: ((state: import("redux").EmptyObject & {
|
|
|
973
988
|
privileges: import("../modules").TById;
|
|
974
989
|
roles: import("../modules").TRolesDict;
|
|
975
990
|
forceLogin?: boolean | undefined;
|
|
991
|
+
allowedOnGet?: string[] | undefined;
|
|
976
992
|
selectedTab: "roles" | "privileges";
|
|
977
993
|
};
|
|
978
994
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -1009,6 +1025,7 @@ export declare const selectExplorer: ((state: import("redux").EmptyObject & {
|
|
|
1009
1025
|
privileges: import("../modules").TById;
|
|
1010
1026
|
roles: import("../modules").TRolesDict;
|
|
1011
1027
|
forceLogin?: boolean | undefined;
|
|
1028
|
+
allowedOnGet?: string[] | undefined;
|
|
1012
1029
|
selectedTab: "roles" | "privileges";
|
|
1013
1030
|
};
|
|
1014
1031
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -1050,6 +1067,7 @@ export declare const selectWebFormsFolder: ((state: import("redux").EmptyObject
|
|
|
1050
1067
|
privileges: import("../modules").TById;
|
|
1051
1068
|
roles: import("../modules").TRolesDict;
|
|
1052
1069
|
forceLogin?: boolean | undefined;
|
|
1070
|
+
allowedOnGet?: string[] | undefined;
|
|
1053
1071
|
selectedTab: "roles" | "privileges";
|
|
1054
1072
|
};
|
|
1055
1073
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -1086,6 +1104,7 @@ export declare const selectWebFormsFolder: ((state: import("redux").EmptyObject
|
|
|
1086
1104
|
privileges: import("../modules").TById;
|
|
1087
1105
|
roles: import("../modules").TRolesDict;
|
|
1088
1106
|
forceLogin?: boolean | undefined;
|
|
1107
|
+
allowedOnGet?: string[] | undefined;
|
|
1089
1108
|
selectedTab: "roles" | "privileges";
|
|
1090
1109
|
};
|
|
1091
1110
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -1127,6 +1146,7 @@ export declare const selectMethodsFolder: ((state: import("redux").EmptyObject &
|
|
|
1127
1146
|
privileges: import("../modules").TById;
|
|
1128
1147
|
roles: import("../modules").TRolesDict;
|
|
1129
1148
|
forceLogin?: boolean | undefined;
|
|
1149
|
+
allowedOnGet?: string[] | undefined;
|
|
1130
1150
|
selectedTab: "roles" | "privileges";
|
|
1131
1151
|
};
|
|
1132
1152
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -1163,6 +1183,7 @@ export declare const selectMethodsFolder: ((state: import("redux").EmptyObject &
|
|
|
1163
1183
|
privileges: import("../modules").TById;
|
|
1164
1184
|
roles: import("../modules").TRolesDict;
|
|
1165
1185
|
forceLogin?: boolean | undefined;
|
|
1186
|
+
allowedOnGet?: string[] | undefined;
|
|
1166
1187
|
selectedTab: "roles" | "privileges";
|
|
1167
1188
|
};
|
|
1168
1189
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -1204,6 +1225,7 @@ export declare const selectClassesFolder: ((state: import("redux").EmptyObject &
|
|
|
1204
1225
|
privileges: import("../modules").TById;
|
|
1205
1226
|
roles: import("../modules").TRolesDict;
|
|
1206
1227
|
forceLogin?: boolean | undefined;
|
|
1228
|
+
allowedOnGet?: string[] | undefined;
|
|
1207
1229
|
selectedTab: "roles" | "privileges";
|
|
1208
1230
|
};
|
|
1209
1231
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -1240,6 +1262,7 @@ export declare const selectClassesFolder: ((state: import("redux").EmptyObject &
|
|
|
1240
1262
|
privileges: import("../modules").TById;
|
|
1241
1263
|
roles: import("../modules").TRolesDict;
|
|
1242
1264
|
forceLogin?: boolean | undefined;
|
|
1265
|
+
allowedOnGet?: string[] | undefined;
|
|
1243
1266
|
selectedTab: "roles" | "privileges";
|
|
1244
1267
|
};
|
|
1245
1268
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -1281,6 +1304,7 @@ export declare const selectMethods: ((state: import("redux").EmptyObject & {
|
|
|
1281
1304
|
privileges: import("../modules").TById;
|
|
1282
1305
|
roles: import("../modules").TRolesDict;
|
|
1283
1306
|
forceLogin?: boolean | undefined;
|
|
1307
|
+
allowedOnGet?: string[] | undefined;
|
|
1284
1308
|
selectedTab: "roles" | "privileges";
|
|
1285
1309
|
};
|
|
1286
1310
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -1322,6 +1346,7 @@ export declare const selectWebForms: ((state: import("redux").EmptyObject & {
|
|
|
1322
1346
|
privileges: import("../modules").TById;
|
|
1323
1347
|
roles: import("../modules").TRolesDict;
|
|
1324
1348
|
forceLogin?: boolean | undefined;
|
|
1349
|
+
allowedOnGet?: string[] | undefined;
|
|
1325
1350
|
selectedTab: "roles" | "privileges";
|
|
1326
1351
|
};
|
|
1327
1352
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -1363,6 +1388,7 @@ export declare const selectClasses: ((state: import("redux").EmptyObject & {
|
|
|
1363
1388
|
privileges: import("../modules").TById;
|
|
1364
1389
|
roles: import("../modules").TRolesDict;
|
|
1365
1390
|
forceLogin?: boolean | undefined;
|
|
1391
|
+
allowedOnGet?: string[] | undefined;
|
|
1366
1392
|
selectedTab: "roles" | "privileges";
|
|
1367
1393
|
};
|
|
1368
1394
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
@@ -27,6 +27,7 @@ export declare const selectModals: ((state: import("redux").EmptyObject & {
|
|
|
27
27
|
privileges: import("../modules").TById;
|
|
28
28
|
roles: import("../modules").TRolesDict;
|
|
29
29
|
forceLogin?: boolean | undefined;
|
|
30
|
+
allowedOnGet?: string[] | undefined;
|
|
30
31
|
selectedTab: "roles" | "privileges";
|
|
31
32
|
};
|
|
32
33
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|