@voyantjs/crm 0.30.3 → 0.30.5
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/service/index.d.ts
CHANGED
|
@@ -916,7 +916,7 @@ export declare const crmService: {
|
|
|
916
916
|
identity: undefined;
|
|
917
917
|
generated: undefined;
|
|
918
918
|
}, {}, {}>;
|
|
919
|
-
}, "single", Record<"person_relationships", "not-null">, false, "where" | "
|
|
919
|
+
}, "single", Record<"person_relationships", "not-null">, false, "where" | "limit" | "orderBy" | "offset", {
|
|
920
920
|
id: string;
|
|
921
921
|
fromPersonId: string;
|
|
922
922
|
toPersonId: string;
|
|
@@ -1136,7 +1136,7 @@ export declare const crmService: {
|
|
|
1136
1136
|
identity: undefined;
|
|
1137
1137
|
generated: undefined;
|
|
1138
1138
|
}, {}, {}>;
|
|
1139
|
-
}>, "where" | "
|
|
1139
|
+
}>, "where" | "limit" | "orderBy" | "offset">;
|
|
1140
1140
|
getPersonRelationship(db: import("drizzle-orm/postgres-js").PostgresJsDatabase, id: string): Promise<{
|
|
1141
1141
|
id: string;
|
|
1142
1142
|
fromPersonId: string;
|
|
@@ -1429,7 +1429,7 @@ export declare const crmService: {
|
|
|
1429
1429
|
identity: undefined;
|
|
1430
1430
|
generated: undefined;
|
|
1431
1431
|
}, {}, {}>;
|
|
1432
|
-
}, "single", Record<"person_documents", "not-null">, false, "where" | "
|
|
1432
|
+
}, "single", Record<"person_documents", "not-null">, false, "where" | "limit" | "orderBy" | "offset", {
|
|
1433
1433
|
id: string;
|
|
1434
1434
|
personId: string;
|
|
1435
1435
|
type: "passport" | "visa" | "other" | "id_card" | "driver_license";
|
|
@@ -1693,7 +1693,7 @@ export declare const crmService: {
|
|
|
1693
1693
|
identity: undefined;
|
|
1694
1694
|
generated: undefined;
|
|
1695
1695
|
}, {}, {}>;
|
|
1696
|
-
}>, "where" | "
|
|
1696
|
+
}>, "where" | "limit" | "orderBy" | "offset">;
|
|
1697
1697
|
getPersonDocument(db: import("drizzle-orm/postgres-js").PostgresJsDatabase, documentId: string): Promise<{
|
|
1698
1698
|
id: string;
|
|
1699
1699
|
personId: string;
|
|
@@ -286,7 +286,7 @@ export declare const personDocumentsService: {
|
|
|
286
286
|
identity: undefined;
|
|
287
287
|
generated: undefined;
|
|
288
288
|
}, {}, {}>;
|
|
289
|
-
}, "single", Record<"person_documents", "not-null">, false, "where" | "
|
|
289
|
+
}, "single", Record<"person_documents", "not-null">, false, "where" | "limit" | "orderBy" | "offset", {
|
|
290
290
|
id: string;
|
|
291
291
|
personId: string;
|
|
292
292
|
type: "passport" | "visa" | "other" | "id_card" | "driver_license";
|
|
@@ -550,7 +550,7 @@ export declare const personDocumentsService: {
|
|
|
550
550
|
identity: undefined;
|
|
551
551
|
generated: undefined;
|
|
552
552
|
}, {}, {}>;
|
|
553
|
-
}>, "where" | "
|
|
553
|
+
}>, "where" | "limit" | "orderBy" | "offset">;
|
|
554
554
|
getPersonDocument(db: PostgresJsDatabase, documentId: string): Promise<{
|
|
555
555
|
id: string;
|
|
556
556
|
personId: string;
|
|
@@ -218,7 +218,7 @@ export declare const personRelationshipsService: {
|
|
|
218
218
|
identity: undefined;
|
|
219
219
|
generated: undefined;
|
|
220
220
|
}, {}, {}>;
|
|
221
|
-
}, "single", Record<"person_relationships", "not-null">, false, "where" | "
|
|
221
|
+
}, "single", Record<"person_relationships", "not-null">, false, "where" | "limit" | "orderBy" | "offset", {
|
|
222
222
|
id: string;
|
|
223
223
|
fromPersonId: string;
|
|
224
224
|
toPersonId: string;
|
|
@@ -438,7 +438,7 @@ export declare const personRelationshipsService: {
|
|
|
438
438
|
identity: undefined;
|
|
439
439
|
generated: undefined;
|
|
440
440
|
}, {}, {}>;
|
|
441
|
-
}>, "where" | "
|
|
441
|
+
}>, "where" | "limit" | "orderBy" | "offset">;
|
|
442
442
|
getPersonRelationship(db: PostgresJsDatabase, id: string): Promise<{
|
|
443
443
|
id: string;
|
|
444
444
|
fromPersonId: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/crm",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.5",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"drizzle-orm": "^0.45.2",
|
|
35
35
|
"hono": "^4.12.10",
|
|
36
36
|
"zod": "^4.3.6",
|
|
37
|
-
"@voyantjs/core": "0.30.
|
|
38
|
-
"@voyantjs/db": "0.30.
|
|
39
|
-
"@voyantjs/hono": "0.30.
|
|
40
|
-
"@voyantjs/identity": "0.30.
|
|
41
|
-
"@voyantjs/utils": "0.30.
|
|
37
|
+
"@voyantjs/core": "0.30.5",
|
|
38
|
+
"@voyantjs/db": "0.30.5",
|
|
39
|
+
"@voyantjs/hono": "0.30.5",
|
|
40
|
+
"@voyantjs/identity": "0.30.5",
|
|
41
|
+
"@voyantjs/utils": "0.30.5"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"typescript": "^6.0.2",
|