sprof 0.1.54 → 0.1.57
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.
|
@@ -2,9 +2,9 @@ import { Ref } from 'vue';
|
|
|
2
2
|
import { default as FTSP } from '../ftsp/FTSP';
|
|
3
3
|
import { Constructable } from './Classes';
|
|
4
4
|
import { default as IFileInfosGetter } from '../interfaces/IFileInfosGetter';
|
|
5
|
+
import { default as Option } from '../interfaces/IOption';
|
|
5
6
|
import { default as ItemsWithCount } from '../interfaces/ItemsWithCount';
|
|
6
7
|
import { default as IWithId } from '../interfaces/IWithId';
|
|
7
|
-
import { default as Option } from '../interfaces/IOption';
|
|
8
8
|
export interface GetAllOptions {
|
|
9
9
|
withCache?: boolean;
|
|
10
10
|
ftsp: FTSP;
|
|
@@ -24,7 +24,6 @@ export default class BaseStore<T extends IWithId & IFileInfosGetter> {
|
|
|
24
24
|
GetAll(options?: GetAllOptions): Promise<void>;
|
|
25
25
|
Get(id?: string): Promise<void>;
|
|
26
26
|
GetBySlug(slug?: string): Promise<void>;
|
|
27
|
-
TestMethod(): Promise<void>;
|
|
28
27
|
FTSP(options?: GetAllOptions): Promise<void>;
|
|
29
28
|
Create(item?: T): Promise<T | void>;
|
|
30
29
|
CreateAndSet(item: T): Promise<void>;
|
|
@@ -37,7 +37,6 @@ export default abstract class S {
|
|
|
37
37
|
GetAll(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
38
38
|
Get(id?: string | undefined): Promise<void>;
|
|
39
39
|
GetBySlug(slug?: string | undefined): Promise<void>;
|
|
40
|
-
TestMethod(): Promise<void>;
|
|
41
40
|
FTSP(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
42
41
|
Create(item?: import('../classes/Contact').default | undefined): Promise<void | import('../classes/Contact').default>;
|
|
43
42
|
CreateAndSet(item: import('../classes/Contact').default): Promise<void>;
|
|
@@ -76,7 +75,6 @@ export default abstract class S {
|
|
|
76
75
|
GetAll(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
77
76
|
Get(id?: string | undefined): Promise<void>;
|
|
78
77
|
GetBySlug(slug?: string | undefined): Promise<void>;
|
|
79
|
-
TestMethod(): Promise<void>;
|
|
80
78
|
FTSP(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
81
79
|
Create(item?: import('../classes/Email').default | undefined): Promise<void | import('../classes/Email').default>;
|
|
82
80
|
CreateAndSet(item: import('../classes/Email').default): Promise<void>;
|
|
@@ -116,7 +114,6 @@ export default abstract class S {
|
|
|
116
114
|
GetAll(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
117
115
|
Get(id?: string | undefined): Promise<void>;
|
|
118
116
|
GetBySlug(slug?: string | undefined): Promise<void>;
|
|
119
|
-
TestMethod(): Promise<void>;
|
|
120
117
|
FTSP(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
121
118
|
Create(item?: import('../classes/FTSPPreset').default | undefined): Promise<void | import('../classes/FTSPPreset').default>;
|
|
122
119
|
CreateAndSet(item: import('../classes/FTSPPreset').default): Promise<void>;
|
|
@@ -155,7 +152,6 @@ export default abstract class S {
|
|
|
155
152
|
GetAll(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
156
153
|
Get(id?: string | undefined): Promise<void>;
|
|
157
154
|
GetBySlug(slug?: string | undefined): Promise<void>;
|
|
158
|
-
TestMethod(): Promise<void>;
|
|
159
155
|
FTSP(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
160
156
|
Create(item?: import('../classes/Human').default | undefined): Promise<void | import('../classes/Human').default>;
|
|
161
157
|
CreateAndSet(item: import('../classes/Human').default): Promise<void>;
|
|
@@ -194,7 +190,6 @@ export default abstract class S {
|
|
|
194
190
|
GetAll(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
195
191
|
Get(id?: string | undefined): Promise<void>;
|
|
196
192
|
GetBySlug(slug?: string | undefined): Promise<void>;
|
|
197
|
-
TestMethod(): Promise<void>;
|
|
198
193
|
FTSP(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
199
194
|
Create(item?: import('../classes/Phone').default | undefined): Promise<void | import('../classes/Phone').default>;
|
|
200
195
|
CreateAndSet(item: import('../classes/Phone').default): Promise<void>;
|
|
@@ -233,7 +228,6 @@ export default abstract class S {
|
|
|
233
228
|
GetAll(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
234
229
|
Get(id?: string | undefined): Promise<void>;
|
|
235
230
|
GetBySlug(slug?: string | undefined): Promise<void>;
|
|
236
|
-
TestMethod(): Promise<void>;
|
|
237
231
|
FTSP(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
238
232
|
Create(item?: import('../classes/Schema').default | undefined): Promise<void | import('../classes/Schema').default>;
|
|
239
233
|
CreateAndSet(item: import('../classes/Schema').default): Promise<void>;
|
|
@@ -272,7 +266,6 @@ export default abstract class S {
|
|
|
272
266
|
GetAll(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
273
267
|
Get(id?: string | undefined): Promise<void>;
|
|
274
268
|
GetBySlug(slug?: string | undefined): Promise<void>;
|
|
275
|
-
TestMethod(): Promise<void>;
|
|
276
269
|
FTSP(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
277
270
|
Create(item?: import('../classes/UserAccount').default | undefined): Promise<void | import('../classes/UserAccount').default>;
|
|
278
271
|
CreateAndSet(item: import('../classes/UserAccount').default): Promise<void>;
|
|
@@ -311,7 +304,6 @@ export default abstract class S {
|
|
|
311
304
|
GetAll(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
312
305
|
Get(id?: string | undefined): Promise<void>;
|
|
313
306
|
GetBySlug(slug?: string | undefined): Promise<void>;
|
|
314
|
-
TestMethod(): Promise<void>;
|
|
315
307
|
FTSP(options?: import('../helpers/BaseStore').GetAllOptions | undefined): Promise<void>;
|
|
316
308
|
Create(item?: import('../classes/ValueType').default | undefined): Promise<void | import('../classes/ValueType').default>;
|
|
317
309
|
CreateAndSet(item: import('../classes/ValueType').default): Promise<void>;
|
package/dist/core/ui/index.d.ts
CHANGED