@the-inkwell/shared 0.1.132 → 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,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-inkwell/shared",
3
- "version": "0.1.132",
3
+ "version": "0.1.134",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin & Saimon Alam)",
@@ -19,6 +19,7 @@ export type AdminClientResponse = AdminClient
19
19
  export type AdminClientListInput = ListRequest<
20
20
  unknown,
21
21
  {
22
+ isLead?: boolean
22
23
  status?: ClientStatuses[]
23
24
  }
24
25
  >
@@ -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
- }