@elevasis/ui 2.35.0 → 2.36.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/app/index.d.ts +25 -18
- package/dist/app/index.js +2 -2
- package/dist/{chunk-26HFM4MH.js → chunk-F6EFC2MJ.js} +1555 -1903
- package/dist/{chunk-VDOOGGBA.js → chunk-K4UZU3TU.js} +2 -2
- package/dist/{chunk-4U3XAWCN.js → chunk-O2Q4VMRN.js} +134 -495
- package/dist/components/index.d.ts +7 -4
- package/dist/components/index.js +2 -2
- package/dist/components/navigation/index.js +2 -2
- package/dist/execution/index.d.ts +2 -2
- package/dist/features/auth/index.d.ts +3 -0
- package/dist/features/auth/index.js +2 -2
- package/dist/features/clients/index.js +2 -2
- package/dist/features/crm/index.d.ts +3 -0
- package/dist/features/crm/index.js +2 -2
- package/dist/features/dashboard/index.d.ts +3 -3
- package/dist/features/dashboard/index.js +2 -2
- package/dist/features/delivery/index.d.ts +3 -0
- package/dist/features/delivery/index.js +2 -2
- package/dist/features/knowledge/index.js +3 -3
- package/dist/features/lead-gen/index.d.ts +286 -48
- package/dist/features/lead-gen/index.js +2 -2
- package/dist/features/monitoring/index.js +2 -2
- package/dist/features/monitoring/requests/index.js +2 -2
- package/dist/features/operations/index.d.ts +30 -30
- package/dist/features/operations/index.js +2 -2
- package/dist/features/settings/index.d.ts +3 -0
- package/dist/features/settings/index.js +2 -2
- package/dist/hooks/delivery/index.d.ts +3 -0
- package/dist/hooks/delivery/index.js +2 -2
- package/dist/hooks/index.d.ts +29 -16
- package/dist/hooks/index.js +2 -2
- package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +13 -13
- package/dist/hooks/published.d.ts +29 -16
- package/dist/hooks/published.js +2 -2
- package/dist/index.d.ts +51 -34
- package/dist/index.js +2 -2
- package/dist/initialization/index.d.ts +3 -0
- package/dist/knowledge/index.d.ts +21 -21
- package/dist/knowledge/index.js +6 -6
- package/dist/{knowledge-search-index-ORIJCEZX.js → knowledge-search-index-NBCTFIOH.js} +2 -2
- package/dist/organization/index.js +2 -2
- package/dist/profile/index.d.ts +3 -0
- package/dist/provider/index.d.ts +25 -18
- package/dist/provider/index.js +2 -2
- package/dist/provider/published.d.ts +25 -18
- package/dist/provider/published.js +2 -2
- package/dist/sse/index.js +26 -5
- package/dist/supabase/index.d.ts +6 -0
- package/dist/types/index.d.ts +16 -13
- package/dist/utils/index.d.ts +3 -3
- package/package.json +4 -4
|
@@ -145,9 +145,9 @@ declare const SurfaceTypeSchema: z.ZodEnum<{
|
|
|
145
145
|
dashboard: "dashboard";
|
|
146
146
|
settings: "settings";
|
|
147
147
|
graph: "graph";
|
|
148
|
-
list: "list";
|
|
149
148
|
page: "page";
|
|
150
149
|
detail: "detail";
|
|
150
|
+
list: "list";
|
|
151
151
|
}>;
|
|
152
152
|
interface SidebarSurfaceNode {
|
|
153
153
|
type: 'surface';
|
|
@@ -260,12 +260,12 @@ declare const OrgKnowledgeNodeSchema: z.ZodObject<{
|
|
|
260
260
|
kind: z.ZodEnum<{
|
|
261
261
|
knowledge: "knowledge";
|
|
262
262
|
system: "system";
|
|
263
|
+
resource: "resource";
|
|
263
264
|
action: "action";
|
|
264
265
|
ontology: "ontology";
|
|
265
266
|
role: "role";
|
|
266
|
-
goal: "goal";
|
|
267
|
-
resource: "resource";
|
|
268
267
|
stage: "stage";
|
|
268
|
+
goal: "goal";
|
|
269
269
|
"customer-segment": "customer-segment";
|
|
270
270
|
offering: "offering";
|
|
271
271
|
}>;
|
|
@@ -275,7 +275,7 @@ declare const OrgKnowledgeNodeSchema: z.ZodObject<{
|
|
|
275
275
|
nodeId: z.ZodUnion<readonly [z.ZodString, z.ZodTemplateLiteral<`ontology:${string}`>]>;
|
|
276
276
|
}, z.core.$strip>]>, z.ZodTransform<{
|
|
277
277
|
target: {
|
|
278
|
-
kind: "knowledge" | "system" | "
|
|
278
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
279
279
|
id: string;
|
|
280
280
|
};
|
|
281
281
|
nodeId: string;
|
|
@@ -283,7 +283,7 @@ declare const OrgKnowledgeNodeSchema: z.ZodObject<{
|
|
|
283
283
|
nodeId: string;
|
|
284
284
|
} | {
|
|
285
285
|
target: {
|
|
286
|
-
kind: "knowledge" | "system" | "
|
|
286
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
287
287
|
id: string;
|
|
288
288
|
};
|
|
289
289
|
}>>>>;
|
|
@@ -759,8 +759,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
759
759
|
description: z.ZodOptional<z.ZodString>;
|
|
760
760
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
761
761
|
status: z.ZodEnum<{
|
|
762
|
-
deprecated: "deprecated";
|
|
763
762
|
active: "active";
|
|
763
|
+
deprecated: "deprecated";
|
|
764
764
|
archived: "archived";
|
|
765
765
|
}>;
|
|
766
766
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -778,12 +778,12 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
778
778
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
779
779
|
path: z.ZodString;
|
|
780
780
|
role: z.ZodEnum<{
|
|
781
|
-
config: "config";
|
|
782
781
|
entrypoint: "entrypoint";
|
|
783
782
|
handler: "handler";
|
|
784
783
|
schema: "schema";
|
|
785
784
|
test: "test";
|
|
786
785
|
docs: "docs";
|
|
786
|
+
config: "config";
|
|
787
787
|
}>;
|
|
788
788
|
symbol: z.ZodOptional<z.ZodString>;
|
|
789
789
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -794,10 +794,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
794
794
|
label: z.ZodString;
|
|
795
795
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
796
796
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
797
|
+
active: "active";
|
|
797
798
|
deprecated: "deprecated";
|
|
798
799
|
draft: "draft";
|
|
799
800
|
beta: "beta";
|
|
800
|
-
active: "active";
|
|
801
801
|
archived: "archived";
|
|
802
802
|
}>>;
|
|
803
803
|
}, z.core.$strip>>>;
|
|
@@ -809,8 +809,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
809
809
|
description: z.ZodOptional<z.ZodString>;
|
|
810
810
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
811
811
|
status: z.ZodEnum<{
|
|
812
|
-
deprecated: "deprecated";
|
|
813
812
|
active: "active";
|
|
813
|
+
deprecated: "deprecated";
|
|
814
814
|
archived: "archived";
|
|
815
815
|
}>;
|
|
816
816
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -828,12 +828,12 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
828
828
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
829
829
|
path: z.ZodString;
|
|
830
830
|
role: z.ZodEnum<{
|
|
831
|
-
config: "config";
|
|
832
831
|
entrypoint: "entrypoint";
|
|
833
832
|
handler: "handler";
|
|
834
833
|
schema: "schema";
|
|
835
834
|
test: "test";
|
|
836
835
|
docs: "docs";
|
|
836
|
+
config: "config";
|
|
837
837
|
}>;
|
|
838
838
|
symbol: z.ZodOptional<z.ZodString>;
|
|
839
839
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -875,10 +875,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
875
875
|
label: z.ZodString;
|
|
876
876
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
877
877
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
878
|
+
active: "active";
|
|
878
879
|
deprecated: "deprecated";
|
|
879
880
|
draft: "draft";
|
|
880
881
|
beta: "beta";
|
|
881
|
-
active: "active";
|
|
882
882
|
archived: "archived";
|
|
883
883
|
}>>;
|
|
884
884
|
}, z.core.$strip>>>;
|
|
@@ -890,8 +890,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
890
890
|
description: z.ZodOptional<z.ZodString>;
|
|
891
891
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
892
892
|
status: z.ZodEnum<{
|
|
893
|
-
deprecated: "deprecated";
|
|
894
893
|
active: "active";
|
|
894
|
+
deprecated: "deprecated";
|
|
895
895
|
archived: "archived";
|
|
896
896
|
}>;
|
|
897
897
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -909,12 +909,12 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
909
909
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
910
910
|
path: z.ZodString;
|
|
911
911
|
role: z.ZodEnum<{
|
|
912
|
-
config: "config";
|
|
913
912
|
entrypoint: "entrypoint";
|
|
914
913
|
handler: "handler";
|
|
915
914
|
schema: "schema";
|
|
916
915
|
test: "test";
|
|
917
916
|
docs: "docs";
|
|
917
|
+
config: "config";
|
|
918
918
|
}>;
|
|
919
919
|
symbol: z.ZodOptional<z.ZodString>;
|
|
920
920
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -929,8 +929,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
929
929
|
description: z.ZodOptional<z.ZodString>;
|
|
930
930
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
931
931
|
status: z.ZodEnum<{
|
|
932
|
-
deprecated: "deprecated";
|
|
933
932
|
active: "active";
|
|
933
|
+
deprecated: "deprecated";
|
|
934
934
|
archived: "archived";
|
|
935
935
|
}>;
|
|
936
936
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -948,12 +948,12 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
948
948
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
949
949
|
path: z.ZodString;
|
|
950
950
|
role: z.ZodEnum<{
|
|
951
|
-
config: "config";
|
|
952
951
|
entrypoint: "entrypoint";
|
|
953
952
|
handler: "handler";
|
|
954
953
|
schema: "schema";
|
|
955
954
|
test: "test";
|
|
956
955
|
docs: "docs";
|
|
956
|
+
config: "config";
|
|
957
957
|
}>;
|
|
958
958
|
symbol: z.ZodOptional<z.ZodString>;
|
|
959
959
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1067,10 +1067,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1067
1067
|
}, z.core.$strip>], "kind">>>;
|
|
1068
1068
|
knowledge: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
1069
1069
|
lifecycle: z.ZodDefault<z.ZodEnum<{
|
|
1070
|
+
active: "active";
|
|
1070
1071
|
deprecated: "deprecated";
|
|
1071
1072
|
draft: "draft";
|
|
1072
1073
|
beta: "beta";
|
|
1073
|
-
active: "active";
|
|
1074
1074
|
archived: "archived";
|
|
1075
1075
|
}>>;
|
|
1076
1076
|
}, z.core.$strip>>>>;
|
|
@@ -1148,10 +1148,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1148
1148
|
roleIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1149
1149
|
}, z.core.$strip>>;
|
|
1150
1150
|
lifecycle: z.ZodDefault<z.ZodEnum<{
|
|
1151
|
+
active: "active";
|
|
1151
1152
|
deprecated: "deprecated";
|
|
1152
1153
|
draft: "draft";
|
|
1153
1154
|
beta: "beta";
|
|
1154
|
-
active: "active";
|
|
1155
1155
|
archived: "archived";
|
|
1156
1156
|
}>>;
|
|
1157
1157
|
}, z.core.$strip>>>>;
|
|
@@ -1234,12 +1234,12 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1234
1234
|
kind: z.ZodEnum<{
|
|
1235
1235
|
knowledge: "knowledge";
|
|
1236
1236
|
system: "system";
|
|
1237
|
+
resource: "resource";
|
|
1237
1238
|
action: "action";
|
|
1238
1239
|
ontology: "ontology";
|
|
1239
1240
|
role: "role";
|
|
1240
|
-
goal: "goal";
|
|
1241
|
-
resource: "resource";
|
|
1242
1241
|
stage: "stage";
|
|
1242
|
+
goal: "goal";
|
|
1243
1243
|
"customer-segment": "customer-segment";
|
|
1244
1244
|
offering: "offering";
|
|
1245
1245
|
}>;
|
|
@@ -1249,7 +1249,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1249
1249
|
nodeId: z.ZodUnion<readonly [z.ZodString, z.ZodTemplateLiteral<`ontology:${string}`>]>;
|
|
1250
1250
|
}, z.core.$strip>]>, z.ZodTransform<{
|
|
1251
1251
|
target: {
|
|
1252
|
-
kind: "knowledge" | "system" | "
|
|
1252
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1253
1253
|
id: string;
|
|
1254
1254
|
};
|
|
1255
1255
|
nodeId: string;
|
|
@@ -1257,7 +1257,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1257
1257
|
nodeId: string;
|
|
1258
1258
|
} | {
|
|
1259
1259
|
target: {
|
|
1260
|
-
kind: "knowledge" | "system" | "
|
|
1260
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1261
1261
|
id: string;
|
|
1262
1262
|
};
|
|
1263
1263
|
}>>>>;
|
package/dist/knowledge/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { getKnowledgeIconToken, getKnowledgeGraphNodeCommand, getKnowledgeNodeReadCommand, getKnowledgeOntologyProjection, getPrimaryOntologyItemsForDomain, projectNavigationSurfaces, projectNavigationGroups, getOntologyDomainLabel, getKnowledgeDomainFolderCommand, getKnowledgeTreeFolderCommand, KNOWLEDGE_DOMAINS_WITH_PANELS } from '../chunk-
|
|
2
|
-
export { KNOWLEDGE_ICON_TOKEN_BY_KIND, KnowledgeSearchBar, KnowledgeTree, OM_TREE_GROUPS, getKnowledgeIconToken, getSharedOrganizationGraph } from '../chunk-
|
|
3
|
-
import { SemanticIcon, getSystem, SystemEntrySchema, IdentityDomainSchema, WorkflowResourceEntrySchema, AgentResourceEntrySchema, IntegrationResourceEntrySchema, ScriptResourceEntrySchema, SurfaceDefinitionSchema, RoleSchema, PolicySchema, EntitySchema, ActionSchema, OntologyIdSchema, ontologyGraphNodeId, compileOrganizationOntology, parseOntologyId } from '../chunk-
|
|
4
|
-
export { SemanticIcon, extendSemanticIconRegistry, getSemanticIconComponent, resolveSemanticIconComponent } from '../chunk-
|
|
1
|
+
import { getKnowledgeIconToken, getKnowledgeGraphNodeCommand, getKnowledgeNodeReadCommand, getKnowledgeOntologyProjection, getPrimaryOntologyItemsForDomain, projectNavigationSurfaces, projectNavigationGroups, getOntologyDomainLabel, getKnowledgeDomainFolderCommand, getKnowledgeTreeFolderCommand, KNOWLEDGE_DOMAINS_WITH_PANELS } from '../chunk-K4UZU3TU.js';
|
|
2
|
+
export { KNOWLEDGE_ICON_TOKEN_BY_KIND, KnowledgeSearchBar, KnowledgeTree, OM_TREE_GROUPS, getKnowledgeIconToken, getSharedOrganizationGraph } from '../chunk-K4UZU3TU.js';
|
|
3
|
+
import { SemanticIcon, getSystem, SystemEntrySchema, IdentityDomainSchema, WorkflowResourceEntrySchema, AgentResourceEntrySchema, IntegrationResourceEntrySchema, ScriptResourceEntrySchema, SurfaceDefinitionSchema, RoleSchema, PolicySchema, EntitySchema, ActionSchema, OntologyIdSchema, ontologyGraphNodeId, compileOrganizationOntology, parseOntologyId } from '../chunk-O2Q4VMRN.js';
|
|
4
|
+
export { SemanticIcon, extendSemanticIconRegistry, getSemanticIconComponent, resolveSemanticIconComponent } from '../chunk-O2Q4VMRN.js';
|
|
5
5
|
import { PageContainer } from '../chunk-LUYVRATI.js';
|
|
6
6
|
import '../chunk-NYBEU5TE.js';
|
|
7
7
|
import '../chunk-WLOQ4IBG.js';
|
|
@@ -769,7 +769,7 @@ return {
|
|
|
769
769
|
default: MDXContent
|
|
770
770
|
};
|
|
771
771
|
`),
|
|
772
|
-
"knowledge.lead-gen-pipeline-playbook": makeKnowledgeComponent('"use strict";\nconst {Fragment: _Fragment, jsx: _jsx, jsxs: _jsxs} = arguments[0];\nfunction _createMdxContent(props) {\n const _components = {\n h2: "h2",\n h3: "h3",\n li: "li",\n ol: "ol",\n p: "p",\n table: "table",\n tbody: "tbody",\n td: "td",\n th: "th",\n thead: "thead",\n tr: "tr",\n ...props.components\n };\n return _jsxs(_Fragment, {\n children: [_jsx(_components.h2, {\n children: "Performance Benchmarks"\n }), "\\n", _jsx(_components.p, {\n children: "Per-stage success rates across the 3 completed Orange County batches (vet-1, auto-1, home-1)."\n }), "\\n", _jsx(_components.h3, {\n children: "Stage 1: Scrape (Raw to Filtered)"\n }), "\\n", _jsxs(_components.table, {\n children: [_jsx(_components.thead, {\n children: _jsxs(_components.tr, {\n children: [_jsx(_components.th, {\n children: "Metric"\n }), _jsx(_components.th, {\n children: "vet-1"\n }), _jsx(_components.th, {\n children: "auto-1"\n }), _jsx(_components.th, {\n children: "home-1"\n }), _jsx(_components.th, {\n children: "Benchmark"\n })]\n })\n }), _jsxs(_components.tbody, {\n children: [_jsxs(_components.tr, {\n children: [_jsx(_components.td, {\n children: "Raw results"\n }), _jsx(_components.td, {\n children: "480"\n }), _jsx(_components.td, {\n children: "800"\n }), _jsx(_components.td, {\n children: "1000"\n }), _jsx(_components.td, {\n children: "--"\n })]\n }), _jsxs(_components.tr, {\n children: [_jsx(_components.td, {\n children: "Companies created"\n }), _jsx(_components.td, {\n children: "393"\n }), _jsx(_components.td, {\n children: "566"\n }), _jsx(_components.td, {\n children: "701"\n }), _jsx(_components.td, {\n children: "--"\n })]\n }), _jsxs(_components.tr, {\n children: [_jsx(_components.td, {\n children: "Active in DB"\n }), _jsx(_components.td, {\n children: "322"\n }), _jsx(_components.td, {\n children: "428"\n }), _jsx(_components.td, {\n children: "640"\n }), _jsx(_components.td, {\n children: "--"\n })]\n })]\n })]\n }), "\\n", _jsx(_components.h3, {\n children: "Stage 3: Company Qualification Rate"\n }), "\\n", _jsxs(_components.table, {\n children: [_jsx(_components.thead, {\n children: _jsxs(_components.tr, {\n children: [_jsx(_components.th, {\n children: "Metric"\n }), _jsx(_components.th, {\n children: "vet-1"\n }), _jsx(_components.th, {\n children: "auto-1"\n }), _jsx(_components.th, {\n children: "home-1"\n }), _jsx(_components.th, {\n children: "Benchmark"\n })]\n })\n }), _jsxs(_components.tbody, {\n children: [_jsxs(_components.tr, {\n children: [_jsx(_components.td, {\n children: "Qualified"\n }), _jsx(_components.td, {\n children: "213 (76%)"\n }), _jsx(_components.td, {\n children: "284 (79%)"\n }), _jsx(_components.td, {\n children: "326 (60%)"\n }), _jsx(_components.td, {\n children: "60-80%"\n })]\n }), _jsxs(_components.tr, {\n children: [_jsx(_components.td, {\n children: "Disqualified"\n }), _jsx(_components.td, {\n children: "66 (24%)"\n }), _jsx(_components.td, {\n children: "74 (21%)"\n }), _jsx(_components.td, {\n children: "222 (40%)"\n }), _jsx(_components.td, {\n children: "20-40%"\n })]\n })]\n })]\n }), "\\n", _jsx(_components.h3, {\n children: "Stage 5: Email Verification"\n }), "\\n", _jsx(_components.p, {\n children: "VALID rate: ~33-41% of discovered emails across batches. Target bounce rate <2%."\n }), "\\n", _jsx(_components.h2, {\n children: "Model Selection"\n }), "\\n", _jsx(_components.p, {\n children: "Use Gemini Flash models for high-volume qualification steps (cost/quality balance). Use GPT for personalization where quality matters most."\n }), "\\n", _jsx(_components.h2, {\n children: "Provider Economics"\n }), "\\n", _jsx(_components.p, {\n children: "Tomba domain search provides the best cost-per-verified-contact for local SMBs. Dual-verify (Tomba + Mails.so) catches most false positives."\n }), "\\n", _jsx(_components.h2, {\n children: "Pipeline Stages"\n }), "\\n", _jsxs(_components.ol, {\n children: ["\\n", _jsx(_components.li, {\n children: "Scrape (Google Maps via Apify)"\n }), "\\n", _jsx(_components.li, {\n children: "LLM Extract (website crawl \xE2\u2020\u2019 structured data)"\n }), "\\n", _jsx(_components.li, {\n children: "Company Qualification (LLM ICP scoring)"\n }), "\\n", _jsx(_components.li, {\n children: "Email Discovery (Tomba domain search)"\n }), "\\n", _jsx(_components.li, {\n children: "Email Verification (Mails.so)"\n }), "\\n", _jsx(_components.li, {\n children: "Opening Line Generation (ist-personalization-workflow)"\n }), "\\n", _jsx(_components.li, {\n children: "Campaign Upload (ist-upload-workflow)"\n }), "\\n"]\n })]\n });\n}\nfunction MDXContent(props = {}) {\n const {wrapper: MDXLayout} = props.components || ({});\n return MDXLayout ? _jsx(MDXLayout, {\n ...props,\n children: _jsx(_createMdxContent, {\n ...props\n })\n }) : _createMdxContent(props);\n}\nreturn {\n default: MDXContent\n};\n'),
|
|
772
|
+
"knowledge.lead-gen-pipeline-playbook": makeKnowledgeComponent('"use strict";\nconst {Fragment: _Fragment, jsx: _jsx, jsxs: _jsxs} = arguments[0];\nfunction _createMdxContent(props) {\n const _components = {\n h2: "h2",\n h3: "h3",\n li: "li",\n ol: "ol",\n p: "p",\n table: "table",\n tbody: "tbody",\n td: "td",\n th: "th",\n thead: "thead",\n tr: "tr",\n ...props.components\n };\n return _jsxs(_Fragment, {\n children: [_jsx(_components.h2, {\n children: "Performance Benchmarks"\n }), "\\n", _jsx(_components.p, {\n children: "Per-stage success rates across the 3 completed Orange County batches (vet-1, auto-1, home-1)."\n }), "\\n", _jsx(_components.h3, {\n children: "Stage 1: Scrape (Raw to Filtered)"\n }), "\\n", _jsxs(_components.table, {\n children: [_jsx(_components.thead, {\n children: _jsxs(_components.tr, {\n children: [_jsx(_components.th, {\n children: "Metric"\n }), _jsx(_components.th, {\n children: "vet-1"\n }), _jsx(_components.th, {\n children: "auto-1"\n }), _jsx(_components.th, {\n children: "home-1"\n }), _jsx(_components.th, {\n children: "Benchmark"\n })]\n })\n }), _jsxs(_components.tbody, {\n children: [_jsxs(_components.tr, {\n children: [_jsx(_components.td, {\n children: "Raw results"\n }), _jsx(_components.td, {\n children: "480"\n }), _jsx(_components.td, {\n children: "800"\n }), _jsx(_components.td, {\n children: "1000"\n }), _jsx(_components.td, {\n children: "--"\n })]\n }), _jsxs(_components.tr, {\n children: [_jsx(_components.td, {\n children: "Companies created"\n }), _jsx(_components.td, {\n children: "393"\n }), _jsx(_components.td, {\n children: "566"\n }), _jsx(_components.td, {\n children: "701"\n }), _jsx(_components.td, {\n children: "--"\n })]\n }), _jsxs(_components.tr, {\n children: [_jsx(_components.td, {\n children: "Active in DB"\n }), _jsx(_components.td, {\n children: "322"\n }), _jsx(_components.td, {\n children: "428"\n }), _jsx(_components.td, {\n children: "640"\n }), _jsx(_components.td, {\n children: "--"\n })]\n })]\n })]\n }), "\\n", _jsx(_components.h3, {\n children: "Stage 3: Company Qualification Rate"\n }), "\\n", _jsxs(_components.table, {\n children: [_jsx(_components.thead, {\n children: _jsxs(_components.tr, {\n children: [_jsx(_components.th, {\n children: "Metric"\n }), _jsx(_components.th, {\n children: "vet-1"\n }), _jsx(_components.th, {\n children: "auto-1"\n }), _jsx(_components.th, {\n children: "home-1"\n }), _jsx(_components.th, {\n children: "Benchmark"\n })]\n })\n }), _jsxs(_components.tbody, {\n children: [_jsxs(_components.tr, {\n children: [_jsx(_components.td, {\n children: "Qualified"\n }), _jsx(_components.td, {\n children: "213 (76%)"\n }), _jsx(_components.td, {\n children: "284 (79%)"\n }), _jsx(_components.td, {\n children: "326 (60%)"\n }), _jsx(_components.td, {\n children: "60-80%"\n })]\n }), _jsxs(_components.tr, {\n children: [_jsx(_components.td, {\n children: "Disqualified"\n }), _jsx(_components.td, {\n children: "66 (24%)"\n }), _jsx(_components.td, {\n children: "74 (21%)"\n }), _jsx(_components.td, {\n children: "222 (40%)"\n }), _jsx(_components.td, {\n children: "20-40%"\n })]\n })]\n })]\n }), "\\n", _jsx(_components.h3, {\n children: "Stage 5: Email Verification"\n }), "\\n", _jsx(_components.p, {\n children: "VALID rate: ~33-41% of discovered emails across batches. Target bounce rate <2%."\n }), "\\n", _jsx(_components.h2, {\n children: "Model Selection"\n }), "\\n", _jsx(_components.p, {\n children: "Use Gemini Flash models for high-volume qualification steps (cost/quality balance). Use GPT for personalization where quality matters most."\n }), "\\n", _jsx(_components.h2, {\n children: "Provider Economics"\n }), "\\n", _jsx(_components.p, {\n children: "Tomba domain search provides the best cost-per-verified-contact for local SMBs. Dual-verify (Tomba + Mails.so) catches most false positives."\n }), "\\n", _jsx(_components.h2, {\n children: "Pipeline Stages"\n }), "\\n", _jsxs(_components.ol, {\n children: ["\\n", _jsx(_components.li, {\n children: "Scrape (Google Maps via Apify)"\n }), "\\n", _jsx(_components.li, {\n children: "LLM Extract (website crawl \xE2\u2020\u2019 structured data)"\n }), "\\n", _jsx(_components.li, {\n children: "Company Qualification (LLM ICP scoring)"\n }), "\\n", _jsx(_components.li, {\n children: "Email Discovery (Tomba domain search)"\n }), "\\n", _jsx(_components.li, {\n children: "Email Verification (Mails.so)"\n }), "\\n", _jsx(_components.li, {\n children: "Opening Line Generation (ist-personalization-workflow)"\n }), "\\n", _jsx(_components.li, {\n children: "Campaign Upload (ist-upload-contacts-workflow)"\n }), "\\n"]\n })]\n });\n}\nfunction MDXContent(props = {}) {\n const {wrapper: MDXLayout} = props.components || ({});\n return MDXLayout ? _jsx(MDXLayout, {\n ...props,\n children: _jsx(_createMdxContent, {\n ...props\n })\n }) : _createMdxContent(props);\n}\nreturn {\n default: MDXContent\n};\n'),
|
|
773
773
|
"knowledge.upwork-proposal-playbook": makeKnowledgeComponent(`"use strict";
|
|
774
774
|
const {Fragment: _Fragment, jsx: _jsx, jsxs: _jsxs} = arguments[0];
|
|
775
775
|
function _createMdxContent(props) {
|
|
@@ -1934,7 +1934,7 @@ function _createMdxContent(props) {
|
|
|
1934
1934
|
}), "."]
|
|
1935
1935
|
}), "\\n", _jsxs(_components.li, {
|
|
1936
1936
|
children: ["Upload contacts with ", _jsx(_components.code, {
|
|
1937
|
-
children: "ist-upload-workflow"
|
|
1937
|
+
children: "ist-upload-contacts-workflow"
|
|
1938
1938
|
}), ", dry run first and then real."]
|
|
1939
1939
|
}), "\\n", _jsxs(_components.li, {
|
|
1940
1940
|
children: ["Activate with ", _jsx(_components.code, {
|
|
@@ -277,7 +277,7 @@ Log bounce count, leads cleaned, root cause, and resolution in the batch tracker
|
|
|
277
277
|
id: "knowledge.lead-gen-pipeline-playbook",
|
|
278
278
|
title: "Lead-Gen Playbook",
|
|
279
279
|
summary: "Empirical benchmarks, threshold guidance, provider economics, and codified learnings from 3 completed batches of the lead-gen pipeline.",
|
|
280
|
-
bodyText: "Performance Benchmarks\n\nPer-stage success rates across the 3 completed Orange County batches (vet-1, auto-1, home-1).\n\nStage 1: Scrape (Raw to Filtered)\n\n| Metric | vet-1 | auto-1 | home-1 | Benchmark |\n| --- | --- | --- | --- | --- |\n| Raw results | 480 | 800 | 1000 | -- |\n| Companies created | 393 | 566 | 701 | -- |\n| Active in DB | 322 | 428 | 640 | -- |\n\nStage 3: Company Qualification Rate\n\n| Metric | vet-1 | auto-1 | home-1 | Benchmark |\n| --- | --- | --- | --- | --- |\n| Qualified | 213 (76%) | 284 (79%) | 326 (60%) | 60-80% |\n| Disqualified | 66 (24%) | 74 (21%) | 222 (40%) | 20-40% |\n\nStage 5: Email Verification\n\nVALID rate: 33-41% of discovered emails across batches. Target bounce rate \\<2%.\n\nModel Selection\n\nUse Gemini Flash models for high-volume qualification steps (cost/quality balance). Use GPT for personalization where quality matters most.\n\nProvider Economics\n\nTomba domain search provides the best cost-per-verified-contact for local SMBs. Dual-verify (Tomba + Mails.so) catches most false positives.\n\nPipeline Stages\n\n1. Scrape (Google Maps via Apify)\n2. LLM Extract (website crawl \xE2\u2020\u2019 structured data)\n3. Company Qualification (LLM ICP scoring)\n4. Email Discovery (Tomba domain search)\n5. Email Verification (Mails.so)\n6. Opening Line Generation (ist-personalization-workflow)\n7. Campaign Upload (ist-upload-workflow)"
|
|
280
|
+
bodyText: "Performance Benchmarks\n\nPer-stage success rates across the 3 completed Orange County batches (vet-1, auto-1, home-1).\n\nStage 1: Scrape (Raw to Filtered)\n\n| Metric | vet-1 | auto-1 | home-1 | Benchmark |\n| --- | --- | --- | --- | --- |\n| Raw results | 480 | 800 | 1000 | -- |\n| Companies created | 393 | 566 | 701 | -- |\n| Active in DB | 322 | 428 | 640 | -- |\n\nStage 3: Company Qualification Rate\n\n| Metric | vet-1 | auto-1 | home-1 | Benchmark |\n| --- | --- | --- | --- | --- |\n| Qualified | 213 (76%) | 284 (79%) | 326 (60%) | 60-80% |\n| Disqualified | 66 (24%) | 74 (21%) | 222 (40%) | 20-40% |\n\nStage 5: Email Verification\n\nVALID rate: 33-41% of discovered emails across batches. Target bounce rate \\<2%.\n\nModel Selection\n\nUse Gemini Flash models for high-volume qualification steps (cost/quality balance). Use GPT for personalization where quality matters most.\n\nProvider Economics\n\nTomba domain search provides the best cost-per-verified-contact for local SMBs. Dual-verify (Tomba + Mails.so) catches most false positives.\n\nPipeline Stages\n\n1. Scrape (Google Maps via Apify)\n2. LLM Extract (website crawl \xE2\u2020\u2019 structured data)\n3. Company Qualification (LLM ICP scoring)\n4. Email Discovery (Tomba domain search)\n5. Email Verification (Mails.so)\n6. Opening Line Generation (ist-personalization-workflow)\n7. Campaign Upload (ist-upload-contacts-workflow)"
|
|
281
281
|
},
|
|
282
282
|
{
|
|
283
283
|
id: "knowledge.upwork-proposal-playbook",
|
|
@@ -829,7 +829,7 @@ Use the acquisition outreach workflow to move a ready batch into Instantly:
|
|
|
829
829
|
2. Personalize contacts with ist-personalization-workflow.
|
|
830
830
|
3. Create a draft campaign with ist-campaign-create-workflow and activate: false.
|
|
831
831
|
4. Create the tracking list with ist-campaign-list-workflow.
|
|
832
|
-
5. Upload contacts with ist-upload-workflow, dry run first and then real.
|
|
832
|
+
5. Upload contacts with ist-upload-contacts-workflow, dry run first and then real.
|
|
833
833
|
6. Activate with ist-campaign-activate-workflow.
|
|
834
834
|
7. Update the tracker to status: active and fill in campaign metadata.
|
|
835
835
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations } from '../chunk-
|
|
1
|
+
export { OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations } from '../chunk-F6EFC2MJ.js';
|
|
2
2
|
import '../chunk-CXY7FMUM.js';
|
|
3
3
|
import '../chunk-SIQ3P4OR.js';
|
|
4
4
|
import '../chunk-3KMDHCAR.js';
|
|
@@ -8,7 +8,7 @@ import '../chunk-ZTWA5H77.js';
|
|
|
8
8
|
import '../chunk-AUDNF2Q7.js';
|
|
9
9
|
import '../chunk-6M6OLGQY.js';
|
|
10
10
|
import '../chunk-BRXELOHC.js';
|
|
11
|
-
import '../chunk-
|
|
11
|
+
import '../chunk-O2Q4VMRN.js';
|
|
12
12
|
import '../chunk-LUYVRATI.js';
|
|
13
13
|
import '../chunk-NYBEU5TE.js';
|
|
14
14
|
import '../chunk-WLOQ4IBG.js';
|
package/dist/profile/index.d.ts
CHANGED
|
@@ -2783,6 +2783,7 @@ type Database = {
|
|
|
2783
2783
|
title: string | null;
|
|
2784
2784
|
updated_at: string;
|
|
2785
2785
|
user_id: string;
|
|
2786
|
+
visibility: string;
|
|
2786
2787
|
};
|
|
2787
2788
|
Insert: {
|
|
2788
2789
|
content: string;
|
|
@@ -2797,6 +2798,7 @@ type Database = {
|
|
|
2797
2798
|
title?: string | null;
|
|
2798
2799
|
updated_at?: string;
|
|
2799
2800
|
user_id: string;
|
|
2801
|
+
visibility?: string;
|
|
2800
2802
|
};
|
|
2801
2803
|
Update: {
|
|
2802
2804
|
content?: string;
|
|
@@ -2811,6 +2813,7 @@ type Database = {
|
|
|
2811
2813
|
title?: string | null;
|
|
2812
2814
|
updated_at?: string;
|
|
2813
2815
|
user_id?: string;
|
|
2816
|
+
visibility?: string;
|
|
2814
2817
|
};
|
|
2815
2818
|
Relationships: [
|
|
2816
2819
|
{
|
package/dist/provider/index.d.ts
CHANGED
|
@@ -2885,6 +2885,7 @@ type Database = {
|
|
|
2885
2885
|
title: string | null;
|
|
2886
2886
|
updated_at: string;
|
|
2887
2887
|
user_id: string;
|
|
2888
|
+
visibility: string;
|
|
2888
2889
|
};
|
|
2889
2890
|
Insert: {
|
|
2890
2891
|
content: string;
|
|
@@ -2899,6 +2900,7 @@ type Database = {
|
|
|
2899
2900
|
title?: string | null;
|
|
2900
2901
|
updated_at?: string;
|
|
2901
2902
|
user_id: string;
|
|
2903
|
+
visibility?: string;
|
|
2902
2904
|
};
|
|
2903
2905
|
Update: {
|
|
2904
2906
|
content?: string;
|
|
@@ -2913,6 +2915,7 @@ type Database = {
|
|
|
2913
2915
|
title?: string | null;
|
|
2914
2916
|
updated_at?: string;
|
|
2915
2917
|
user_id?: string;
|
|
2918
|
+
visibility?: string;
|
|
2916
2919
|
};
|
|
2917
2920
|
Relationships: [
|
|
2918
2921
|
{
|
|
@@ -3310,6 +3313,10 @@ declare const AcqListResponseSchema: z$1.ZodObject<{
|
|
|
3310
3313
|
enabled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3311
3314
|
order: z$1.ZodOptional<z$1.ZodNumber>;
|
|
3312
3315
|
}, z$1.core.$strip>>>;
|
|
3316
|
+
dataMode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3317
|
+
mock: "mock";
|
|
3318
|
+
live: "live";
|
|
3319
|
+
}>>;
|
|
3313
3320
|
}, z$1.core.$strip>;
|
|
3314
3321
|
}, z$1.core.$strip>;
|
|
3315
3322
|
type AcqListResponse = z$1.infer<typeof AcqListResponseSchema>;
|
|
@@ -3468,9 +3475,9 @@ declare const SurfaceTypeSchema: z$1.ZodEnum<{
|
|
|
3468
3475
|
dashboard: "dashboard";
|
|
3469
3476
|
settings: "settings";
|
|
3470
3477
|
graph: "graph";
|
|
3471
|
-
list: "list";
|
|
3472
3478
|
page: "page";
|
|
3473
3479
|
detail: "detail";
|
|
3480
|
+
list: "list";
|
|
3474
3481
|
}>;
|
|
3475
3482
|
interface SidebarSurfaceNode {
|
|
3476
3483
|
type: 'surface';
|
|
@@ -3903,8 +3910,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3903
3910
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3904
3911
|
ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
|
|
3905
3912
|
status: z$1.ZodEnum<{
|
|
3906
|
-
deprecated: "deprecated";
|
|
3907
3913
|
active: "active";
|
|
3914
|
+
deprecated: "deprecated";
|
|
3908
3915
|
archived: "archived";
|
|
3909
3916
|
}>;
|
|
3910
3917
|
ontology: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -3922,12 +3929,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3922
3929
|
codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3923
3930
|
path: z$1.ZodString;
|
|
3924
3931
|
role: z$1.ZodEnum<{
|
|
3925
|
-
config: "config";
|
|
3926
3932
|
entrypoint: "entrypoint";
|
|
3927
3933
|
handler: "handler";
|
|
3928
3934
|
schema: "schema";
|
|
3929
3935
|
test: "test";
|
|
3930
3936
|
docs: "docs";
|
|
3937
|
+
config: "config";
|
|
3931
3938
|
}>;
|
|
3932
3939
|
symbol: z$1.ZodOptional<z$1.ZodString>;
|
|
3933
3940
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -3938,10 +3945,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3938
3945
|
label: z$1.ZodString;
|
|
3939
3946
|
payloadSchema: z$1.ZodOptional<z$1.ZodString>;
|
|
3940
3947
|
lifecycle: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3948
|
+
active: "active";
|
|
3941
3949
|
deprecated: "deprecated";
|
|
3942
3950
|
draft: "draft";
|
|
3943
3951
|
beta: "beta";
|
|
3944
|
-
active: "active";
|
|
3945
3952
|
archived: "archived";
|
|
3946
3953
|
}>>;
|
|
3947
3954
|
}, z$1.core.$strip>>>;
|
|
@@ -3953,8 +3960,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3953
3960
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3954
3961
|
ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
|
|
3955
3962
|
status: z$1.ZodEnum<{
|
|
3956
|
-
deprecated: "deprecated";
|
|
3957
3963
|
active: "active";
|
|
3964
|
+
deprecated: "deprecated";
|
|
3958
3965
|
archived: "archived";
|
|
3959
3966
|
}>;
|
|
3960
3967
|
ontology: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -3972,12 +3979,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3972
3979
|
codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3973
3980
|
path: z$1.ZodString;
|
|
3974
3981
|
role: z$1.ZodEnum<{
|
|
3975
|
-
config: "config";
|
|
3976
3982
|
entrypoint: "entrypoint";
|
|
3977
3983
|
handler: "handler";
|
|
3978
3984
|
schema: "schema";
|
|
3979
3985
|
test: "test";
|
|
3980
3986
|
docs: "docs";
|
|
3987
|
+
config: "config";
|
|
3981
3988
|
}>;
|
|
3982
3989
|
symbol: z$1.ZodOptional<z$1.ZodString>;
|
|
3983
3990
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -4019,10 +4026,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4019
4026
|
label: z$1.ZodString;
|
|
4020
4027
|
payloadSchema: z$1.ZodOptional<z$1.ZodString>;
|
|
4021
4028
|
lifecycle: z$1.ZodOptional<z$1.ZodEnum<{
|
|
4029
|
+
active: "active";
|
|
4022
4030
|
deprecated: "deprecated";
|
|
4023
4031
|
draft: "draft";
|
|
4024
4032
|
beta: "beta";
|
|
4025
|
-
active: "active";
|
|
4026
4033
|
archived: "archived";
|
|
4027
4034
|
}>>;
|
|
4028
4035
|
}, z$1.core.$strip>>>;
|
|
@@ -4034,8 +4041,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4034
4041
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
4035
4042
|
ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
|
|
4036
4043
|
status: z$1.ZodEnum<{
|
|
4037
|
-
deprecated: "deprecated";
|
|
4038
4044
|
active: "active";
|
|
4045
|
+
deprecated: "deprecated";
|
|
4039
4046
|
archived: "archived";
|
|
4040
4047
|
}>;
|
|
4041
4048
|
ontology: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -4053,12 +4060,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4053
4060
|
codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
4054
4061
|
path: z$1.ZodString;
|
|
4055
4062
|
role: z$1.ZodEnum<{
|
|
4056
|
-
config: "config";
|
|
4057
4063
|
entrypoint: "entrypoint";
|
|
4058
4064
|
handler: "handler";
|
|
4059
4065
|
schema: "schema";
|
|
4060
4066
|
test: "test";
|
|
4061
4067
|
docs: "docs";
|
|
4068
|
+
config: "config";
|
|
4062
4069
|
}>;
|
|
4063
4070
|
symbol: z$1.ZodOptional<z$1.ZodString>;
|
|
4064
4071
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -4073,8 +4080,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4073
4080
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
4074
4081
|
ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
|
|
4075
4082
|
status: z$1.ZodEnum<{
|
|
4076
|
-
deprecated: "deprecated";
|
|
4077
4083
|
active: "active";
|
|
4084
|
+
deprecated: "deprecated";
|
|
4078
4085
|
archived: "archived";
|
|
4079
4086
|
}>;
|
|
4080
4087
|
ontology: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -4092,12 +4099,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4092
4099
|
codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
4093
4100
|
path: z$1.ZodString;
|
|
4094
4101
|
role: z$1.ZodEnum<{
|
|
4095
|
-
config: "config";
|
|
4096
4102
|
entrypoint: "entrypoint";
|
|
4097
4103
|
handler: "handler";
|
|
4098
4104
|
schema: "schema";
|
|
4099
4105
|
test: "test";
|
|
4100
4106
|
docs: "docs";
|
|
4107
|
+
config: "config";
|
|
4101
4108
|
}>;
|
|
4102
4109
|
symbol: z$1.ZodOptional<z$1.ZodString>;
|
|
4103
4110
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -4211,10 +4218,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4211
4218
|
}, z$1.core.$strip>], "kind">>>;
|
|
4212
4219
|
knowledge: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>>;
|
|
4213
4220
|
lifecycle: z$1.ZodDefault<z$1.ZodEnum<{
|
|
4221
|
+
active: "active";
|
|
4214
4222
|
deprecated: "deprecated";
|
|
4215
4223
|
draft: "draft";
|
|
4216
4224
|
beta: "beta";
|
|
4217
|
-
active: "active";
|
|
4218
4225
|
archived: "archived";
|
|
4219
4226
|
}>>;
|
|
4220
4227
|
}, z$1.core.$strip>>>>;
|
|
@@ -4292,10 +4299,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4292
4299
|
roleIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
4293
4300
|
}, z$1.core.$strip>>;
|
|
4294
4301
|
lifecycle: z$1.ZodDefault<z$1.ZodEnum<{
|
|
4302
|
+
active: "active";
|
|
4295
4303
|
deprecated: "deprecated";
|
|
4296
4304
|
draft: "draft";
|
|
4297
4305
|
beta: "beta";
|
|
4298
|
-
active: "active";
|
|
4299
4306
|
archived: "archived";
|
|
4300
4307
|
}>>;
|
|
4301
4308
|
}, z$1.core.$strip>>>>;
|
|
@@ -4378,12 +4385,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4378
4385
|
kind: z$1.ZodEnum<{
|
|
4379
4386
|
knowledge: "knowledge";
|
|
4380
4387
|
system: "system";
|
|
4388
|
+
resource: "resource";
|
|
4381
4389
|
action: "action";
|
|
4382
4390
|
ontology: "ontology";
|
|
4383
4391
|
role: "role";
|
|
4384
|
-
goal: "goal";
|
|
4385
|
-
resource: "resource";
|
|
4386
4392
|
stage: "stage";
|
|
4393
|
+
goal: "goal";
|
|
4387
4394
|
"customer-segment": "customer-segment";
|
|
4388
4395
|
offering: "offering";
|
|
4389
4396
|
}>;
|
|
@@ -4393,7 +4400,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4393
4400
|
nodeId: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodTemplateLiteral<`ontology:${string}`>]>;
|
|
4394
4401
|
}, z$1.core.$strip>]>, z$1.ZodTransform<{
|
|
4395
4402
|
target: {
|
|
4396
|
-
kind: "knowledge" | "system" | "
|
|
4403
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
4397
4404
|
id: string;
|
|
4398
4405
|
};
|
|
4399
4406
|
nodeId: string;
|
|
@@ -4401,7 +4408,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4401
4408
|
nodeId: string;
|
|
4402
4409
|
} | {
|
|
4403
4410
|
target: {
|
|
4404
|
-
kind: "knowledge" | "system" | "
|
|
4411
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
4405
4412
|
id: string;
|
|
4406
4413
|
};
|
|
4407
4414
|
}>>>>;
|
|
@@ -4428,7 +4435,7 @@ type FieldPath<T> = T extends object ? {
|
|
|
4428
4435
|
[K in keyof T & string]: T[K] extends ReadonlyArray<unknown> | unknown[] ? K : T[K] extends object | undefined ? K | `${K}.${FieldPath<NonNullable<T[K]>>}` : K;
|
|
4429
4436
|
}[keyof T & string] : never;
|
|
4430
4437
|
/** Discriminated string union of supported Mantine components. */
|
|
4431
|
-
type StepConfigComponent = 'segmented' | 'tags' | 'multiselect' | 'select' | 'textinput' | 'textarea' | 'numberinput' | 'switch' | 'json';
|
|
4438
|
+
type StepConfigComponent = 'checkboxgroup' | 'segmented' | 'tags' | 'multiselect' | 'select' | 'textinput' | 'textarea' | 'numberinput' | 'switch' | 'json';
|
|
4432
4439
|
/** Rendering hint for a single field within a section. */
|
|
4433
4440
|
interface StepConfigFieldHint<T> {
|
|
4434
4441
|
/** Typed dotted path into T — typo = TS error. */
|
package/dist/provider/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { CrmActionsProvider, ElevasisCoreProvider, ElevasisSystemsProvider, ElevasisUIProvider, ListActionsProvider, NotificationProvider, SystemShell, createTestSystemsProvider, useCrmActions, useElevasisSystems, useListActions, useNotificationAdapter, useOptionalElevasisSystems, useResolvedOrganizationModel } from '../chunk-
|
|
1
|
+
export { CrmActionsProvider, ElevasisCoreProvider, ElevasisSystemsProvider, ElevasisUIProvider, ListActionsProvider, NotificationProvider, SystemShell, createTestSystemsProvider, useCrmActions, useElevasisSystems, useListActions, useNotificationAdapter, useOptionalElevasisSystems, useResolvedOrganizationModel } from '../chunk-F6EFC2MJ.js';
|
|
2
2
|
import '../chunk-CXY7FMUM.js';
|
|
3
3
|
import '../chunk-SIQ3P4OR.js';
|
|
4
4
|
import '../chunk-3KMDHCAR.js';
|
|
@@ -8,7 +8,7 @@ import '../chunk-ZTWA5H77.js';
|
|
|
8
8
|
import '../chunk-AUDNF2Q7.js';
|
|
9
9
|
import '../chunk-6M6OLGQY.js';
|
|
10
10
|
import '../chunk-BRXELOHC.js';
|
|
11
|
-
import '../chunk-
|
|
11
|
+
import '../chunk-O2Q4VMRN.js';
|
|
12
12
|
export { AppearanceProvider, useAppearance } from '../chunk-LUYVRATI.js';
|
|
13
13
|
import '../chunk-NYBEU5TE.js';
|
|
14
14
|
import '../chunk-WLOQ4IBG.js';
|