@the-inkwell/shared 0.1.71 → 0.1.72

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.
Files changed (55) hide show
  1. package/package.json +1 -4
  2. package/src/types/_schema/Action.ts +91 -0
  3. package/src/types/_schema/ActionNames.ts +11 -0
  4. package/src/types/_schema/Admin.ts +36 -0
  5. package/src/types/_schema/Campaign.ts +77 -0
  6. package/src/types/_schema/CampaignStatuses.ts +10 -0
  7. package/src/types/_schema/CampaignToPosition.ts +40 -0
  8. package/src/types/_schema/Candidacy.ts +84 -0
  9. package/src/types/_schema/CandidacyFeedback.ts +55 -0
  10. package/src/types/_schema/CandidacyRatingToTag.ts +40 -0
  11. package/src/types/_schema/CandidacySources.ts +11 -0
  12. package/src/types/_schema/CandidacyStatuses.ts +14 -0
  13. package/src/types/_schema/Client.ts +56 -0
  14. package/src/types/_schema/ClientStatuses.ts +10 -0
  15. package/src/types/_schema/Contract.ts +62 -0
  16. package/src/types/_schema/Conversation.ts +64 -0
  17. package/src/types/_schema/EnrichmentSources.ts +8 -0
  18. package/src/types/_schema/Jwt.ts +55 -0
  19. package/src/types/_schema/ListView.ts +74 -0
  20. package/src/types/_schema/ListViewModels.ts +11 -0
  21. package/src/types/_schema/Message.ts +70 -0
  22. package/src/types/_schema/MessageChannels.ts +9 -0
  23. package/src/types/_schema/MessageTemplate.ts +53 -0
  24. package/src/types/_schema/Note.ts +76 -0
  25. package/src/types/_schema/Otp.ts +61 -0
  26. package/src/types/_schema/Person.ts +293 -0
  27. package/src/types/_schema/PersonCareerLevels.ts +13 -0
  28. package/src/types/_schema/PersonClub.ts +53 -0
  29. package/src/types/_schema/PersonDegrees.ts +13 -0
  30. package/src/types/_schema/PersonEnrichment.ts +62 -0
  31. package/src/types/_schema/PersonGenders.ts +11 -0
  32. package/src/types/_schema/PersonNetwork.ts +53 -0
  33. package/src/types/_schema/PersonSkill.ts +53 -0
  34. package/src/types/_schema/PersonSources.ts +11 -0
  35. package/src/types/_schema/PersonToBestPerson.ts +32 -0
  36. package/src/types/_schema/PersonToPersonClub.ts +33 -0
  37. package/src/types/_schema/PersonToPersonNetwork.ts +33 -0
  38. package/src/types/_schema/PersonToPersonSkill.ts +33 -0
  39. package/src/types/_schema/PersonToTag.ts +33 -0
  40. package/src/types/_schema/Position.ts +77 -0
  41. package/src/types/_schema/PositionStatuses.ts +9 -0
  42. package/src/types/_schema/Referral.ts +78 -0
  43. package/src/types/_schema/ReferralPayout.ts +29 -0
  44. package/src/types/_schema/ReferralSources.ts +10 -0
  45. package/src/types/_schema/ReferralToIntroMessage.ts +40 -0
  46. package/src/types/_schema/Sender.ts +59 -0
  47. package/src/types/_schema/Tag.ts +47 -0
  48. package/src/types/_schema/WebsiteBlock.ts +45 -0
  49. package/src/types/_schema/WebsiteLandingPage.ts +47 -0
  50. package/src/types/_schema/WebsiteStaticPage.ts +53 -0
  51. package/src/types/models/admin/candidacies/index.ts +15 -2
  52. package/src/types/models/admin/persons/index.ts +4 -4
  53. package/src/types/models/admin/website/index.ts +3 -3
  54. package/src/types/models/auth/index.ts +2 -1
  55. package/src/types/db.ts +0 -487
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-inkwell/shared",
3
- "version": "0.1.71",
3
+ "version": "0.1.72",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin)",
@@ -14,8 +14,5 @@
14
14
  "devDependencies": {
15
15
  "@types/node": "^22.13.1",
16
16
  "typescript": "^5.7.3"
17
- },
18
- "dependencies": {
19
- "kysely": "^0.27.6"
20
17
  }
