@the-inkwell/shared 0.1.105 → 0.1.106
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/src/types/_schema/Industries.js +4 -0
- package/dist/src/types/_schema/PositionsToTags.js +4 -0
- package/package.json +1 -1
- package/src/types/_schema/Industries.ts +9 -0
- package/src/types/_schema/Persons.ts +7 -0
- package/src/types/_schema/Positions.ts +13 -0
- package/src/types/_schema/PositionsToTags.ts +33 -0
package/package.json
CHANGED
|
@@ -6,6 +6,7 @@ import type { default as PersonCareerLevels } from './PersonCareerLevels';
|
|
|
6
6
|
import type { default as PersonDegrees } from './PersonDegrees';
|
|
7
7
|
import type { default as PersonGenders } from './PersonGenders';
|
|
8
8
|
import type { ClientsId } from './Clients';
|
|
9
|
+
import type { default as Industries } from './Industries';
|
|
9
10
|
|
|
10
11
|
/** Identifier type for public.persons */
|
|
11
12
|
export type PersonsId = string;
|
|
@@ -99,6 +100,8 @@ export default interface Persons {
|
|
|
99
100
|
createdAt: Date;
|
|
100
101
|
|
|
101
102
|
updatedAt: Date;
|
|
103
|
+
|
|
104
|
+
industries: Industries[] | null;
|
|
102
105
|
}
|
|
103
106
|
|
|
104
107
|
/** Represents the initializer for the table public.persons */
|
|
@@ -199,6 +202,8 @@ export interface PersonsInitializer {
|
|
|
199
202
|
|
|
200
203
|
/** Default value: CURRENT_TIMESTAMP */
|
|
201
204
|
updatedAt?: Date;
|
|
205
|
+
|
|
206
|
+
industries?: Industries[] | null;
|
|
202
207
|
}
|
|
203
208
|
|
|
204
209
|
/** Represents the mutator for the table public.persons */
|
|
@@ -290,4 +295,6 @@ export interface PersonsMutator {
|
|
|
290
295
|
createdAt?: Date;
|
|
291
296
|
|
|
292
297
|
updatedAt?: Date;
|
|
298
|
+
|
|
299
|
+
industries?: Industries[] | null;
|
|
293
300
|
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
import type { default as PositionStatuses } from './PositionStatuses';
|
|
5
5
|
import type { ClientsId } from './Clients';
|
|
6
|
+
import type { default as Industries } from './Industries';
|
|
6
7
|
|
|
7
8
|
/** Identifier type for public.positions */
|
|
8
9
|
export type PositionsId = string;
|
|
@@ -30,6 +31,10 @@ export default interface Positions {
|
|
|
30
31
|
startedAt: Date | null;
|
|
31
32
|
|
|
32
33
|
endedAt: Date | null;
|
|
34
|
+
|
|
35
|
+
description: string | null;
|
|
36
|
+
|
|
37
|
+
industries: Industries[] | null;
|
|
33
38
|
}
|
|
34
39
|
|
|
35
40
|
/** Represents the initializer for the table public.positions */
|
|
@@ -61,6 +66,10 @@ export interface PositionsInitializer {
|
|
|
61
66
|
startedAt?: Date | null;
|
|
62
67
|
|
|
63
68
|
endedAt?: Date | null;
|
|
69
|
+
|
|
70
|
+
description?: string | null;
|
|
71
|
+
|
|
72
|
+
industries?: Industries[] | null;
|
|
64
73
|
}
|
|
65
74
|
|
|
66
75
|
/** Represents the mutator for the table public.positions */
|
|
@@ -86,4 +95,8 @@ export interface PositionsMutator {
|
|
|
86
95
|
startedAt?: Date | null;
|
|
87
96
|
|
|
88
97
|
endedAt?: Date | null;
|
|
98
|
+
|
|
99
|
+
description?: string | null;
|
|
100
|
+
|
|
101
|
+
industries?: Industries[] | null;
|
|
89
102
|
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// @generated
|
|
2
|
+
// This file is automatically generated by Kanel. Do not modify manually.
|
|
3
|
+
|
|
4
|
+
import type { PositionsId } from './Positions';
|
|
5
|
+
import type { TagsId } from './Tags';
|
|
6
|
+
|
|
7
|
+
/** Represents the table public.positions_to_tags */
|
|
8
|
+
export default interface PositionsToTags {
|
|
9
|
+
positionId: PositionsId;
|
|
10
|
+
|
|
11
|
+
tagId: TagsId;
|
|
12
|
+
|
|
13
|
+
createdAt: Date;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/** Represents the initializer for the table public.positions_to_tags */
|
|
17
|
+
export interface PositionsToTagsInitializer {
|
|
18
|
+
positionId: PositionsId;
|
|
19
|
+
|
|
20
|
+
tagId: TagsId;
|
|
21
|
+
|
|
22
|
+
/** Default value: CURRENT_TIMESTAMP */
|
|
23
|
+
createdAt?: Date;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/** Represents the mutator for the table public.positions_to_tags */
|
|
27
|
+
export interface PositionsToTagsMutator {
|
|
28
|
+
positionId?: PositionsId;
|
|
29
|
+
|
|
30
|
+
tagId?: TagsId;
|
|
31
|
+
|
|
32
|
+
createdAt?: Date;
|
|
33
|
+
}
|