@voyantjs/crm 0.88.0 → 0.90.0
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/routes/accounts.d.ts +4 -4
- package/dist/routes/index.d.ts +4 -4
- package/dist/schema-accounts.d.ts +2 -2
- package/dist/schema-accounts.d.ts.map +1 -1
- package/dist/schema-accounts.js +2 -1
- package/dist/service/accounts-organizations.d.ts +4 -4
- package/dist/service/accounts-organizations.d.ts.map +1 -1
- package/dist/service/accounts-organizations.js +5 -1
- package/dist/service/accounts.d.ts +4 -4
- package/dist/service/index.d.ts +4 -4
- package/dist/validation.d.ts +28 -5
- package/dist/validation.d.ts.map +1 -1
- package/dist/validation.js +15 -3
- package/package.json +7 -7
|
@@ -15,7 +15,7 @@ export declare const accountRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
15
15
|
name: string;
|
|
16
16
|
legalName: string | null;
|
|
17
17
|
website: string | null;
|
|
18
|
-
|
|
18
|
+
taxId: string | null;
|
|
19
19
|
industry: string | null;
|
|
20
20
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
21
21
|
ownerId: string | null;
|
|
@@ -55,7 +55,7 @@ export declare const accountRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
55
55
|
notes: string | null;
|
|
56
56
|
website: string | null;
|
|
57
57
|
legalName: string | null;
|
|
58
|
-
|
|
58
|
+
taxId: string | null;
|
|
59
59
|
industry: string | null;
|
|
60
60
|
ownerId: string | null;
|
|
61
61
|
defaultCurrency: string | null;
|
|
@@ -95,7 +95,7 @@ export declare const accountRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
95
95
|
name: string;
|
|
96
96
|
legalName: string | null;
|
|
97
97
|
website: string | null;
|
|
98
|
-
|
|
98
|
+
taxId: string | null;
|
|
99
99
|
industry: string | null;
|
|
100
100
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
101
101
|
ownerId: string | null;
|
|
@@ -141,7 +141,7 @@ export declare const accountRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
141
141
|
name: string;
|
|
142
142
|
legalName: string | null;
|
|
143
143
|
website: string | null;
|
|
144
|
-
|
|
144
|
+
taxId: string | null;
|
|
145
145
|
industry: string | null;
|
|
146
146
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
147
147
|
ownerId: string | null;
|
package/dist/routes/index.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare const crmRoutes: import("hono/hono-base").HonoBase<Env, import("h
|
|
|
15
15
|
name: string;
|
|
16
16
|
legalName: string | null;
|
|
17
17
|
website: string | null;
|
|
18
|
-
|
|
18
|
+
taxId: string | null;
|
|
19
19
|
industry: string | null;
|
|
20
20
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
21
21
|
ownerId: string | null;
|
|
@@ -55,7 +55,7 @@ export declare const crmRoutes: import("hono/hono-base").HonoBase<Env, import("h
|
|
|
55
55
|
notes: string | null;
|
|
56
56
|
website: string | null;
|
|
57
57
|
legalName: string | null;
|
|
58
|
-
|
|
58
|
+
taxId: string | null;
|
|
59
59
|
industry: string | null;
|
|
60
60
|
ownerId: string | null;
|
|
61
61
|
defaultCurrency: string | null;
|
|
@@ -95,7 +95,7 @@ export declare const crmRoutes: import("hono/hono-base").HonoBase<Env, import("h
|
|
|
95
95
|
name: string;
|
|
96
96
|
legalName: string | null;
|
|
97
97
|
website: string | null;
|
|
98
|
-
|
|
98
|
+
taxId: string | null;
|
|
99
99
|
industry: string | null;
|
|
100
100
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
101
101
|
ownerId: string | null;
|
|
@@ -141,7 +141,7 @@ export declare const crmRoutes: import("hono/hono-base").HonoBase<Env, import("h
|
|
|
141
141
|
name: string;
|
|
142
142
|
legalName: string | null;
|
|
143
143
|
website: string | null;
|
|
144
|
-
|
|
144
|
+
taxId: string | null;
|
|
145
145
|
industry: string | null;
|
|
146
146
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
147
147
|
ownerId: string | null;
|
|
@@ -85,8 +85,8 @@ export declare const organizations: import("drizzle-orm/pg-core").PgTableWithCol
|
|
|
85
85
|
identity: undefined;
|
|
86
86
|
generated: undefined;
|
|
87
87
|
}, {}, {}>;
|
|
88
|
-
|
|
89
|
-
name: "
|
|
88
|
+
taxId: import("drizzle-orm/pg-core").PgColumn<{
|
|
89
|
+
name: "tax_id";
|
|
90
90
|
tableName: "organizations";
|
|
91
91
|
dataType: "string";
|
|
92
92
|
columnType: "PgText";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema-accounts.d.ts","sourceRoot":"","sources":["../src/schema-accounts.ts"],"names":[],"mappings":"AAyBA;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,kGAMjC,CAAA;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,0BAA0B,2KAYrC,CAAA;AAEF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"schema-accounts.d.ts","sourceRoot":"","sources":["../src/schema-accounts.ts"],"names":[],"mappings":"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"}
|
package/dist/schema-accounts.js
CHANGED
|
@@ -41,7 +41,7 @@ export const organizations = pgTable("organizations", {
|
|
|
41
41
|
legalName: text("legal_name"),
|
|
42
42
|
website: text("website"),
|
|
43
43
|
/** Tax / VAT identification number — used for billing + e-invoicing. */
|
|
44
|
-
|
|
44
|
+
taxId: text("tax_id"),
|
|
45
45
|
industry: text("industry"),
|
|
46
46
|
relation: relationTypeEnum("relation"),
|
|
47
47
|
ownerId: text("owner_id"),
|
|
@@ -60,6 +60,7 @@ export const organizations = pgTable("organizations", {
|
|
|
60
60
|
index("idx_organizations_name").on(table.name),
|
|
61
61
|
index("idx_organizations_owner").on(table.ownerId),
|
|
62
62
|
index("idx_organizations_status").on(table.status),
|
|
63
|
+
index("idx_organizations_tax_id").on(table.taxId),
|
|
63
64
|
index("idx_organizations_owner_updated").on(table.ownerId, table.updatedAt),
|
|
64
65
|
index("idx_organizations_relation_updated").on(table.relation, table.updatedAt),
|
|
65
66
|
index("idx_organizations_status_updated").on(table.status, table.updatedAt),
|
|
@@ -7,7 +7,7 @@ export declare const organizationAccountsService: {
|
|
|
7
7
|
name: string;
|
|
8
8
|
legalName: string | null;
|
|
9
9
|
website: string | null;
|
|
10
|
-
|
|
10
|
+
taxId: string | null;
|
|
11
11
|
industry: string | null;
|
|
12
12
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
13
13
|
ownerId: string | null;
|
|
@@ -32,7 +32,7 @@ export declare const organizationAccountsService: {
|
|
|
32
32
|
name: string;
|
|
33
33
|
legalName: string | null;
|
|
34
34
|
website: string | null;
|
|
35
|
-
|
|
35
|
+
taxId: string | null;
|
|
36
36
|
industry: string | null;
|
|
37
37
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
38
38
|
ownerId: string | null;
|
|
@@ -59,7 +59,7 @@ export declare const organizationAccountsService: {
|
|
|
59
59
|
notes: string | null;
|
|
60
60
|
website: string | null;
|
|
61
61
|
legalName: string | null;
|
|
62
|
-
|
|
62
|
+
taxId: string | null;
|
|
63
63
|
industry: string | null;
|
|
64
64
|
ownerId: string | null;
|
|
65
65
|
defaultCurrency: string | null;
|
|
@@ -74,7 +74,7 @@ export declare const organizationAccountsService: {
|
|
|
74
74
|
name: string;
|
|
75
75
|
legalName: string | null;
|
|
76
76
|
website: string | null;
|
|
77
|
-
|
|
77
|
+
taxId: string | null;
|
|
78
78
|
industry: string | null;
|
|
79
79
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
80
80
|
ownerId: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accounts-organizations.d.ts","sourceRoot":"","sources":["../../src/service/accounts-organizations.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAA;AAGjE,OAAO,KAAK,EACV,uBAAuB,EACvB,qBAAqB,EACrB,uBAAuB,EACxB,MAAM,sBAAsB,CAAA;AAG7B,eAAO,MAAM,2BAA2B;0BACV,kBAAkB,SAAS,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"accounts-organizations.d.ts","sourceRoot":"","sources":["../../src/service/accounts-organizations.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAA;AAGjE,OAAO,KAAK,EACV,uBAAuB,EACvB,qBAAqB,EACrB,uBAAuB,EACxB,MAAM,sBAAsB,CAAA;AAG7B,eAAO,MAAM,2BAA2B;0BACV,kBAAkB,SAAS,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;4BAsD9C,kBAAkB,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;2BAK/B,kBAAkB,QAAQ,uBAAuB;;;;;;;;;;;;;;;;;;;;;2BAKjD,kBAAkB,MAAM,MAAM,QAAQ,uBAAuB;;;;;;;;;;;;;;;;;;;;;2BAS7D,kBAAkB,MAAM,MAAM;;;CAO5D,CAAA"}
|
|
@@ -10,7 +10,11 @@ export const organizationAccountsService = {
|
|
|
10
10
|
conditions.push(eq(organizations.relation, query.relation));
|
|
11
11
|
if (query.status)
|
|
12
12
|
conditions.push(eq(organizations.status, query.status));
|
|
13
|
-
if (query.
|
|
13
|
+
if (query.taxId)
|
|
14
|
+
conditions.push(eq(organizations.taxId, query.taxId));
|
|
15
|
+
// Exact tax-id lookup is used for de-duplication; do not let a stale or
|
|
16
|
+
// fuzzy name search hide the matching organization.
|
|
17
|
+
if (query.search && !query.taxId) {
|
|
14
18
|
const term = `%${query.search}%`;
|
|
15
19
|
conditions.push(or(ilike(organizations.name, term), ilike(organizations.legalName, term), ilike(organizations.website, term)));
|
|
16
20
|
}
|
|
@@ -1317,7 +1317,7 @@ export declare const accountsService: {
|
|
|
1317
1317
|
name: string;
|
|
1318
1318
|
legalName: string | null;
|
|
1319
1319
|
website: string | null;
|
|
1320
|
-
|
|
1320
|
+
taxId: string | null;
|
|
1321
1321
|
industry: string | null;
|
|
1322
1322
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
1323
1323
|
ownerId: string | null;
|
|
@@ -1342,7 +1342,7 @@ export declare const accountsService: {
|
|
|
1342
1342
|
name: string;
|
|
1343
1343
|
legalName: string | null;
|
|
1344
1344
|
website: string | null;
|
|
1345
|
-
|
|
1345
|
+
taxId: string | null;
|
|
1346
1346
|
industry: string | null;
|
|
1347
1347
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
1348
1348
|
ownerId: string | null;
|
|
@@ -1369,7 +1369,7 @@ export declare const accountsService: {
|
|
|
1369
1369
|
notes: string | null;
|
|
1370
1370
|
website: string | null;
|
|
1371
1371
|
legalName: string | null;
|
|
1372
|
-
|
|
1372
|
+
taxId: string | null;
|
|
1373
1373
|
industry: string | null;
|
|
1374
1374
|
ownerId: string | null;
|
|
1375
1375
|
defaultCurrency: string | null;
|
|
@@ -1384,7 +1384,7 @@ export declare const accountsService: {
|
|
|
1384
1384
|
name: string;
|
|
1385
1385
|
legalName: string | null;
|
|
1386
1386
|
website: string | null;
|
|
1387
|
-
|
|
1387
|
+
taxId: string | null;
|
|
1388
1388
|
industry: string | null;
|
|
1389
1389
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
1390
1390
|
ownerId: string | null;
|
package/dist/service/index.d.ts
CHANGED
|
@@ -5811,7 +5811,7 @@ export declare const crmService: {
|
|
|
5811
5811
|
name: string;
|
|
5812
5812
|
legalName: string | null;
|
|
5813
5813
|
website: string | null;
|
|
5814
|
-
|
|
5814
|
+
taxId: string | null;
|
|
5815
5815
|
industry: string | null;
|
|
5816
5816
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
5817
5817
|
ownerId: string | null;
|
|
@@ -5836,7 +5836,7 @@ export declare const crmService: {
|
|
|
5836
5836
|
name: string;
|
|
5837
5837
|
legalName: string | null;
|
|
5838
5838
|
website: string | null;
|
|
5839
|
-
|
|
5839
|
+
taxId: string | null;
|
|
5840
5840
|
industry: string | null;
|
|
5841
5841
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
5842
5842
|
ownerId: string | null;
|
|
@@ -5863,7 +5863,7 @@ export declare const crmService: {
|
|
|
5863
5863
|
notes: string | null;
|
|
5864
5864
|
website: string | null;
|
|
5865
5865
|
legalName: string | null;
|
|
5866
|
-
|
|
5866
|
+
taxId: string | null;
|
|
5867
5867
|
industry: string | null;
|
|
5868
5868
|
ownerId: string | null;
|
|
5869
5869
|
defaultCurrency: string | null;
|
|
@@ -5878,7 +5878,7 @@ export declare const crmService: {
|
|
|
5878
5878
|
name: string;
|
|
5879
5879
|
legalName: string | null;
|
|
5880
5880
|
website: string | null;
|
|
5881
|
-
|
|
5881
|
+
taxId: string | null;
|
|
5882
5882
|
industry: string | null;
|
|
5883
5883
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
5884
5884
|
ownerId: string | null;
|
package/dist/validation.d.ts
CHANGED
|
@@ -84,7 +84,7 @@ export declare const organizationCoreSchema: z.ZodObject<{
|
|
|
84
84
|
name: z.ZodString;
|
|
85
85
|
legalName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
86
86
|
website: z.ZodPipe<z.ZodUnion<[z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodLiteral<"">]>, z.ZodTransform<string | null, string | null | undefined>>;
|
|
87
|
-
|
|
87
|
+
taxId: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null | undefined, string | null | undefined>>;
|
|
88
88
|
industry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
89
89
|
relation: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
90
90
|
partner: "partner";
|
|
@@ -110,7 +110,7 @@ export declare const insertOrganizationSchema: z.ZodObject<{
|
|
|
110
110
|
name: z.ZodString;
|
|
111
111
|
legalName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
112
112
|
website: z.ZodPipe<z.ZodUnion<[z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodLiteral<"">]>, z.ZodTransform<string | null, string | null | undefined>>;
|
|
113
|
-
|
|
113
|
+
taxId: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null | undefined, string | null | undefined>>;
|
|
114
114
|
industry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
115
115
|
relation: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
116
116
|
partner: "partner";
|
|
@@ -136,7 +136,7 @@ export declare const updateOrganizationSchema: z.ZodObject<{
|
|
|
136
136
|
name: z.ZodOptional<z.ZodString>;
|
|
137
137
|
legalName: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
138
138
|
website: z.ZodOptional<z.ZodPipe<z.ZodUnion<[z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodLiteral<"">]>, z.ZodTransform<string | null, string | null | undefined>>>;
|
|
139
|
-
|
|
139
|
+
taxId: z.ZodOptional<z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null | undefined, string | null | undefined>>>;
|
|
140
140
|
industry: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
141
141
|
relation: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
142
142
|
partner: "partner";
|
|
@@ -170,7 +170,7 @@ export declare const organizationListSortDirSchema: z.ZodEnum<{
|
|
|
170
170
|
asc: "asc";
|
|
171
171
|
desc: "desc";
|
|
172
172
|
}>;
|
|
173
|
-
export declare const organizationListQuerySchema: z.ZodObject<{
|
|
173
|
+
export declare const organizationListQuerySchema: z.ZodPipe<z.ZodObject<{
|
|
174
174
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
175
175
|
offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
176
176
|
ownerId: z.ZodOptional<z.ZodString>;
|
|
@@ -186,6 +186,8 @@ export declare const organizationListQuerySchema: z.ZodObject<{
|
|
|
186
186
|
archived: "archived";
|
|
187
187
|
}>>;
|
|
188
188
|
search: z.ZodOptional<z.ZodString>;
|
|
189
|
+
taxId: z.ZodOptional<z.ZodString>;
|
|
190
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
189
191
|
sortBy: z.ZodDefault<z.ZodEnum<{
|
|
190
192
|
name: "name";
|
|
191
193
|
status: "status";
|
|
@@ -198,7 +200,28 @@ export declare const organizationListQuerySchema: z.ZodObject<{
|
|
|
198
200
|
asc: "asc";
|
|
199
201
|
desc: "desc";
|
|
200
202
|
}>>;
|
|
201
|
-
}, z.core.$strip
|
|
203
|
+
}, z.core.$strip>, z.ZodTransform<{
|
|
204
|
+
taxId: string | undefined;
|
|
205
|
+
limit: number;
|
|
206
|
+
offset: number;
|
|
207
|
+
sortBy: "name" | "status" | "createdAt" | "relation" | "updatedAt" | "industry";
|
|
208
|
+
sortDir: "asc" | "desc";
|
|
209
|
+
ownerId?: string | undefined;
|
|
210
|
+
relation?: "partner" | "supplier" | "other" | "client" | undefined;
|
|
211
|
+
status?: "active" | "inactive" | "archived" | undefined;
|
|
212
|
+
search?: string | undefined;
|
|
213
|
+
}, {
|
|
214
|
+
limit: number;
|
|
215
|
+
offset: number;
|
|
216
|
+
sortBy: "name" | "status" | "createdAt" | "relation" | "updatedAt" | "industry";
|
|
217
|
+
sortDir: "asc" | "desc";
|
|
218
|
+
ownerId?: string | undefined;
|
|
219
|
+
relation?: "partner" | "supplier" | "other" | "client" | undefined;
|
|
220
|
+
status?: "active" | "inactive" | "archived" | undefined;
|
|
221
|
+
search?: string | undefined;
|
|
222
|
+
taxId?: string | undefined;
|
|
223
|
+
tax_id?: string | undefined;
|
|
224
|
+
}>>;
|
|
202
225
|
export declare const personCoreSchema: z.ZodObject<{
|
|
203
226
|
organizationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
204
227
|
firstName: z.ZodString;
|
package/dist/validation.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../src/validation.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAOvB,eAAO,MAAM,gBAAgB;;;;;;EAM3B,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;EAA6C,CAAA;AAC5E,eAAO,MAAM,kBAAkB;;;;;EAAqD,CAAA;AACpF,eAAO,MAAM,0BAA0B;;;;;;;EAOrC,CAAA;AACF,eAAO,MAAM,4BAA4B;;;EAAkC,CAAA;AAC3E,eAAO,MAAM,uBAAuB;;;;;EAA8C,CAAA;AAClF,eAAO,MAAM,iBAAiB;;;;;;;EAO5B,CAAA;AACF,eAAO,MAAM,kBAAkB;;;;;;;EAAoE,CAAA;AACnG,eAAO,MAAM,oBAAoB;;;;EAA2C,CAAA;AAC5E,eAAO,MAAM,qBAAqB;;;;;;EAMhC,CAAA;AACF,eAAO,MAAM,sBAAsB;;;EAAiC,CAAA;AACpE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;EAYhC,CAAA;
|
|
1
|
+
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../src/validation.ts"],"names":[],"mappings":"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"}
|
package/dist/validation.js
CHANGED
|
@@ -54,6 +54,11 @@ export const customFieldTypeSchema = z.enum([
|
|
|
54
54
|
"address",
|
|
55
55
|
"phone",
|
|
56
56
|
]);
|
|
57
|
+
const nullableTrimmedStringSchema = z
|
|
58
|
+
.string()
|
|
59
|
+
.nullable()
|
|
60
|
+
.optional()
|
|
61
|
+
.transform((value) => (typeof value === "string" ? value.trim() || null : value));
|
|
57
62
|
export const organizationCoreSchema = z.object({
|
|
58
63
|
name: z.string().min(1),
|
|
59
64
|
legalName: z.string().nullable().optional(),
|
|
@@ -64,7 +69,7 @@ export const organizationCoreSchema = z.object({
|
|
|
64
69
|
.optional()
|
|
65
70
|
.or(z.literal(""))
|
|
66
71
|
.transform((v) => v || null),
|
|
67
|
-
|
|
72
|
+
taxId: nullableTrimmedStringSchema,
|
|
68
73
|
industry: z.string().nullable().optional(),
|
|
69
74
|
relation: relationTypeSchema.nullable().optional(),
|
|
70
75
|
ownerId: z.string().nullable().optional(),
|
|
@@ -88,14 +93,21 @@ export const organizationListSortFieldSchema = z.enum([
|
|
|
88
93
|
"updatedAt",
|
|
89
94
|
]);
|
|
90
95
|
export const organizationListSortDirSchema = z.enum(["asc", "desc"]);
|
|
91
|
-
export const organizationListQuerySchema = paginationSchema
|
|
96
|
+
export const organizationListQuerySchema = paginationSchema
|
|
97
|
+
.extend({
|
|
92
98
|
ownerId: z.string().optional(),
|
|
93
99
|
relation: relationTypeSchema.optional(),
|
|
94
100
|
status: recordStatusSchema.optional(),
|
|
95
101
|
search: z.string().optional(),
|
|
102
|
+
taxId: z.string().optional(),
|
|
103
|
+
tax_id: z.string().optional(),
|
|
96
104
|
sortBy: organizationListSortFieldSchema.default("updatedAt"),
|
|
97
105
|
sortDir: organizationListSortDirSchema.default("desc"),
|
|
98
|
-
})
|
|
106
|
+
})
|
|
107
|
+
.transform(({ tax_id: taxIdSnake, ...query }) => ({
|
|
108
|
+
...query,
|
|
109
|
+
taxId: query.taxId?.trim() || taxIdSnake?.trim() || undefined,
|
|
110
|
+
}));
|
|
99
111
|
export const personCoreSchema = z.object({
|
|
100
112
|
organizationId: z.string().nullable().optional(),
|
|
101
113
|
firstName: z.string().min(1),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/crm",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.90.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"drizzle-orm": "^0.45.2",
|
|
40
40
|
"hono": "^4.12.10",
|
|
41
41
|
"zod": "^4.3.6",
|
|
42
|
-
"@voyantjs/action-ledger": "0.
|
|
43
|
-
"@voyantjs/core": "0.
|
|
44
|
-
"@voyantjs/db": "0.
|
|
45
|
-
"@voyantjs/hono": "0.
|
|
46
|
-
"@voyantjs/identity": "0.
|
|
47
|
-
"@voyantjs/utils": "0.
|
|
42
|
+
"@voyantjs/action-ledger": "0.90.0",
|
|
43
|
+
"@voyantjs/core": "0.90.0",
|
|
44
|
+
"@voyantjs/db": "0.90.0",
|
|
45
|
+
"@voyantjs/hono": "0.90.0",
|
|
46
|
+
"@voyantjs/identity": "0.90.0",
|
|
47
|
+
"@voyantjs/utils": "0.90.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"typescript": "^6.0.2",
|