@voyantjs/crm 0.2.0 → 0.3.1
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 +1 -1
- package/dist/routes/index.d.ts +2 -2
- package/dist/routes/opportunities.d.ts +1 -1
- package/dist/schema-accounts.d.ts +1175 -0
- package/dist/schema-accounts.d.ts.map +1 -0
- package/dist/schema-accounts.js +112 -0
- package/dist/schema-activities.d.ts +821 -0
- package/dist/schema-activities.d.ts.map +1 -0
- package/dist/schema-activities.js +83 -0
- package/dist/schema-relations.d.ts +81 -0
- package/dist/schema-relations.d.ts.map +1 -0
- package/dist/schema-relations.js +123 -0
- package/dist/schema-sales.d.ts +1392 -0
- package/dist/schema-sales.d.ts.map +1 -0
- package/dist/schema-sales.js +142 -0
- package/dist/schema-shared.d.ts +13 -0
- package/dist/schema-shared.d.ts.map +1 -0
- package/dist/schema-shared.js +63 -0
- package/dist/schema.d.ts +5 -3477
- package/dist/schema.d.ts.map +1 -1
- package/dist/schema.js +5 -515
- package/dist/service/accounts-organizations.d.ts +93 -0
- package/dist/service/accounts-organizations.d.ts.map +1 -0
- package/dist/service/accounts-organizations.js +49 -0
- package/dist/service/accounts-people.d.ts +868 -0
- package/dist/service/accounts-people.d.ts.map +1 -0
- package/dist/service/accounts-people.js +311 -0
- package/dist/service/accounts-shared.d.ts +54 -0
- package/dist/service/accounts-shared.d.ts.map +1 -0
- package/dist/service/accounts-shared.js +152 -0
- package/dist/service/accounts.d.ts +121 -149
- package/dist/service/accounts.d.ts.map +1 -1
- package/dist/service/accounts.js +4 -507
- package/dist/service/index.d.ts +106 -297
- package/dist/service/index.d.ts.map +1 -1
- package/dist/service/opportunities.d.ts +1 -1
- package/package.json +5 -5
|
@@ -949,10 +949,10 @@ export declare const accountRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
949
949
|
id: string;
|
|
950
950
|
organizationId: string | null;
|
|
951
951
|
personId: string;
|
|
952
|
-
subject: string | null;
|
|
953
952
|
content: string | null;
|
|
954
953
|
channel: "email" | "phone" | "whatsapp" | "sms" | "other" | "meeting";
|
|
955
954
|
direction: "inbound" | "outbound";
|
|
955
|
+
subject: string | null;
|
|
956
956
|
sentAt: string | null;
|
|
957
957
|
};
|
|
958
958
|
};
|
package/dist/routes/index.d.ts
CHANGED
|
@@ -949,10 +949,10 @@ export declare const crmRoutes: import("hono/hono-base").HonoBase<Env, import("h
|
|
|
949
949
|
id: string;
|
|
950
950
|
organizationId: string | null;
|
|
951
951
|
personId: string;
|
|
952
|
-
subject: string | null;
|
|
953
952
|
content: string | null;
|
|
954
953
|
channel: "email" | "phone" | "whatsapp" | "sms" | "other" | "meeting";
|
|
955
954
|
direction: "inbound" | "outbound";
|
|
955
|
+
subject: string | null;
|
|
956
956
|
sentAt: string | null;
|
|
957
957
|
};
|
|
958
958
|
};
|
|
@@ -1530,8 +1530,8 @@ export declare const crmRoutes: import("hono/hono-base").HonoBase<Env, import("h
|
|
|
1530
1530
|
sourceRef: string | null;
|
|
1531
1531
|
tags: string[];
|
|
1532
1532
|
organizationId: string | null;
|
|
1533
|
-
pipelineId: string;
|
|
1534
1533
|
personId: string | null;
|
|
1534
|
+
pipelineId: string;
|
|
1535
1535
|
stageId: string;
|
|
1536
1536
|
valueAmountCents: number | null;
|
|
1537
1537
|
valueCurrency: string | null;
|
|
@@ -55,8 +55,8 @@ export declare const opportunityRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
55
55
|
sourceRef: string | null;
|
|
56
56
|
tags: string[];
|
|
57
57
|
organizationId: string | null;
|
|
58
|
-
pipelineId: string;
|
|
59
58
|
personId: string | null;
|
|
59
|
+
pipelineId: string;
|
|
60
60
|
stageId: string;
|
|
61
61
|
valueAmountCents: number | null;
|
|
62
62
|
valueCurrency: string | null;
|