@elevasis/ui 2.25.4 → 2.25.6
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.css +2 -6
- package/dist/app/index.d.ts +63 -56
- package/dist/app/index.js +3 -2
- package/dist/charts/index.js +1 -1
- package/dist/chunk-5RLYII6P.js +314 -0
- package/dist/chunk-6U7AIIHF.js +880 -0
- package/dist/{chunk-5O5VC4HB.js → chunk-7F3IQMLI.js} +1 -1
- package/dist/{chunk-ZBRRVDYJ.js → chunk-ARJPZ66V.js} +42 -760
- package/dist/{chunk-IS53MXE4.js → chunk-BDKM56TP.js} +1 -1
- package/dist/{chunk-FVXM2MN6.js → chunk-C7IBFI5B.js} +1 -1
- package/dist/{chunk-DUUH3CHC.js → chunk-CPAJXBTL.js} +10 -6
- package/dist/{chunk-3FBCFSDF.js → chunk-ECNNI3NT.js} +2 -1
- package/dist/chunk-HAEJ4M54.js +94 -0
- package/dist/{chunk-7RPH2VXV.js → chunk-JXSBOG2R.js} +1 -1
- package/dist/{chunk-E7WTCAVX.js → chunk-KNISO652.js} +2 -2
- package/dist/{chunk-5PLAJ6IS.js → chunk-L7D6KNHV.js} +457 -335
- package/dist/{chunk-JMI7L7Y7.js → chunk-LPM7O6XM.js} +2 -233
- package/dist/{chunk-2XWXFT2Z.js → chunk-QARSVM7Q.js} +1 -1
- package/dist/{chunk-FYT6LYJP.js → chunk-SBQ4MYQV.js} +3 -2
- package/dist/{chunk-MU4VPAMR.js → chunk-YRKQNPK2.js} +1 -1
- package/dist/components/index.css +2 -6
- package/dist/components/index.d.ts +11 -2
- package/dist/components/index.js +25 -23
- package/dist/components/navigation/index.css +2 -6
- package/dist/features/auth/index.css +2 -6
- package/dist/features/crm/index.css +2 -6
- package/dist/features/crm/index.js +9 -8
- package/dist/features/dashboard/index.css +2 -6
- package/dist/features/dashboard/index.js +9 -8
- package/dist/features/delivery/index.css +2 -6
- package/dist/features/delivery/index.js +10 -9
- package/dist/features/knowledge/index.d.ts +33 -0
- package/dist/features/knowledge/index.js +406 -0
- package/dist/features/lead-gen/index.css +2 -6
- package/dist/features/lead-gen/index.d.ts +158 -151
- package/dist/features/lead-gen/index.js +10 -9
- package/dist/features/monitoring/index.css +2 -6
- package/dist/features/monitoring/index.js +10 -9
- package/dist/features/monitoring/requests/index.css +2 -6
- package/dist/features/monitoring/requests/index.js +8 -7
- package/dist/features/operations/index.css +2 -6
- package/dist/features/operations/index.js +15 -13
- package/dist/features/settings/index.css +2 -6
- package/dist/features/settings/index.js +9 -8
- package/dist/hooks/delivery/index.css +2 -6
- package/dist/hooks/index.css +2 -6
- package/dist/hooks/index.d.ts +14 -3
- package/dist/hooks/index.js +8 -7
- package/dist/hooks/published.css +2 -6
- package/dist/hooks/published.d.ts +14 -3
- package/dist/hooks/published.js +8 -7
- package/dist/index.css +2 -6
- package/dist/index.d.ts +611 -593
- package/dist/index.js +8 -7
- package/dist/knowledge/index.d.ts +643 -0
- package/dist/knowledge/index.js +496 -0
- package/dist/organization/index.css +2 -6
- package/dist/provider/index.css +2 -6
- package/dist/provider/index.d.ts +346 -339
- package/dist/provider/index.js +6 -5
- package/dist/provider/published.css +2 -6
- package/dist/provider/published.d.ts +346 -339
- package/dist/provider/published.js +5 -4
- package/dist/vite-plugin-knowledge/index.d.ts +37 -0
- package/dist/vite-plugin-knowledge/index.js +67 -0
- package/package.json +45 -33
- package/src/knowledge/README.md +31 -0
- package/dist/{chunk-U2KJXTTV.js → chunk-TAIX4NO3.js} +1 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { ReactNode, ComponentType } from 'react';
|
|
3
3
|
import { QueryClient } from '@tanstack/react-query';
|
|
4
|
-
import
|
|
4
|
+
import * as z from 'zod';
|
|
5
|
+
import { z as z$1 } from 'zod';
|
|
5
6
|
import { EventSourceMessage } from '@microsoft/fetch-event-source';
|
|
6
7
|
|
|
7
8
|
/** Framework-agnostic theme overrides bundled with a preset (fonts, radius, component styles). */
|
|
@@ -3015,80 +3016,81 @@ type AcqDealRow = Database['public']['Tables']['acq_deals']['Row'];
|
|
|
3015
3016
|
* Single list as returned by /api/acquisition/lists/:id etc.
|
|
3016
3017
|
* Camel-cased domain shape matching AcqList in types.ts.
|
|
3017
3018
|
*/
|
|
3018
|
-
declare const AcqListResponseSchema: z.ZodObject<{
|
|
3019
|
-
id: z.ZodString;
|
|
3020
|
-
organizationId: z.ZodString;
|
|
3021
|
-
name: z.ZodString;
|
|
3022
|
-
description: z.ZodNullable<z.ZodString>;
|
|
3023
|
-
batchIds: z.ZodArray<z.ZodString>;
|
|
3024
|
-
instantlyCampaignId: z.ZodNullable<z.ZodString>;
|
|
3025
|
-
status: z.ZodEnum<{
|
|
3019
|
+
declare const AcqListResponseSchema: z$1.ZodObject<{
|
|
3020
|
+
id: z$1.ZodString;
|
|
3021
|
+
organizationId: z$1.ZodString;
|
|
3022
|
+
name: z$1.ZodString;
|
|
3023
|
+
description: z$1.ZodNullable<z$1.ZodString>;
|
|
3024
|
+
batchIds: z$1.ZodArray<z$1.ZodString>;
|
|
3025
|
+
instantlyCampaignId: z$1.ZodNullable<z$1.ZodString>;
|
|
3026
|
+
status: z$1.ZodEnum<{
|
|
3026
3027
|
closing: "closing";
|
|
3027
3028
|
draft: "draft";
|
|
3028
3029
|
enriching: "enriching";
|
|
3029
3030
|
launched: "launched";
|
|
3030
3031
|
archived: "archived";
|
|
3031
3032
|
}>;
|
|
3032
|
-
metadata: z.ZodObject<{
|
|
3033
|
-
buildPlanSnapshot: z.ZodOptional<z.ZodObject<{
|
|
3034
|
-
templateId: z.ZodString;
|
|
3035
|
-
templateLabel: z.ZodString;
|
|
3036
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
3037
|
-
id: z.ZodString;
|
|
3038
|
-
label: z.ZodString;
|
|
3039
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3040
|
-
primaryEntity: z.ZodEnum<{
|
|
3033
|
+
metadata: z$1.ZodObject<{
|
|
3034
|
+
buildPlanSnapshot: z$1.ZodOptional<z$1.ZodObject<{
|
|
3035
|
+
templateId: z$1.ZodString;
|
|
3036
|
+
templateLabel: z$1.ZodString;
|
|
3037
|
+
steps: z$1.ZodArray<z$1.ZodObject<{
|
|
3038
|
+
id: z$1.ZodString;
|
|
3039
|
+
label: z$1.ZodString;
|
|
3040
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3041
|
+
primaryEntity: z$1.ZodEnum<{
|
|
3041
3042
|
company: "company";
|
|
3042
3043
|
contact: "contact";
|
|
3043
3044
|
}>;
|
|
3044
|
-
outputs: z.ZodArray<z.ZodEnum<{
|
|
3045
|
+
outputs: z$1.ZodArray<z$1.ZodEnum<{
|
|
3045
3046
|
company: "company";
|
|
3046
3047
|
contact: "contact";
|
|
3047
3048
|
export: "export";
|
|
3048
3049
|
}>>;
|
|
3049
|
-
stageKey: z.ZodString;
|
|
3050
|
-
dependsOn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3051
|
-
dependencyMode: z.ZodLiteral<"per-record-eligibility">;
|
|
3052
|
-
capabilityKey: z.ZodString;
|
|
3053
|
-
defaultBatchSize: z.ZodNumber;
|
|
3054
|
-
maxBatchSize: z.ZodNumber;
|
|
3055
|
-
}, z.core.$strip>>;
|
|
3056
|
-
}, z.core.$strip>>;
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
}, z.core.$strip>;
|
|
3084
|
-
|
|
3050
|
+
stageKey: z$1.ZodString;
|
|
3051
|
+
dependsOn: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3052
|
+
dependencyMode: z$1.ZodLiteral<"per-record-eligibility">;
|
|
3053
|
+
capabilityKey: z$1.ZodString;
|
|
3054
|
+
defaultBatchSize: z$1.ZodNumber;
|
|
3055
|
+
maxBatchSize: z$1.ZodNumber;
|
|
3056
|
+
}, z$1.core.$strip>>;
|
|
3057
|
+
}, z$1.core.$strip>>;
|
|
3058
|
+
stepConfig: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3059
|
+
}, z$1.core.$catchall<z$1.ZodUnknown>>;
|
|
3060
|
+
launchedAt: z$1.ZodNullable<z$1.ZodString>;
|
|
3061
|
+
completedAt: z$1.ZodNullable<z$1.ZodString>;
|
|
3062
|
+
createdAt: z$1.ZodString;
|
|
3063
|
+
scrapingConfig: z$1.ZodObject<{
|
|
3064
|
+
vertical: z$1.ZodOptional<z$1.ZodString>;
|
|
3065
|
+
geography: z$1.ZodOptional<z$1.ZodString>;
|
|
3066
|
+
size: z$1.ZodOptional<z$1.ZodString>;
|
|
3067
|
+
apifyInput: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3068
|
+
}, z$1.core.$strip>;
|
|
3069
|
+
icp: z$1.ZodObject<{
|
|
3070
|
+
qualificationRubricKey: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
3071
|
+
targetDescription: z$1.ZodOptional<z$1.ZodString>;
|
|
3072
|
+
minReviewCount: z$1.ZodOptional<z$1.ZodNumber>;
|
|
3073
|
+
minRating: z$1.ZodOptional<z$1.ZodNumber>;
|
|
3074
|
+
excludeFranchises: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3075
|
+
customRules: z$1.ZodOptional<z$1.ZodString>;
|
|
3076
|
+
}, z$1.core.$strip>;
|
|
3077
|
+
pipelineConfig: z$1.ZodObject<{
|
|
3078
|
+
stages: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3079
|
+
key: z$1.ZodString;
|
|
3080
|
+
label: z$1.ZodOptional<z$1.ZodString>;
|
|
3081
|
+
enabled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3082
|
+
order: z$1.ZodOptional<z$1.ZodNumber>;
|
|
3083
|
+
}, z$1.core.$strip>>>;
|
|
3084
|
+
}, z$1.core.$strip>;
|
|
3085
|
+
}, z$1.core.$strip>;
|
|
3086
|
+
type AcqListResponse = z$1.infer<typeof AcqListResponseSchema>;
|
|
3085
3087
|
|
|
3086
3088
|
interface ActionDef {
|
|
3087
3089
|
key: string;
|
|
3088
3090
|
label: string;
|
|
3089
3091
|
isAvailableFor: (deal: AcqDealRow) => boolean;
|
|
3090
3092
|
workflowId: string;
|
|
3091
|
-
payloadSchema?: z.ZodTypeAny;
|
|
3093
|
+
payloadSchema?: z$1.ZodTypeAny;
|
|
3092
3094
|
}
|
|
3093
3095
|
|
|
3094
3096
|
/**
|
|
@@ -3096,56 +3098,56 @@ interface ActionDef {
|
|
|
3096
3098
|
*/
|
|
3097
3099
|
type TimeRange = '1h' | '24h' | '7d' | '30d';
|
|
3098
3100
|
|
|
3099
|
-
declare const FeatureSchema: z.ZodObject<{
|
|
3100
|
-
id: z.ZodString;
|
|
3101
|
-
label: z.ZodString;
|
|
3102
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3103
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3104
|
-
path: z.ZodOptional<z.ZodString>;
|
|
3105
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
3106
|
-
color: z.ZodOptional<z.ZodString>;
|
|
3107
|
-
uiPosition: z.ZodOptional<z.ZodEnum<{
|
|
3101
|
+
declare const FeatureSchema: z$1.ZodObject<{
|
|
3102
|
+
id: z$1.ZodString;
|
|
3103
|
+
label: z$1.ZodString;
|
|
3104
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3105
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
3106
|
+
path: z$1.ZodOptional<z$1.ZodString>;
|
|
3107
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
3108
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3109
|
+
uiPosition: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3108
3110
|
"sidebar-primary": "sidebar-primary";
|
|
3109
3111
|
"sidebar-bottom": "sidebar-bottom";
|
|
3110
3112
|
}>>;
|
|
3111
|
-
requiresAdmin: z.ZodOptional<z.ZodBoolean>;
|
|
3112
|
-
devOnly: z.ZodOptional<z.ZodBoolean>;
|
|
3113
|
-
}, z.core.$strip>;
|
|
3113
|
+
requiresAdmin: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3114
|
+
devOnly: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3115
|
+
}, z$1.core.$strip>;
|
|
3114
3116
|
|
|
3115
|
-
declare const OrganizationModelSchema: z.ZodObject<{
|
|
3116
|
-
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
3117
|
-
features: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3118
|
-
id: z.ZodString;
|
|
3119
|
-
label: z.ZodString;
|
|
3120
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3121
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3122
|
-
path: z.ZodOptional<z.ZodString>;
|
|
3123
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
3124
|
-
color: z.ZodOptional<z.ZodString>;
|
|
3125
|
-
uiPosition: z.ZodOptional<z.ZodEnum<{
|
|
3117
|
+
declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
3118
|
+
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
3119
|
+
features: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3120
|
+
id: z$1.ZodString;
|
|
3121
|
+
label: z$1.ZodString;
|
|
3122
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3123
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
3124
|
+
path: z$1.ZodOptional<z$1.ZodString>;
|
|
3125
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
3126
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3127
|
+
uiPosition: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3126
3128
|
"sidebar-primary": "sidebar-primary";
|
|
3127
3129
|
"sidebar-bottom": "sidebar-bottom";
|
|
3128
3130
|
}>>;
|
|
3129
|
-
requiresAdmin: z.ZodOptional<z.ZodBoolean>;
|
|
3130
|
-
devOnly: z.ZodOptional<z.ZodBoolean>;
|
|
3131
|
-
}, z.core.$strip>>>;
|
|
3132
|
-
branding: z.ZodObject<{
|
|
3133
|
-
organizationName: z.ZodString;
|
|
3134
|
-
productName: z.ZodString;
|
|
3135
|
-
shortName: z.ZodString;
|
|
3136
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3137
|
-
logos: z.ZodDefault<z.ZodObject<{
|
|
3138
|
-
light: z.ZodOptional<z.ZodString>;
|
|
3139
|
-
dark: z.ZodOptional<z.ZodString>;
|
|
3140
|
-
}, z.core.$strip>>;
|
|
3141
|
-
}, z.core.$strip>;
|
|
3142
|
-
navigation: z.ZodDefault<z.ZodObject<{
|
|
3143
|
-
defaultSurfaceId: z.ZodOptional<z.ZodString>;
|
|
3144
|
-
surfaces: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3145
|
-
id: z.ZodString;
|
|
3146
|
-
label: z.ZodString;
|
|
3147
|
-
path: z.ZodString;
|
|
3148
|
-
surfaceType: z.ZodEnum<{
|
|
3131
|
+
requiresAdmin: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3132
|
+
devOnly: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3133
|
+
}, z$1.core.$strip>>>;
|
|
3134
|
+
branding: z$1.ZodObject<{
|
|
3135
|
+
organizationName: z$1.ZodString;
|
|
3136
|
+
productName: z$1.ZodString;
|
|
3137
|
+
shortName: z$1.ZodString;
|
|
3138
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3139
|
+
logos: z$1.ZodDefault<z$1.ZodObject<{
|
|
3140
|
+
light: z$1.ZodOptional<z$1.ZodString>;
|
|
3141
|
+
dark: z$1.ZodOptional<z$1.ZodString>;
|
|
3142
|
+
}, z$1.core.$strip>>;
|
|
3143
|
+
}, z$1.core.$strip>;
|
|
3144
|
+
navigation: z$1.ZodDefault<z$1.ZodObject<{
|
|
3145
|
+
defaultSurfaceId: z$1.ZodOptional<z$1.ZodString>;
|
|
3146
|
+
surfaces: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3147
|
+
id: z$1.ZodString;
|
|
3148
|
+
label: z$1.ZodString;
|
|
3149
|
+
path: z$1.ZodString;
|
|
3150
|
+
surfaceType: z$1.ZodEnum<{
|
|
3149
3151
|
settings: "settings";
|
|
3150
3152
|
page: "page";
|
|
3151
3153
|
dashboard: "dashboard";
|
|
@@ -3153,235 +3155,235 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
3153
3155
|
detail: "detail";
|
|
3154
3156
|
list: "list";
|
|
3155
3157
|
}>;
|
|
3156
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3157
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3158
|
-
devOnly: z.ZodOptional<z.ZodBoolean>;
|
|
3159
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
3160
|
-
featureId: z.ZodOptional<z.ZodString>;
|
|
3161
|
-
featureIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3162
|
-
entityIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3163
|
-
resourceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3164
|
-
capabilityIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3165
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
3166
|
-
}, z.core.$strip>>>;
|
|
3167
|
-
groups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3168
|
-
id: z.ZodString;
|
|
3169
|
-
label: z.ZodString;
|
|
3170
|
-
placement: z.ZodString;
|
|
3171
|
-
surfaceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3172
|
-
}, z.core.$strip>>>;
|
|
3173
|
-
}, z.core.$strip>>;
|
|
3174
|
-
sales: z.ZodObject<{
|
|
3175
|
-
entityId: z.ZodString;
|
|
3176
|
-
defaultPipelineId: z.ZodString;
|
|
3177
|
-
pipelines: z.ZodArray<z.ZodObject<{
|
|
3178
|
-
id: z.ZodString;
|
|
3179
|
-
label: z.ZodString;
|
|
3180
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3181
|
-
entityId: z.ZodString;
|
|
3182
|
-
stages: z.ZodArray<z.ZodObject<{
|
|
3183
|
-
label: z.ZodString;
|
|
3184
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3185
|
-
color: z.ZodOptional<z.ZodString>;
|
|
3186
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
3187
|
-
id: z.ZodString;
|
|
3188
|
-
order: z.ZodNumber;
|
|
3189
|
-
semanticClass: z.ZodEnum<{
|
|
3158
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3159
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
3160
|
+
devOnly: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3161
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
3162
|
+
featureId: z$1.ZodOptional<z$1.ZodString>;
|
|
3163
|
+
featureIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
3164
|
+
entityIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
3165
|
+
resourceIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
3166
|
+
capabilityIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
3167
|
+
parentId: z$1.ZodOptional<z$1.ZodString>;
|
|
3168
|
+
}, z$1.core.$strip>>>;
|
|
3169
|
+
groups: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3170
|
+
id: z$1.ZodString;
|
|
3171
|
+
label: z$1.ZodString;
|
|
3172
|
+
placement: z$1.ZodString;
|
|
3173
|
+
surfaceIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
3174
|
+
}, z$1.core.$strip>>>;
|
|
3175
|
+
}, z$1.core.$strip>>;
|
|
3176
|
+
sales: z$1.ZodObject<{
|
|
3177
|
+
entityId: z$1.ZodString;
|
|
3178
|
+
defaultPipelineId: z$1.ZodString;
|
|
3179
|
+
pipelines: z$1.ZodArray<z$1.ZodObject<{
|
|
3180
|
+
id: z$1.ZodString;
|
|
3181
|
+
label: z$1.ZodString;
|
|
3182
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3183
|
+
entityId: z$1.ZodString;
|
|
3184
|
+
stages: z$1.ZodArray<z$1.ZodObject<{
|
|
3185
|
+
label: z$1.ZodString;
|
|
3186
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3187
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3188
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
3189
|
+
id: z$1.ZodString;
|
|
3190
|
+
order: z$1.ZodNumber;
|
|
3191
|
+
semanticClass: z$1.ZodEnum<{
|
|
3190
3192
|
open: "open";
|
|
3191
3193
|
active: "active";
|
|
3192
3194
|
nurturing: "nurturing";
|
|
3193
3195
|
closed_won: "closed_won";
|
|
3194
3196
|
closed_lost: "closed_lost";
|
|
3195
3197
|
}>;
|
|
3196
|
-
surfaceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3197
|
-
resourceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3198
|
-
}, z.core.$strip>>;
|
|
3199
|
-
}, z.core.$strip>>;
|
|
3200
|
-
}, z.core.$strip>;
|
|
3201
|
-
prospecting: z.ZodObject<{
|
|
3202
|
-
listEntityId: z.ZodString;
|
|
3203
|
-
companyEntityId: z.ZodString;
|
|
3204
|
-
contactEntityId: z.ZodString;
|
|
3205
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3206
|
-
companyStages: z.ZodArray<z.ZodObject<{
|
|
3207
|
-
label: z.ZodString;
|
|
3208
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3209
|
-
color: z.ZodOptional<z.ZodString>;
|
|
3210
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
3211
|
-
id: z.ZodString;
|
|
3212
|
-
order: z.ZodNumber;
|
|
3213
|
-
}, z.core.$strip>>;
|
|
3214
|
-
contactStages: z.ZodArray<z.ZodObject<{
|
|
3215
|
-
label: z.ZodString;
|
|
3216
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3217
|
-
color: z.ZodOptional<z.ZodString>;
|
|
3218
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
3219
|
-
id: z.ZodString;
|
|
3220
|
-
order: z.ZodNumber;
|
|
3221
|
-
}, z.core.$strip>>;
|
|
3222
|
-
defaultBuildTemplateId: z.ZodString;
|
|
3223
|
-
buildTemplates: z.ZodArray<z.ZodObject<{
|
|
3224
|
-
label: z.ZodString;
|
|
3225
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3226
|
-
color: z.ZodOptional<z.ZodString>;
|
|
3227
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
3228
|
-
id: z.ZodString;
|
|
3229
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
3230
|
-
label: z.ZodString;
|
|
3231
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3232
|
-
color: z.ZodOptional<z.ZodString>;
|
|
3233
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
3234
|
-
id: z.ZodString;
|
|
3235
|
-
primaryEntity: z.ZodEnum<{
|
|
3198
|
+
surfaceIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
3199
|
+
resourceIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
3200
|
+
}, z$1.core.$strip>>;
|
|
3201
|
+
}, z$1.core.$strip>>;
|
|
3202
|
+
}, z$1.core.$strip>;
|
|
3203
|
+
prospecting: z$1.ZodObject<{
|
|
3204
|
+
listEntityId: z$1.ZodString;
|
|
3205
|
+
companyEntityId: z$1.ZodString;
|
|
3206
|
+
contactEntityId: z$1.ZodString;
|
|
3207
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3208
|
+
companyStages: z$1.ZodArray<z$1.ZodObject<{
|
|
3209
|
+
label: z$1.ZodString;
|
|
3210
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3211
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3212
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
3213
|
+
id: z$1.ZodString;
|
|
3214
|
+
order: z$1.ZodNumber;
|
|
3215
|
+
}, z$1.core.$strip>>;
|
|
3216
|
+
contactStages: z$1.ZodArray<z$1.ZodObject<{
|
|
3217
|
+
label: z$1.ZodString;
|
|
3218
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3219
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3220
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
3221
|
+
id: z$1.ZodString;
|
|
3222
|
+
order: z$1.ZodNumber;
|
|
3223
|
+
}, z$1.core.$strip>>;
|
|
3224
|
+
defaultBuildTemplateId: z$1.ZodString;
|
|
3225
|
+
buildTemplates: z$1.ZodArray<z$1.ZodObject<{
|
|
3226
|
+
label: z$1.ZodString;
|
|
3227
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3228
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3229
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
3230
|
+
id: z$1.ZodString;
|
|
3231
|
+
steps: z$1.ZodArray<z$1.ZodObject<{
|
|
3232
|
+
label: z$1.ZodString;
|
|
3233
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3234
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3235
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
3236
|
+
id: z$1.ZodString;
|
|
3237
|
+
primaryEntity: z$1.ZodEnum<{
|
|
3236
3238
|
company: "company";
|
|
3237
3239
|
contact: "contact";
|
|
3238
3240
|
}>;
|
|
3239
|
-
outputs: z.ZodArray<z.ZodEnum<{
|
|
3241
|
+
outputs: z$1.ZodArray<z$1.ZodEnum<{
|
|
3240
3242
|
company: "company";
|
|
3241
3243
|
contact: "contact";
|
|
3242
3244
|
export: "export";
|
|
3243
3245
|
}>>;
|
|
3244
|
-
stageKey: z.ZodString;
|
|
3245
|
-
dependsOn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3246
|
-
dependencyMode: z.ZodLiteral<"per-record-eligibility">;
|
|
3247
|
-
capabilityKey: z.ZodString;
|
|
3248
|
-
defaultBatchSize: z.ZodNumber;
|
|
3249
|
-
maxBatchSize: z.ZodNumber;
|
|
3250
|
-
}, z.core.$strip>>;
|
|
3251
|
-
}, z.core.$strip>>;
|
|
3252
|
-
}, z.core.$strip>;
|
|
3253
|
-
projects: z.ZodObject<{
|
|
3254
|
-
projectEntityId: z.ZodString;
|
|
3255
|
-
milestoneEntityId: z.ZodString;
|
|
3256
|
-
taskEntityId: z.ZodString;
|
|
3257
|
-
projectStatuses: z.ZodArray<z.ZodObject<{
|
|
3258
|
-
label: z.ZodString;
|
|
3259
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3260
|
-
color: z.ZodOptional<z.ZodString>;
|
|
3261
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
3262
|
-
id: z.ZodString;
|
|
3263
|
-
order: z.ZodNumber;
|
|
3264
|
-
}, z.core.$strip>>;
|
|
3265
|
-
milestoneStatuses: z.ZodArray<z.ZodObject<{
|
|
3266
|
-
label: z.ZodString;
|
|
3267
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3268
|
-
color: z.ZodOptional<z.ZodString>;
|
|
3269
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
3270
|
-
id: z.ZodString;
|
|
3271
|
-
order: z.ZodNumber;
|
|
3272
|
-
}, z.core.$strip>>;
|
|
3273
|
-
taskStatuses: z.ZodArray<z.ZodObject<{
|
|
3274
|
-
label: z.ZodString;
|
|
3275
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3276
|
-
color: z.ZodOptional<z.ZodString>;
|
|
3277
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
3278
|
-
id: z.ZodString;
|
|
3279
|
-
order: z.ZodNumber;
|
|
3280
|
-
}, z.core.$strip>>;
|
|
3281
|
-
}, z.core.$strip>;
|
|
3282
|
-
identity: z.ZodDefault<z.ZodObject<{
|
|
3283
|
-
mission: z.ZodDefault<z.ZodString>;
|
|
3284
|
-
vision: z.ZodDefault<z.ZodString>;
|
|
3285
|
-
legalName: z.ZodDefault<z.ZodString>;
|
|
3286
|
-
entityType: z.ZodDefault<z.ZodString>;
|
|
3287
|
-
jurisdiction: z.ZodDefault<z.ZodString>;
|
|
3288
|
-
industryCategory: z.ZodDefault<z.ZodString>;
|
|
3289
|
-
geographicFocus: z.ZodDefault<z.ZodString>;
|
|
3290
|
-
timeZone: z.ZodDefault<z.ZodString>;
|
|
3291
|
-
businessHours: z.ZodDefault<z.ZodObject<{
|
|
3292
|
-
monday: z.ZodOptional<z.ZodObject<{
|
|
3293
|
-
open: z.ZodString;
|
|
3294
|
-
close: z.ZodString;
|
|
3295
|
-
}, z.core.$strip>>;
|
|
3296
|
-
tuesday: z.ZodOptional<z.ZodObject<{
|
|
3297
|
-
open: z.ZodString;
|
|
3298
|
-
close: z.ZodString;
|
|
3299
|
-
}, z.core.$strip>>;
|
|
3300
|
-
wednesday: z.ZodOptional<z.ZodObject<{
|
|
3301
|
-
open: z.ZodString;
|
|
3302
|
-
close: z.ZodString;
|
|
3303
|
-
}, z.core.$strip>>;
|
|
3304
|
-
thursday: z.ZodOptional<z.ZodObject<{
|
|
3305
|
-
open: z.ZodString;
|
|
3306
|
-
close: z.ZodString;
|
|
3307
|
-
}, z.core.$strip>>;
|
|
3308
|
-
friday: z.ZodOptional<z.ZodObject<{
|
|
3309
|
-
open: z.ZodString;
|
|
3310
|
-
close: z.ZodString;
|
|
3311
|
-
}, z.core.$strip>>;
|
|
3312
|
-
saturday: z.ZodOptional<z.ZodObject<{
|
|
3313
|
-
open: z.ZodString;
|
|
3314
|
-
close: z.ZodString;
|
|
3315
|
-
}, z.core.$strip>>;
|
|
3316
|
-
sunday: z.ZodOptional<z.ZodObject<{
|
|
3317
|
-
open: z.ZodString;
|
|
3318
|
-
close: z.ZodString;
|
|
3319
|
-
}, z.core.$strip>>;
|
|
3320
|
-
}, z.core.$strip>>;
|
|
3321
|
-
clientBrief: z.ZodDefault<z.ZodString>;
|
|
3322
|
-
}, z.core.$strip>>;
|
|
3323
|
-
customers: z.ZodDefault<z.ZodObject<{
|
|
3324
|
-
segments: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3325
|
-
id: z.ZodString;
|
|
3326
|
-
name: z.ZodDefault<z.ZodString>;
|
|
3327
|
-
description: z.ZodDefault<z.ZodString>;
|
|
3328
|
-
jobsToBeDone: z.ZodDefault<z.ZodString>;
|
|
3329
|
-
pains: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3330
|
-
gains: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3331
|
-
firmographics: z.ZodDefault<z.ZodObject<{
|
|
3332
|
-
industry: z.ZodOptional<z.ZodString>;
|
|
3333
|
-
companySize: z.ZodOptional<z.ZodString>;
|
|
3334
|
-
region: z.ZodOptional<z.ZodString>;
|
|
3335
|
-
}, z.core.$strip>>;
|
|
3336
|
-
valueProp: z.ZodDefault<z.ZodString>;
|
|
3337
|
-
}, z.core.$strip>>>;
|
|
3338
|
-
}, z.core.$strip>>;
|
|
3339
|
-
offerings: z.ZodDefault<z.ZodObject<{
|
|
3340
|
-
products: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3341
|
-
id: z.ZodString;
|
|
3342
|
-
name: z.ZodDefault<z.ZodString>;
|
|
3343
|
-
description: z.ZodDefault<z.ZodString>;
|
|
3344
|
-
pricingModel: z.ZodDefault<z.ZodEnum<{
|
|
3246
|
+
stageKey: z$1.ZodString;
|
|
3247
|
+
dependsOn: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3248
|
+
dependencyMode: z$1.ZodLiteral<"per-record-eligibility">;
|
|
3249
|
+
capabilityKey: z$1.ZodString;
|
|
3250
|
+
defaultBatchSize: z$1.ZodNumber;
|
|
3251
|
+
maxBatchSize: z$1.ZodNumber;
|
|
3252
|
+
}, z$1.core.$strip>>;
|
|
3253
|
+
}, z$1.core.$strip>>;
|
|
3254
|
+
}, z$1.core.$strip>;
|
|
3255
|
+
projects: z$1.ZodObject<{
|
|
3256
|
+
projectEntityId: z$1.ZodString;
|
|
3257
|
+
milestoneEntityId: z$1.ZodString;
|
|
3258
|
+
taskEntityId: z$1.ZodString;
|
|
3259
|
+
projectStatuses: z$1.ZodArray<z$1.ZodObject<{
|
|
3260
|
+
label: z$1.ZodString;
|
|
3261
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3262
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3263
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
3264
|
+
id: z$1.ZodString;
|
|
3265
|
+
order: z$1.ZodNumber;
|
|
3266
|
+
}, z$1.core.$strip>>;
|
|
3267
|
+
milestoneStatuses: z$1.ZodArray<z$1.ZodObject<{
|
|
3268
|
+
label: z$1.ZodString;
|
|
3269
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3270
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3271
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
3272
|
+
id: z$1.ZodString;
|
|
3273
|
+
order: z$1.ZodNumber;
|
|
3274
|
+
}, z$1.core.$strip>>;
|
|
3275
|
+
taskStatuses: z$1.ZodArray<z$1.ZodObject<{
|
|
3276
|
+
label: z$1.ZodString;
|
|
3277
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3278
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3279
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
3280
|
+
id: z$1.ZodString;
|
|
3281
|
+
order: z$1.ZodNumber;
|
|
3282
|
+
}, z$1.core.$strip>>;
|
|
3283
|
+
}, z$1.core.$strip>;
|
|
3284
|
+
identity: z$1.ZodDefault<z$1.ZodObject<{
|
|
3285
|
+
mission: z$1.ZodDefault<z$1.ZodString>;
|
|
3286
|
+
vision: z$1.ZodDefault<z$1.ZodString>;
|
|
3287
|
+
legalName: z$1.ZodDefault<z$1.ZodString>;
|
|
3288
|
+
entityType: z$1.ZodDefault<z$1.ZodString>;
|
|
3289
|
+
jurisdiction: z$1.ZodDefault<z$1.ZodString>;
|
|
3290
|
+
industryCategory: z$1.ZodDefault<z$1.ZodString>;
|
|
3291
|
+
geographicFocus: z$1.ZodDefault<z$1.ZodString>;
|
|
3292
|
+
timeZone: z$1.ZodDefault<z$1.ZodString>;
|
|
3293
|
+
businessHours: z$1.ZodDefault<z$1.ZodObject<{
|
|
3294
|
+
monday: z$1.ZodOptional<z$1.ZodObject<{
|
|
3295
|
+
open: z$1.ZodString;
|
|
3296
|
+
close: z$1.ZodString;
|
|
3297
|
+
}, z$1.core.$strip>>;
|
|
3298
|
+
tuesday: z$1.ZodOptional<z$1.ZodObject<{
|
|
3299
|
+
open: z$1.ZodString;
|
|
3300
|
+
close: z$1.ZodString;
|
|
3301
|
+
}, z$1.core.$strip>>;
|
|
3302
|
+
wednesday: z$1.ZodOptional<z$1.ZodObject<{
|
|
3303
|
+
open: z$1.ZodString;
|
|
3304
|
+
close: z$1.ZodString;
|
|
3305
|
+
}, z$1.core.$strip>>;
|
|
3306
|
+
thursday: z$1.ZodOptional<z$1.ZodObject<{
|
|
3307
|
+
open: z$1.ZodString;
|
|
3308
|
+
close: z$1.ZodString;
|
|
3309
|
+
}, z$1.core.$strip>>;
|
|
3310
|
+
friday: z$1.ZodOptional<z$1.ZodObject<{
|
|
3311
|
+
open: z$1.ZodString;
|
|
3312
|
+
close: z$1.ZodString;
|
|
3313
|
+
}, z$1.core.$strip>>;
|
|
3314
|
+
saturday: z$1.ZodOptional<z$1.ZodObject<{
|
|
3315
|
+
open: z$1.ZodString;
|
|
3316
|
+
close: z$1.ZodString;
|
|
3317
|
+
}, z$1.core.$strip>>;
|
|
3318
|
+
sunday: z$1.ZodOptional<z$1.ZodObject<{
|
|
3319
|
+
open: z$1.ZodString;
|
|
3320
|
+
close: z$1.ZodString;
|
|
3321
|
+
}, z$1.core.$strip>>;
|
|
3322
|
+
}, z$1.core.$strip>>;
|
|
3323
|
+
clientBrief: z$1.ZodDefault<z$1.ZodString>;
|
|
3324
|
+
}, z$1.core.$strip>>;
|
|
3325
|
+
customers: z$1.ZodDefault<z$1.ZodObject<{
|
|
3326
|
+
segments: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3327
|
+
id: z$1.ZodString;
|
|
3328
|
+
name: z$1.ZodDefault<z$1.ZodString>;
|
|
3329
|
+
description: z$1.ZodDefault<z$1.ZodString>;
|
|
3330
|
+
jobsToBeDone: z$1.ZodDefault<z$1.ZodString>;
|
|
3331
|
+
pains: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
3332
|
+
gains: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
3333
|
+
firmographics: z$1.ZodDefault<z$1.ZodObject<{
|
|
3334
|
+
industry: z$1.ZodOptional<z$1.ZodString>;
|
|
3335
|
+
companySize: z$1.ZodOptional<z$1.ZodString>;
|
|
3336
|
+
region: z$1.ZodOptional<z$1.ZodString>;
|
|
3337
|
+
}, z$1.core.$strip>>;
|
|
3338
|
+
valueProp: z$1.ZodDefault<z$1.ZodString>;
|
|
3339
|
+
}, z$1.core.$strip>>>;
|
|
3340
|
+
}, z$1.core.$strip>>;
|
|
3341
|
+
offerings: z$1.ZodDefault<z$1.ZodObject<{
|
|
3342
|
+
products: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3343
|
+
id: z$1.ZodString;
|
|
3344
|
+
name: z$1.ZodDefault<z$1.ZodString>;
|
|
3345
|
+
description: z$1.ZodDefault<z$1.ZodString>;
|
|
3346
|
+
pricingModel: z$1.ZodDefault<z$1.ZodEnum<{
|
|
3345
3347
|
custom: "custom";
|
|
3346
3348
|
"one-time": "one-time";
|
|
3347
3349
|
subscription: "subscription";
|
|
3348
3350
|
"usage-based": "usage-based";
|
|
3349
3351
|
}>>;
|
|
3350
|
-
price: z.ZodDefault<z.ZodNumber>;
|
|
3351
|
-
currency: z.ZodDefault<z.ZodString>;
|
|
3352
|
-
targetSegmentIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3353
|
-
deliveryFeatureId: z.ZodOptional<z.ZodString>;
|
|
3354
|
-
}, z.core.$strip>>>;
|
|
3355
|
-
}, z.core.$strip>>;
|
|
3356
|
-
roles: z.ZodDefault<z.ZodObject<{
|
|
3357
|
-
roles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3358
|
-
id: z.ZodString;
|
|
3359
|
-
title: z.ZodString;
|
|
3360
|
-
responsibilities: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3361
|
-
reportsToId: z.ZodOptional<z.ZodString>;
|
|
3362
|
-
heldBy: z.ZodOptional<z.ZodString>;
|
|
3363
|
-
}, z.core.$strip>>>;
|
|
3364
|
-
}, z.core.$strip>>;
|
|
3365
|
-
goals: z.ZodDefault<z.ZodObject<{
|
|
3366
|
-
objectives: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3367
|
-
id: z.ZodString;
|
|
3368
|
-
description: z.ZodString;
|
|
3369
|
-
periodStart: z.ZodString;
|
|
3370
|
-
periodEnd: z.ZodString;
|
|
3371
|
-
keyResults: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3372
|
-
id: z.ZodString;
|
|
3373
|
-
description: z.ZodString;
|
|
3374
|
-
targetMetric: z.ZodString;
|
|
3375
|
-
currentValue: z.ZodDefault<z.ZodNumber>;
|
|
3376
|
-
targetValue: z.ZodOptional<z.ZodNumber>;
|
|
3377
|
-
}, z.core.$strip>>>;
|
|
3378
|
-
}, z.core.$strip>>>;
|
|
3379
|
-
}, z.core.$strip>>;
|
|
3380
|
-
statuses: z.ZodDefault<z.ZodObject<{
|
|
3381
|
-
entries: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3382
|
-
id: z.ZodString;
|
|
3383
|
-
label: z.ZodString;
|
|
3384
|
-
semanticClass: z.ZodEnum<{
|
|
3352
|
+
price: z$1.ZodDefault<z$1.ZodNumber>;
|
|
3353
|
+
currency: z$1.ZodDefault<z$1.ZodString>;
|
|
3354
|
+
targetSegmentIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
3355
|
+
deliveryFeatureId: z$1.ZodOptional<z$1.ZodString>;
|
|
3356
|
+
}, z$1.core.$strip>>>;
|
|
3357
|
+
}, z$1.core.$strip>>;
|
|
3358
|
+
roles: z$1.ZodDefault<z$1.ZodObject<{
|
|
3359
|
+
roles: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3360
|
+
id: z$1.ZodString;
|
|
3361
|
+
title: z$1.ZodString;
|
|
3362
|
+
responsibilities: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
3363
|
+
reportsToId: z$1.ZodOptional<z$1.ZodString>;
|
|
3364
|
+
heldBy: z$1.ZodOptional<z$1.ZodString>;
|
|
3365
|
+
}, z$1.core.$strip>>>;
|
|
3366
|
+
}, z$1.core.$strip>>;
|
|
3367
|
+
goals: z$1.ZodDefault<z$1.ZodObject<{
|
|
3368
|
+
objectives: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3369
|
+
id: z$1.ZodString;
|
|
3370
|
+
description: z$1.ZodString;
|
|
3371
|
+
periodStart: z$1.ZodString;
|
|
3372
|
+
periodEnd: z$1.ZodString;
|
|
3373
|
+
keyResults: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3374
|
+
id: z$1.ZodString;
|
|
3375
|
+
description: z$1.ZodString;
|
|
3376
|
+
targetMetric: z$1.ZodString;
|
|
3377
|
+
currentValue: z$1.ZodDefault<z$1.ZodNumber>;
|
|
3378
|
+
targetValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
3379
|
+
}, z$1.core.$strip>>>;
|
|
3380
|
+
}, z$1.core.$strip>>>;
|
|
3381
|
+
}, z$1.core.$strip>>;
|
|
3382
|
+
statuses: z$1.ZodDefault<z$1.ZodObject<{
|
|
3383
|
+
entries: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3384
|
+
id: z$1.ZodString;
|
|
3385
|
+
label: z$1.ZodString;
|
|
3386
|
+
semanticClass: z$1.ZodEnum<{
|
|
3385
3387
|
"delivery.project": "delivery.project";
|
|
3386
3388
|
"delivery.milestone": "delivery.milestone";
|
|
3387
3389
|
"delivery.task": "delivery.task";
|
|
@@ -3391,46 +3393,46 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
3391
3393
|
"schedule.run": "schedule.run";
|
|
3392
3394
|
request: "request";
|
|
3393
3395
|
}>;
|
|
3394
|
-
category: z.ZodOptional<z.ZodString>;
|
|
3395
|
-
}, z.core.$strip>>>;
|
|
3396
|
-
}, z.core.$strip>>;
|
|
3397
|
-
operations: z.ZodDefault<z.ZodObject<{
|
|
3398
|
-
entries: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3399
|
-
id: z.ZodString;
|
|
3400
|
-
label: z.ZodString;
|
|
3401
|
-
semanticClass: z.ZodEnum<{
|
|
3396
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
3397
|
+
}, z$1.core.$strip>>>;
|
|
3398
|
+
}, z$1.core.$strip>>;
|
|
3399
|
+
operations: z$1.ZodDefault<z$1.ZodObject<{
|
|
3400
|
+
entries: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3401
|
+
id: z$1.ZodString;
|
|
3402
|
+
label: z$1.ZodString;
|
|
3403
|
+
semanticClass: z$1.ZodEnum<{
|
|
3402
3404
|
queue: "queue";
|
|
3403
3405
|
executions: "executions";
|
|
3404
3406
|
sessions: "sessions";
|
|
3405
3407
|
notifications: "notifications";
|
|
3406
3408
|
schedules: "schedules";
|
|
3407
3409
|
}>;
|
|
3408
|
-
featureId: z.ZodOptional<z.ZodString>;
|
|
3409
|
-
supportedStatusSemanticClass: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3410
|
-
}, z.core.$strip>>>;
|
|
3411
|
-
}, z.core.$strip>>;
|
|
3412
|
-
knowledge: z.ZodDefault<z.ZodObject<{
|
|
3413
|
-
nodes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3414
|
-
id: z.ZodString;
|
|
3415
|
-
kind: z.ZodEnum<{
|
|
3410
|
+
featureId: z$1.ZodOptional<z$1.ZodString>;
|
|
3411
|
+
supportedStatusSemanticClass: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3412
|
+
}, z$1.core.$strip>>>;
|
|
3413
|
+
}, z$1.core.$strip>>;
|
|
3414
|
+
knowledge: z$1.ZodDefault<z$1.ZodObject<{
|
|
3415
|
+
nodes: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3416
|
+
id: z$1.ZodString;
|
|
3417
|
+
kind: z$1.ZodEnum<{
|
|
3416
3418
|
playbook: "playbook";
|
|
3417
3419
|
strategy: "strategy";
|
|
3418
3420
|
reference: "reference";
|
|
3419
3421
|
}>;
|
|
3420
|
-
title: z.ZodString;
|
|
3421
|
-
summary: z.ZodString;
|
|
3422
|
-
body: z.ZodString;
|
|
3423
|
-
links: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3424
|
-
nodeId: z.ZodString;
|
|
3425
|
-
}, z.core.$strip>>>;
|
|
3426
|
-
ownerIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3427
|
-
updatedAt: z.ZodString;
|
|
3428
|
-
}, z.core.$strip>>>;
|
|
3429
|
-
}, z.core.$strip>>;
|
|
3430
|
-
}, z.core.$strip>;
|
|
3422
|
+
title: z$1.ZodString;
|
|
3423
|
+
summary: z$1.ZodString;
|
|
3424
|
+
body: z$1.ZodString;
|
|
3425
|
+
links: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3426
|
+
nodeId: z$1.ZodString;
|
|
3427
|
+
}, z$1.core.$strip>>>;
|
|
3428
|
+
ownerIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
3429
|
+
updatedAt: z$1.ZodString;
|
|
3430
|
+
}, z$1.core.$strip>>>;
|
|
3431
|
+
}, z$1.core.$strip>>;
|
|
3432
|
+
}, z$1.core.$strip>;
|
|
3431
3433
|
|
|
3432
|
-
type OrganizationModel = z.infer<typeof OrganizationModelSchema>;
|
|
3433
|
-
type OrganizationModelFeature = z.infer<typeof FeatureSchema>;
|
|
3434
|
+
type OrganizationModel = z$1.infer<typeof OrganizationModelSchema>;
|
|
3435
|
+
type OrganizationModelFeature = z$1.infer<typeof FeatureSchema>;
|
|
3434
3436
|
|
|
3435
3437
|
type ListBuilderWorkflowCategory = 'build' | 'enrich' | 'qualify' | 'scrape' | 'utility';
|
|
3436
3438
|
type LeadGenStageKey = string;
|
|
@@ -3447,6 +3449,11 @@ interface ListBuilderWorkflow {
|
|
|
3447
3449
|
description: string;
|
|
3448
3450
|
category: ListBuilderWorkflowCategory;
|
|
3449
3451
|
stagesAffected: readonly LeadGenStageKey[];
|
|
3452
|
+
configSchema?: z.ZodSchema<unknown>;
|
|
3453
|
+
ConfigForm?: ComponentType<{
|
|
3454
|
+
value: Record<string, unknown>;
|
|
3455
|
+
onChange: (next: Record<string, unknown>) => void;
|
|
3456
|
+
}>;
|
|
3450
3457
|
inputForm?: ComponentType<ListBuilderWorkflowFormProps>;
|
|
3451
3458
|
defaultInput?: (list: AcqListResponse) => unknown;
|
|
3452
3459
|
}
|