21
18
  }
@@ -0,0 +1,91 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ import type { CandidacyId } from './Candidacy';
5
+ import type { ClientId } from './Client';
6
+ import type { MessageId } from './Message';
7
+ import type { NoteId } from './Note';
8
+ import type { PersonId } from './Person';
9
+ import type { PositionId } from './Position';
10
+ import type { ReferralId } from './Referral';
11
+ import type { default as ActionNames } from './ActionNames';
12
+
13
+ /** Identifier type for public.Action */
14
+ export type ActionId = string & { __brand: 'ActionId' };
15
+
16
+ /** Represents the table public.Action */
17
+ export default interface Action {
18
+ id: ActionId;
19
+
20
+ candidacyId: CandidacyId | null;
21
+
22
+ clientId: ClientId | null;
23
+
24
+ messageId: MessageId | null;
25
+
26
+ noteId: NoteId | null;
27
+
28
+ personId: PersonId | null;
29
+
30
+ positionId: PositionId | null;
31
+
32
+ referralId: ReferralId | null;
33
+
34
+ data: unknown;
35
+
36
+ createdAt: Date;
37
+
38
+ name: ActionNames;
39
+ }
40
+
41
+ /** Represents the initializer for the table public.Action */
42
+ export interface ActionInitializer {
43
+ /** Default value: gen_random_uuid() */
44
+ id?: ActionId;
45
+
46
+ candidacyId?: CandidacyId | null;
47
+
48
+ clientId?: ClientId | null;
49
+
50
+ messageId?: MessageId | null;
51
+
52
+ noteId?: NoteId | null;
53
+
54
+ personId?: PersonId | null;
55
+
56
+ positionId?: PositionId | null;
57
+
58
+ referralId?: ReferralId | null;
59
+
60
+ data: unknown;
61
+
62
+ /** Default value: CURRENT_TIMESTAMP */
63
+ createdAt?: Date;
64
+
65
+ name: ActionNames;
66
+ }
67
+
68
+ /** Represents the mutator for the table public.Action */
69
+ export interface ActionMutator {
70
+ id?: ActionId;
71
+
72
+ candidacyId?: CandidacyId | null;
73
+
74
+ clientId?: ClientId | null;
75
+
76
+ messageId?: MessageId | null;
77
+
78
+ noteId?: NoteId | null;
79
+
80
+ personId?: PersonId | null;
81
+
82
+ positionId?: PositionId | null;
83
+
84
+ referralId?: ReferralId | null;
85
+
86
+ data?: unknown;
87
+
88
+ createdAt?: Date;
89
+
90
+ name?: ActionNames;
91
+ }
@@ -0,0 +1,11 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ /** Represents the enum public.ActionNames */
5
+ type ActionNames =
6
+ | 'MESSAGE_SENT'
7
+ | 'PROFILE_UPDATE'
8
+ | 'SIGN_IN'
9
+ | 'STATUS_UPDATE';
10
+
11
+ export default ActionNames;
@@ -0,0 +1,36 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ import type { PersonId } from './Person';
5
+
6
+ /** Identifier type for public.Admin */
7
+ export type AdminId = string & { __brand: 'AdminId' };
8
+
9
+ /** Represents the table public.Admin */
10
+ export default interface Admin {
11
+ id: AdminId;
12
+
13
+ personId: PersonId;
14
+
15
+ createdAt: Date;
16
+ }
17
+
18
+ /** Represents the initializer for the table public.Admin */
19
+ export interface AdminInitializer {
20
+ /** Default value: gen_random_uuid() */
21
+ id?: AdminId;
22
+
23
+ personId: PersonId;
24
+
25
+ /** Default value: CURRENT_TIMESTAMP */
26
+ createdAt?: Date;
27
+ }
28
+
29
+ /** Represents the mutator for the table public.Admin */
30
+ export interface AdminMutator {
31
+ id?: AdminId;
32
+
33
+ personId?: PersonId;
34
+
35
+ createdAt?: Date;
36
+ }
@@ -0,0 +1,77 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ import type { default as CampaignStatuses } from './CampaignStatuses';
5
+ import type { MessageTemplateId } from './MessageTemplate';
6
+ import type { default as MessageChannels } from './MessageChannels';
7
+
8
+ /** Identifier type for public.Campaign */
9
+ export type CampaignId = string & { __brand: 'CampaignId' };
10
+
11
+ /** Represents the table public.Campaign */
12
+ export default interface Campaign {
13
+ id: CampaignId;
14
+
15
+ urlId: number;
16
+
17
+ status: CampaignStatuses;
18
+
19
+ messageTemplateId: MessageTemplateId | null;
20
+
21
+ channels: MessageChannels[] | null;
22
+
23
+ content: unknown;
24
+
25
+ createdAt: Date;
26
+
27
+ deletedAt: Date | null;
28
+
29
+ updatedAt: Date;
30
+ }
31
+
32
+ /** Represents the initializer for the table public.Campaign */
33
+ export interface CampaignInitializer {
34
+ /** Default value: gen_random_uuid() */
35
+ id?: CampaignId;
36
+
37
+ /** Default value: nextval('"Campaign_urlId_seq"'::regclass) */
38
+ urlId?: number;
39
+
40
+ /** Default value: 'DRAFT'::"CampaignStatuses" */
41
+ status?: CampaignStatuses;
42
+
43
+ messageTemplateId?: MessageTemplateId | null;
44
+
45
+ channels?: MessageChannels[] | null;
46
+
47
+ content: unknown;
48
+
49
+ /** Default value: CURRENT_TIMESTAMP */
50
+ createdAt?: Date;
51
+
52
+ deletedAt?: Date | null;
53
+
54
+ /** Default value: CURRENT_TIMESTAMP */
55
+ updatedAt?: Date;
56
+ }
57
+
58
+ /** Represents the mutator for the table public.Campaign */
59
+ export interface CampaignMutator {
60
+ id?: CampaignId;
61
+
62
+ urlId?: number;
63
+
64
+ status?: CampaignStatuses;
65
+
66
+ messageTemplateId?: MessageTemplateId | null;
67
+
68
+ channels?: MessageChannels[] | null;
69
+
70
+ content?: unknown;
71
+
72
+ createdAt?: Date;
73
+
74
+ deletedAt?: Date | null;
75
+
76
+ updatedAt?: Date;
77
+ }
@@ -0,0 +1,10 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ /** Represents the enum public.CampaignStatuses */
5
+ type CampaignStatuses =
6
+ | 'DRAFT'
7
+ | 'CLOSED'
8
+ | 'SENT';
9
+
10
+ export default CampaignStatuses;
@@ -0,0 +1,40 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ import type { CampaignId } from './Campaign';
5
+ import type { PositionId } from './Position';
6
+
7
+ /** Represents the table public.CampaignToPosition */
8
+ export default interface CampaignToPosition {
9
+ campaignId: CampaignId;
10
+
11
+ positionId: PositionId;
12
+
13
+ createdAt: Date;
14
+
15
+ updatedAt: Date;
16
+ }
17
+
18
+ /** Represents the initializer for the table public.CampaignToPosition */
19
+ export interface CampaignToPositionInitializer {
20
+ campaignId: CampaignId;
21
+
22
+ positionId: PositionId;
23
+
24
+ /** Default value: CURRENT_TIMESTAMP */
25
+ createdAt?: Date;
26
+
27
+ /** Default value: CURRENT_TIMESTAMP */
28
+ updatedAt?: Date;
29
+ }
30
+
31
+ /** Represents the mutator for the table public.CampaignToPosition */
32
+ export interface CampaignToPositionMutator {
33
+ campaignId?: CampaignId;
34
+
35
+ positionId?: PositionId;
36
+
37
+ createdAt?: Date;
38
+
39
+ updatedAt?: Date;
40
+ }
@@ -0,0 +1,84 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ import type { default as CandidacyStatuses } from './CandidacyStatuses';
5
+ import type { default as CandidacySources } from './CandidacySources';
6
+ import type { PersonId } from './Person';
7
+ import type { PositionId } from './Position';
8
+
9
+ /** Identifier type for public.Candidacy */
10
+ export type CandidacyId = string & { __brand: 'CandidacyId' };
11
+
12
+ /** Represents the table public.Candidacy */
13
+ export default interface Candidacy {
14
+ id: CandidacyId;
15
+
16
+ currentStatus: CandidacyStatuses | null;
17
+
18
+ rating: number | null;
19
+
20
+ ratingNotes: string | null;
21
+
22
+ source: CandidacySources | null;
23
+
24
+ personId: PersonId;
25
+
26
+ positionId: PositionId;
27
+
28
+ deletedAt: Date | null;
29
+
30
+ createdAt: Date;
31
+
32
+ updatedAt: Date;
33
+ }
34
+
35
+ /** Represents the initializer for the table public.Candidacy */
36
+ export interface CandidacyInitializer {
37
+ /** Default value: gen_random_uuid() */
38
+ id?: CandidacyId;
39
+
40
+ /** Default value: 'SUBMITTED'::"CandidacyStatuses" */
41
+ currentStatus?: CandidacyStatuses | null;
42
+
43
+ rating?: number | null;
44
+
45
+ ratingNotes?: string | null;
46
+
47
+ /** Default value: 'STAFF'::"CandidacySources" */
48
+ source?: CandidacySources | null;
49
+
50
+ personId: PersonId;
51
+
52
+ positionId: PositionId;
53
+
54
+ deletedAt?: Date | null;
55
+
56
+ /** Default value: CURRENT_TIMESTAMP */
57
+ createdAt?: Date;
58
+
59
+ /** Default value: CURRENT_TIMESTAMP */
60
+ updatedAt?: Date;
61
+ }
62
+
63
+ /** Represents the mutator for the table public.Candidacy */
64
+ export interface CandidacyMutator {
65
+ id?: CandidacyId;
66
+
67
+ currentStatus?: CandidacyStatuses | null;
68
+
69
+ rating?: number | null;
70
+
71
+ ratingNotes?: string | null;
72
+
73
+ source?: CandidacySources | null;
74
+
75
+ personId?: PersonId;
76
+
77
+ positionId?: PositionId;
78
+
79
+ deletedAt?: Date | null;
80
+
81
+ createdAt?: Date;
82
+
83
+ updatedAt?: Date;
84
+ }
@@ -0,0 +1,55 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ import type { CandidacyId } from './Candidacy';
5
+
6
+ /** Identifier type for public.CandidacyFeedback */
7
+ export type CandidacyFeedbackId = string & { __brand: 'CandidacyFeedbackId' };
8
+
9
+ /** Represents the table public.CandidacyFeedback */
10
+ export default interface CandidacyFeedback {
11
+ id: CandidacyFeedbackId;
12
+
13
+ candidacyId: CandidacyId;
14
+
15
+ content: string;
16
+
17
+ createdAt: Date;
18
+
19
+ updatedAt: Date;
20
+
21
+ deletedAt: Date | null;
22
+ }
23
+
24
+ /** Represents the initializer for the table public.CandidacyFeedback */
25
+ export interface CandidacyFeedbackInitializer {
26
+ /** Default value: gen_random_uuid() */
27
+ id?: CandidacyFeedbackId;
28
+
29
+ candidacyId: CandidacyId;
30
+
31
+ content: string;
32
+
33
+ /** Default value: CURRENT_TIMESTAMP */
34
+ createdAt?: Date;
35
+
36
+ /** Default value: CURRENT_TIMESTAMP */
37
+ updatedAt?: Date;
38
+
39
+ deletedAt?: Date | null;
40
+ }
41
+
42
+ /** Represents the mutator for the table public.CandidacyFeedback */
43
+ export interface CandidacyFeedbackMutator {
44
+ id?: CandidacyFeedbackId;
45
+
46
+ candidacyId?: CandidacyId;
47
+
48
+ content?: string;
49
+
50
+ createdAt?: Date;
51
+
52
+ updatedAt?: Date;
53
+
54
+ deletedAt?: Date | null;
55
+ }
@@ -0,0 +1,40 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ import type { TagId } from './Tag';
5
+ import type { CandidacyId } from './Candidacy';
6
+
7
+ /** Represents the table public.CandidacyRatingToTag */
8
+ export default interface CandidacyRatingToTag {
9
+ tagId: TagId;
10
+
11
+ candidacyId: CandidacyId;
12
+
13
+ createdAt: Date;
14
+
15
+ updatedAt: Date;
16
+ }
17
+
18
+ /** Represents the initializer for the table public.CandidacyRatingToTag */
19
+ export interface CandidacyRatingToTagInitializer {
20
+ tagId: TagId;
21
+
22
+ candidacyId: CandidacyId;
23
+
24
+ /** Default value: CURRENT_TIMESTAMP */
25
+ createdAt?: Date;
26
+
27
+ /** Default value: CURRENT_TIMESTAMP */
28
+ updatedAt?: Date;
29
+ }
30
+
31
+ /** Represents the mutator for the table public.CandidacyRatingToTag */
32
+ export interface CandidacyRatingToTagMutator {
33
+ tagId?: TagId;
34
+
35
+ candidacyId?: CandidacyId;
36
+
37
+ createdAt?: Date;
38
+
39
+ updatedAt?: Date;
40
+ }
@@ -0,0 +1,11 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ /** Represents the enum public.CandidacySources */
5
+ type CandidacySources =
6
+ | 'STAFF'
7
+ | 'NETWORK'
8
+ | 'WEBSITE'
9
+ | 'INTERNET';
10
+
11
+ export default CandidacySources;
@@ -0,0 +1,14 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ /** Represents the enum public.CandidacyStatuses */
5
+ type CandidacyStatuses =
6
+ | 'SUBMITTED'
7
+ | 'SCREENING'
8
+ | 'INTERVIEWING'
9
+ | 'OFFERED'
10
+ | 'HIRED'
11
+ | 'REJECTED'
12
+ | 'WITHDRAWN';
13
+
14
+ export default CandidacyStatuses;
@@ -0,0 +1,56 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ import type { default as ClientStatuses } from './ClientStatuses';
5
+
6
+ /** Identifier type for public.Client */
7
+ export type ClientId = string & { __brand: 'ClientId' };
8
+
9
+ /** Represents the table public.Client */
10
+ export default interface Client {
11
+ id: ClientId;
12
+
13
+ name: string;
14
+
15
+ description: string;
16
+
17
+ currentStatus: ClientStatuses | null;
18
+
19
+ createdAt: Date;
20
+
21
+ updatedAt: Date;
22
+ }
23
+
24
+ /** Represents the initializer for the table public.Client */
25
+ export interface ClientInitializer {
26
+ /** Default value: gen_random_uuid() */
27
+ id?: ClientId;
28
+
29
+ name: string;
30
+
31
+ description: string;
32
+
33
+ /** Default value: 'ACTIVE'::"ClientStatuses" */
34
+ currentStatus?: ClientStatuses | null;
35
+
36
+ /** Default value: CURRENT_TIMESTAMP */
37
+ createdAt?: Date;
38
+
39
+ /** Default value: CURRENT_TIMESTAMP */
40
+ updatedAt?: Date;
41
+ }
42
+
43
+ /** Represents the mutator for the table public.Client */
44
+ export interface ClientMutator {
45
+ id?: ClientId;
46
+
47
+ name?: string;
48
+
49
+ description?: string;
50
+
51
+ currentStatus?: ClientStatuses | null;
52
+
53
+ createdAt?: Date;
54
+
55
+ updatedAt?: Date;
56
+ }
@@ -0,0 +1,10 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ /** Represents the enum public.ClientStatuses */
5
+ type ClientStatuses =
6
+ | 'LEAD'
7
+ | 'ACTIVE'
8
+ | 'INACTIVE';
9
+
10
+ export default ClientStatuses;
@@ -0,0 +1,62 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ import type { PositionId } from './Position';
5
+ import type { ClientId } from './Client';
6
+
7
+ /** Identifier type for public.Contract */
8
+ export type ContractId = string & { __brand: 'ContractId' };
9
+
10
+ /** Represents the table public.Contract */
11
+ export default interface Contract {
12
+ id: ContractId;
13
+
14
+ data: unknown;
15
+
16
+ documentUrl: string;
17
+
18
+ positionId: PositionId | null;
19
+
20
+ clientId: ClientId;
21
+
22
+ createdAt: Date;
23
+
24
+ updatedAt: Date;
25
+ }
26
+
27
+ /** Represents the initializer for the table public.Contract */
28
+ export interface ContractInitializer {
29
+ /** Default value: gen_random_uuid() */
30
+ id?: ContractId;
31
+
32
+ data: unknown;
33
+
34
+ documentUrl: string;
35
+
36
+ positionId?: PositionId | null;
37
+
38
+ clientId: ClientId;
39
+
40
+ /** Default value: CURRENT_TIMESTAMP */
41
+ createdAt?: Date;
42
+
43
+ /** Default value: CURRENT_TIMESTAMP */
44
+ updatedAt?: Date;
45
+ }
46
+
47
+ /** Represents the mutator for the table public.Contract */
48
+ export interface ContractMutator {
49
+ id?: ContractId;
50
+
51
+ data?: unknown;
52
+
53
+ documentUrl?: string;
54
+
55
+ positionId?: PositionId | null;
56
+
57
+ clientId?: ClientId;
58
+
59
+ createdAt?: Date;
60
+
61
+ updatedAt?: Date;
62
+ }
@@ -0,0 +1,64 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ import type { default as MessageChannels } from './MessageChannels';
5
+ import type { PersonId } from './Person';
6
+ import type { CampaignId } from './Campaign';
7
+
8
+ /** Identifier type for public.Conversation */
9
+ export type ConversationId = string & { __brand: 'ConversationId' };
10
+
11
+ /** Represents the table public.Conversation */
12
+ export default interface Conversation {
13
+ id: ConversationId;
14
+
15
+ urlId: number;
16
+
17
+ channel: MessageChannels;
18
+
19
+ personId: PersonId;
20
+
21
+ campaignId: CampaignId | null;
22
+
23
+ createdAt: Date;
24
+
25
+ updatedAt: Date;
26
+ }
27
+
28
+ /** Represents the initializer for the table public.Conversation */
29
+ export interface ConversationInitializer {
30
+ /** Default value: gen_random_uuid() */
31
+ id?: ConversationId;
32
+
33
+ /** Default value: nextval('"Conversation_urlId_seq"'::regclass) */
34
+ urlId?: number;
35
+
36
+ channel: MessageChannels;
37
+
38
+ personId: PersonId;
39
+
40
+ campaignId?: CampaignId | null;
41
+
42
+ /** Default value: CURRENT_TIMESTAMP */
43
+ createdAt?: Date;
44
+
45
+ /** Default value: CURRENT_TIMESTAMP */
46
+ updatedAt?: Date;
47
+ }
48
+
49
+ /** Represents the mutator for the table public.Conversation */
50
+ export interface ConversationMutator {
51
+ id?: ConversationId;
52
+
53
+ urlId?: number;
54
+
55
+ channel?: MessageChannels;
56
+
57
+ personId?: PersonId;
58
+
59
+ campaignId?: CampaignId | null;
60
+
61
+ createdAt?: Date;
62
+
63
+ updatedAt?: Date;
64
+ }
@@ -0,0 +1,8 @@
1
+ // @generated
2
+ // This file is automatically generated by Kanel. Do not modify manually.
3
+
4
+ /** Represents the enum public.EnrichmentSources */
5
+ type EnrichmentSources =
6
+ | 'PDL';
7
+
8
+ export default EnrichmentSources;