@the-inkwell/shared 0.1.133 → 0.1.134
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/package.json
CHANGED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
// @generated
|
|
2
|
-
// This file is automatically generated by Kanel. Do not modify manually.
|
|
3
|
-
|
|
4
|
-
import type { PersonsId } from './Persons';
|
|
5
|
-
import type { IndustriesId } from './Industries';
|
|
6
|
-
|
|
7
|
-
/** Represents the table public.persons_to_industries */
|
|
8
|
-
export default interface PersonsToIndustries {
|
|
9
|
-
personId: PersonsId;
|
|
10
|
-
|
|
11
|
-
industryId: IndustriesId;
|
|
12
|
-
|
|
13
|
-
createdAt: Date;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
/** Represents the initializer for the table public.persons_to_industries */
|
|
17
|
-
export interface PersonsToIndustriesInitializer {
|
|
18
|
-
personId: PersonsId;
|
|
19
|
-
|
|
20
|
-
industryId: IndustriesId;
|
|
21
|
-
|
|
22
|
-
/** Default value: CURRENT_TIMESTAMP */
|
|
23
|
-
createdAt?: Date;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
/** Represents the mutator for the table public.persons_to_industries */
|
|
27
|
-
export interface PersonsToIndustriesMutator {
|
|
28
|
-
personId?: PersonsId;
|
|
29
|
-
|
|
30
|
-
industryId?: IndustriesId;
|
|
31
|
-
|
|
32
|
-
createdAt?: Date;
|
|
33
|
-
}
|