@the-inkwell/shared 0.1.135 → 0.1.137
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.
|
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./campaigns"), exports);
|
|
18
18
|
__exportStar(require("./candidacies"), exports);
|
|
19
19
|
__exportStar(require("./clients"), exports);
|
|
20
|
+
__exportStar(require("./listViews"), exports);
|
|
20
21
|
__exportStar(require("./messages"), exports);
|
|
21
22
|
__exportStar(require("./partners"), exports);
|
|
22
23
|
__exportStar(require("./persons"), exports);
|
package/package.json
CHANGED
|
@@ -1,74 +1,67 @@
|
|
|
1
1
|
// @generated
|
|
2
2
|
// This file is automatically generated by Kanel. Do not modify manually.
|
|
3
3
|
|
|
4
|
-
import type { default as ListViewModels } from './ListViewModels'
|
|
5
|
-
import type { PositionsId } from './Positions'
|
|
4
|
+
import type { default as ListViewModels } from './ListViewModels';
|
|
6
5
|
|
|
7
6
|
/** Identifier type for public.list_views */
|
|
8
|
-
export type ListViewsId = string
|
|
7
|
+
export type ListViewsId = string;
|
|
9
8
|
|
|
10
9
|
/** Represents the table public.list_views */
|
|
11
10
|
export default interface ListViews {
|
|
12
|
-
id: ListViewsId
|
|
11
|
+
id: ListViewsId;
|
|
13
12
|
|
|
14
|
-
model: ListViewModels
|
|
13
|
+
model: ListViewModels;
|
|
15
14
|
|
|
16
|
-
name: string | null
|
|
15
|
+
name: string | null;
|
|
17
16
|
|
|
18
|
-
query: unknown
|
|
17
|
+
query: unknown;
|
|
19
18
|
|
|
20
|
-
|
|
19
|
+
archivedAt: Date | null;
|
|
21
20
|
|
|
22
|
-
|
|
21
|
+
deletedAt: Date | null;
|
|
23
22
|
|
|
24
|
-
|
|
23
|
+
createdAt: Date;
|
|
25
24
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
updatedAt: Date
|
|
25
|
+
updatedAt: Date;
|
|
29
26
|
}
|
|
30
27
|
|
|
31
28
|
/** Represents the initializer for the table public.list_views */
|
|
32
29
|
export interface ListViewsInitializer {
|
|
33
30
|
/** Default value: gen_random_uuid() */
|
|
34
|
-
id?: ListViewsId
|
|
35
|
-
|
|
36
|
-
model: ListViewModels
|
|
31
|
+
id?: ListViewsId;
|
|
37
32
|
|
|
38
|
-
|
|
33
|
+
model: ListViewModels;
|
|
39
34
|
|
|
40
|
-
|
|
35
|
+
name?: string | null;
|
|
41
36
|
|
|
42
|
-
|
|
37
|
+
query: unknown;
|
|
43
38
|
|
|
44
|
-
archivedAt?: Date | null
|
|
39
|
+
archivedAt?: Date | null;
|
|
45
40
|
|
|
46
|
-
deletedAt?: Date | null
|
|
41
|
+
deletedAt?: Date | null;
|
|
47
42
|
|
|
48
43
|
/** Default value: CURRENT_TIMESTAMP */
|
|
49
|
-
createdAt?: Date
|
|
44
|
+
createdAt?: Date;
|
|
50
45
|
|
|
51
46
|
/** Default value: CURRENT_TIMESTAMP */
|
|
52
|
-
updatedAt?: Date
|
|
47
|
+
updatedAt?: Date;
|
|
53
48
|
}
|
|
54
49
|
|
|
55
50
|
/** Represents the mutator for the table public.list_views */
|
|
56
51
|
export interface ListViewsMutator {
|
|
57
|
-
id?: ListViewsId
|
|
58
|
-
|
|
59
|
-
model?: ListViewModels
|
|
52
|
+
id?: ListViewsId;
|
|
60
53
|
|
|
61
|
-
|
|
54
|
+
model?: ListViewModels;
|
|
62
55
|
|
|
63
|
-
|
|
56
|
+
name?: string | null;
|
|
64
57
|
|
|
65
|
-
|
|
58
|
+
query?: unknown;
|
|
66
59
|
|
|
67
|
-
archivedAt?: Date | null
|
|
60
|
+
archivedAt?: Date | null;
|
|
68
61
|
|
|
69
|
-
deletedAt?: Date | null
|
|
62
|
+
deletedAt?: Date | null;
|
|
70
63
|
|
|
71
|
-
createdAt?: Date
|
|
64
|
+
createdAt?: Date;
|
|
72
65
|
|
|
73
|
-
updatedAt?: Date
|
|
66
|
+
updatedAt?: Date;
|
|
74
67
|
}
|