@elevasis/core 0.28.0 → 0.29.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/index.d.ts +11 -11
- package/dist/knowledge/index.d.ts +1 -1
- package/dist/organization-model/index.d.ts +11 -11
- package/dist/test-utils/index.d.ts +4 -1
- package/package.json +3 -3
- package/src/business/acquisition/api-schemas.test.ts +59 -8
- package/src/business/acquisition/api-schemas.ts +10 -5
- package/src/business/acquisition/build-templates.test.ts +187 -240
- package/src/business/acquisition/build-templates.ts +87 -98
- package/src/business/acquisition/types.ts +390 -389
- package/src/execution/engine/index.ts +6 -4
- package/src/execution/engine/tools/lead-service-types.ts +63 -34
- package/src/execution/engine/tools/platform/acquisition/types.ts +7 -8
- package/src/execution/engine/tools/registry.ts +6 -4
- package/src/execution/engine/tools/tool-maps.ts +23 -1
- package/src/organization-model/domains/prospecting.ts +2 -327
- package/src/organization-model/migration-helpers.ts +16 -12
- package/src/reference/_generated/contracts.md +352 -328
- package/src/supabase/database.types.ts +3 -0
|
@@ -2787,6 +2787,7 @@ export type Database = {
|
|
|
2787
2787
|
title: string | null
|
|
2788
2788
|
updated_at: string
|
|
2789
2789
|
user_id: string
|
|
2790
|
+
visibility: string
|
|
2790
2791
|
}
|
|
2791
2792
|
Insert: {
|
|
2792
2793
|
content: string
|
|
@@ -2801,6 +2802,7 @@ export type Database = {
|
|
|
2801
2802
|
title?: string | null
|
|
2802
2803
|
updated_at?: string
|
|
2803
2804
|
user_id: string
|
|
2805
|
+
visibility?: string
|
|
2804
2806
|
}
|
|
2805
2807
|
Update: {
|
|
2806
2808
|
content?: string
|
|
@@ -2815,6 +2817,7 @@ export type Database = {
|
|
|
2815
2817
|
title?: string | null
|
|
2816
2818
|
updated_at?: string
|
|
2817
2819
|
user_id?: string
|
|
2820
|
+
visibility?: string
|
|
2818
2821
|
}
|
|
2819
2822
|
Relationships: [
|
|
2820
2823
|
{
|