@pipe0/ops 0.0.8 → 0.0.10
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/CHANGELOG.md +16 -0
- package/dist/fields/field-catalog.d.ts +1496 -0
- package/dist/fields/json-meta/fields/amplemarket-person-match.d.ts +412 -0
- package/dist/fields/json-meta/fields/crustdata-companyenrich-match.d.ts +139 -0
- package/dist/form-generation/fields.d.ts +5 -5
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2542 -876
- package/dist/pipes/catalog/entries/company-identity-2.d.ts +3 -3
- package/dist/pipes/catalog/entries/company-lookalikes-companyenrich-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/company-match-crustdata-1.d.ts +208 -0
- package/dist/pipes/catalog/entries/company-match-logodev-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/company-newssummary-website-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/company-overview-2.d.ts +6 -6
- package/dist/pipes/catalog/entries/company-techstack-builtwith-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/company-websiteurl-email-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/deprecated/company-identity-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/deprecated/company-overview-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/deprecated/people-mobile-number-professional-profile-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/deprecated/people-mobile-number-work-email-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/deprecated/people-professionalprofile-waterfall-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/deprecated/people-professionalprofileurl-email-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/field-domainify-1.d.ts +207 -0
- package/dist/pipes/catalog/entries/field-slugify-1.d.ts +207 -0
- package/dist/pipes/catalog/entries/people-email-iswork-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-identity-amplemarket-1.d.ts +208 -0
- package/dist/pipes/catalog/entries/people-match-role-waterfall-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-name-join-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/people-name-split-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-personalemail-profile-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/people-phone-profile-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/people-phone-workemail-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/people-posts-crustdata-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-profile-waterfall-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-profile-workemail-curstdata-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-profileurl-email-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/{sheet-append-1.d.ts → sheet-row-append-1.d.ts} +6 -6
- package/dist/pipes/catalog/entries/sheet-row-append-sheet-1.d.ts +217 -0
- package/dist/pipes/catalog/entries/{sheet-expandappend-1.d.ts → sheet-row-expandappend-1.d.ts} +5 -5
- package/dist/pipes/catalog/pipe.d.ts +688 -3
- package/dist/pipes/catalog/pipes-catalog.d.ts +1925 -301
- package/dist/pipes/catalog/utils/get-pipe-instances.d.ts +2 -2
- package/dist/pipes/catalog/utils/index.d.ts +33 -33
- package/dist/pipes/pipes-validator/transform-into-response.d.ts +5 -0
- package/dist/pipes/providers/provider-catalog.d.ts +12 -0
- package/dist/pipes/providers/provider-utils.d.ts +35 -23
- package/dist/pipes/utils/pipes-utils.d.ts +30 -30
- package/dist/pipes/utils/schemas-primitives.d.ts +107 -27
- package/dist/pipes/utils/sheet-schemas-primitives.d.ts +1042 -62
- package/dist/searches/catalog/searches-catalog.d.ts +30 -6
- package/dist/test/setup.d.ts +1 -0
- package/dist/utils/connection-id.d.ts +1 -1
- package/dist/utils/extend-zod.d.ts +1 -0
- package/dist/utils/schemas.d.ts +11 -2
- package/package.json +5 -5
- package/dist/api/core-client.types.d.ts +0 -9259
|
@@ -1627,6 +1627,68 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1627
1627
|
}, z.z.core.$strip>>;
|
|
1628
1628
|
}, z.z.core.$strip>>;
|
|
1629
1629
|
}, z.z.core.$strip>;
|
|
1630
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
1631
|
+
pipe_id: z.ZodLiteral<"people:identity:amplemarket@1">;
|
|
1632
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1633
|
+
action: z.ZodEnum<{
|
|
1634
|
+
run: "run";
|
|
1635
|
+
}>;
|
|
1636
|
+
when: z.ZodObject<{
|
|
1637
|
+
logic: z.ZodEnum<{
|
|
1638
|
+
and: "and";
|
|
1639
|
+
or: "or";
|
|
1640
|
+
}>;
|
|
1641
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1642
|
+
property: z.ZodLiteral<"value">;
|
|
1643
|
+
field_name: z.ZodString;
|
|
1644
|
+
operator: z.ZodEnum<{
|
|
1645
|
+
eq: "eq";
|
|
1646
|
+
neq: "neq";
|
|
1647
|
+
gt: "gt";
|
|
1648
|
+
gte: "gte";
|
|
1649
|
+
lt: "lt";
|
|
1650
|
+
lte: "lte";
|
|
1651
|
+
contains: "contains";
|
|
1652
|
+
}>;
|
|
1653
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
1654
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
1655
|
+
property: z.ZodLiteral<"status">;
|
|
1656
|
+
field_name: z.ZodString;
|
|
1657
|
+
operator: z.ZodEnum<{
|
|
1658
|
+
eq: "eq";
|
|
1659
|
+
neq: "neq";
|
|
1660
|
+
}>;
|
|
1661
|
+
value: z.ZodEnum<{
|
|
1662
|
+
completed: "completed";
|
|
1663
|
+
failed: "failed";
|
|
1664
|
+
no_result: "no_result";
|
|
1665
|
+
skipped: "skipped";
|
|
1666
|
+
}>;
|
|
1667
|
+
}, z.z.core.$strip>], "property">>;
|
|
1668
|
+
}, z.z.core.$strip>;
|
|
1669
|
+
}, z.z.core.$strip>>>;
|
|
1670
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1671
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
1672
|
+
first: "first";
|
|
1673
|
+
}>>;
|
|
1674
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
1675
|
+
type: z.ZodLiteral<"vault">;
|
|
1676
|
+
connection: z.ZodString;
|
|
1677
|
+
}, z.z.core.$strip>>;
|
|
1678
|
+
}, z.z.core.$strip>>>;
|
|
1679
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
1680
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
1681
|
+
email: z.ZodDefault<z.ZodObject<{
|
|
1682
|
+
alias: z.ZodString;
|
|
1683
|
+
}, z.z.core.$strip>>;
|
|
1684
|
+
}, z.z.core.$strip>>;
|
|
1685
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
1686
|
+
amplemarket_person_match: z.ZodDefault<z.ZodObject<{
|
|
1687
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
1688
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1689
|
+
}, z.z.core.$strip>>;
|
|
1690
|
+
}, z.z.core.$strip>>;
|
|
1691
|
+
}, z.z.core.$strip>>;
|
|
1630
1692
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
1631
1693
|
pipe_id: z.ZodLiteral<"company:identity@2">;
|
|
1632
1694
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -2301,6 +2363,130 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2301
2363
|
}, z.z.core.$strip>>;
|
|
2302
2364
|
}, z.z.core.$strip>>;
|
|
2303
2365
|
}, z.z.core.$strip>;
|
|
2366
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
2367
|
+
pipe_id: z.ZodLiteral<"field:slugify@1">;
|
|
2368
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2369
|
+
action: z.ZodEnum<{
|
|
2370
|
+
run: "run";
|
|
2371
|
+
}>;
|
|
2372
|
+
when: z.ZodObject<{
|
|
2373
|
+
logic: z.ZodEnum<{
|
|
2374
|
+
and: "and";
|
|
2375
|
+
or: "or";
|
|
2376
|
+
}>;
|
|
2377
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2378
|
+
property: z.ZodLiteral<"value">;
|
|
2379
|
+
field_name: z.ZodString;
|
|
2380
|
+
operator: z.ZodEnum<{
|
|
2381
|
+
eq: "eq";
|
|
2382
|
+
neq: "neq";
|
|
2383
|
+
gt: "gt";
|
|
2384
|
+
gte: "gte";
|
|
2385
|
+
lt: "lt";
|
|
2386
|
+
lte: "lte";
|
|
2387
|
+
contains: "contains";
|
|
2388
|
+
}>;
|
|
2389
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
2390
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
2391
|
+
property: z.ZodLiteral<"status">;
|
|
2392
|
+
field_name: z.ZodString;
|
|
2393
|
+
operator: z.ZodEnum<{
|
|
2394
|
+
eq: "eq";
|
|
2395
|
+
neq: "neq";
|
|
2396
|
+
}>;
|
|
2397
|
+
value: z.ZodEnum<{
|
|
2398
|
+
completed: "completed";
|
|
2399
|
+
failed: "failed";
|
|
2400
|
+
no_result: "no_result";
|
|
2401
|
+
skipped: "skipped";
|
|
2402
|
+
}>;
|
|
2403
|
+
}, z.z.core.$strip>], "property">>;
|
|
2404
|
+
}, z.z.core.$strip>;
|
|
2405
|
+
}, z.z.core.$strip>>>;
|
|
2406
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2407
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
2408
|
+
first: "first";
|
|
2409
|
+
}>>;
|
|
2410
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
2411
|
+
type: z.ZodLiteral<"vault">;
|
|
2412
|
+
connection: z.ZodString;
|
|
2413
|
+
}, z.z.core.$strip>>;
|
|
2414
|
+
}, z.z.core.$strip>>>;
|
|
2415
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
2416
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
2417
|
+
string_input: z.ZodDefault<z.ZodObject<{
|
|
2418
|
+
alias: z.ZodString;
|
|
2419
|
+
}, z.z.core.$strip>>;
|
|
2420
|
+
}, z.z.core.$strip>>;
|
|
2421
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
2422
|
+
slugified: z.ZodDefault<z.ZodObject<{
|
|
2423
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
2424
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2425
|
+
}, z.z.core.$strip>>;
|
|
2426
|
+
}, z.z.core.$strip>>;
|
|
2427
|
+
}, z.z.core.$strip>>;
|
|
2428
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
2429
|
+
pipe_id: z.ZodLiteral<"field:domainify@1">;
|
|
2430
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2431
|
+
action: z.ZodEnum<{
|
|
2432
|
+
run: "run";
|
|
2433
|
+
}>;
|
|
2434
|
+
when: z.ZodObject<{
|
|
2435
|
+
logic: z.ZodEnum<{
|
|
2436
|
+
and: "and";
|
|
2437
|
+
or: "or";
|
|
2438
|
+
}>;
|
|
2439
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2440
|
+
property: z.ZodLiteral<"value">;
|
|
2441
|
+
field_name: z.ZodString;
|
|
2442
|
+
operator: z.ZodEnum<{
|
|
2443
|
+
eq: "eq";
|
|
2444
|
+
neq: "neq";
|
|
2445
|
+
gt: "gt";
|
|
2446
|
+
gte: "gte";
|
|
2447
|
+
lt: "lt";
|
|
2448
|
+
lte: "lte";
|
|
2449
|
+
contains: "contains";
|
|
2450
|
+
}>;
|
|
2451
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
2452
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
2453
|
+
property: z.ZodLiteral<"status">;
|
|
2454
|
+
field_name: z.ZodString;
|
|
2455
|
+
operator: z.ZodEnum<{
|
|
2456
|
+
eq: "eq";
|
|
2457
|
+
neq: "neq";
|
|
2458
|
+
}>;
|
|
2459
|
+
value: z.ZodEnum<{
|
|
2460
|
+
completed: "completed";
|
|
2461
|
+
failed: "failed";
|
|
2462
|
+
no_result: "no_result";
|
|
2463
|
+
skipped: "skipped";
|
|
2464
|
+
}>;
|
|
2465
|
+
}, z.z.core.$strip>], "property">>;
|
|
2466
|
+
}, z.z.core.$strip>;
|
|
2467
|
+
}, z.z.core.$strip>>>;
|
|
2468
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2469
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
2470
|
+
first: "first";
|
|
2471
|
+
}>>;
|
|
2472
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
2473
|
+
type: z.ZodLiteral<"vault">;
|
|
2474
|
+
connection: z.ZodString;
|
|
2475
|
+
}, z.z.core.$strip>>;
|
|
2476
|
+
}, z.z.core.$strip>>>;
|
|
2477
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
2478
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
2479
|
+
url_input: z.ZodDefault<z.ZodObject<{
|
|
2480
|
+
alias: z.ZodString;
|
|
2481
|
+
}, z.z.core.$strip>>;
|
|
2482
|
+
}, z.z.core.$strip>>;
|
|
2483
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
2484
|
+
domain: z.ZodDefault<z.ZodObject<{
|
|
2485
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
2486
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2487
|
+
}, z.z.core.$strip>>;
|
|
2488
|
+
}, z.z.core.$strip>>;
|
|
2489
|
+
}, z.z.core.$strip>>;
|
|
2304
2490
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
2305
2491
|
pipe_id: z.ZodLiteral<"website:scrape:firecrawl@1">;
|
|
2306
2492
|
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2580,7 +2766,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2580
2766
|
}, z.z.core.$strip>>;
|
|
2581
2767
|
}, z.z.core.$strip>>;
|
|
2582
2768
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
2583
|
-
pipe_id: z.ZodLiteral<"sheet:append@1">;
|
|
2769
|
+
pipe_id: z.ZodLiteral<"sheet:row:append@1">;
|
|
2584
2770
|
connector: z.ZodObject<{
|
|
2585
2771
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
2586
2772
|
first: "first";
|
|
@@ -2641,7 +2827,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2641
2827
|
}, z.z.core.$strip>>;
|
|
2642
2828
|
}, z.z.core.$strip>;
|
|
2643
2829
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
2644
|
-
pipe_id: z.ZodLiteral<"sheet:expandappend@1">;
|
|
2830
|
+
pipe_id: z.ZodLiteral<"sheet:row:expandappend@1">;
|
|
2645
2831
|
connector: z.ZodObject<{
|
|
2646
2832
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
2647
2833
|
first: "first";
|
|
@@ -2909,6 +3095,68 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2909
3095
|
}, z.z.core.$strip>>;
|
|
2910
3096
|
}, z.z.core.$strip>>;
|
|
2911
3097
|
}, z.z.core.$strip>>;
|
|
3098
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
3099
|
+
pipe_id: z.ZodLiteral<"company:match:crustdata@1">;
|
|
3100
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3101
|
+
action: z.ZodEnum<{
|
|
3102
|
+
run: "run";
|
|
3103
|
+
}>;
|
|
3104
|
+
when: z.ZodObject<{
|
|
3105
|
+
logic: z.ZodEnum<{
|
|
3106
|
+
and: "and";
|
|
3107
|
+
or: "or";
|
|
3108
|
+
}>;
|
|
3109
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3110
|
+
property: z.ZodLiteral<"value">;
|
|
3111
|
+
field_name: z.ZodString;
|
|
3112
|
+
operator: z.ZodEnum<{
|
|
3113
|
+
eq: "eq";
|
|
3114
|
+
neq: "neq";
|
|
3115
|
+
gt: "gt";
|
|
3116
|
+
gte: "gte";
|
|
3117
|
+
lt: "lt";
|
|
3118
|
+
lte: "lte";
|
|
3119
|
+
contains: "contains";
|
|
3120
|
+
}>;
|
|
3121
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
3122
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
3123
|
+
property: z.ZodLiteral<"status">;
|
|
3124
|
+
field_name: z.ZodString;
|
|
3125
|
+
operator: z.ZodEnum<{
|
|
3126
|
+
eq: "eq";
|
|
3127
|
+
neq: "neq";
|
|
3128
|
+
}>;
|
|
3129
|
+
value: z.ZodEnum<{
|
|
3130
|
+
completed: "completed";
|
|
3131
|
+
failed: "failed";
|
|
3132
|
+
no_result: "no_result";
|
|
3133
|
+
skipped: "skipped";
|
|
3134
|
+
}>;
|
|
3135
|
+
}, z.z.core.$strip>], "property">>;
|
|
3136
|
+
}, z.z.core.$strip>;
|
|
3137
|
+
}, z.z.core.$strip>>>;
|
|
3138
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3139
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
3140
|
+
first: "first";
|
|
3141
|
+
}>>;
|
|
3142
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
3143
|
+
type: z.ZodLiteral<"vault">;
|
|
3144
|
+
connection: z.ZodString;
|
|
3145
|
+
}, z.z.core.$strip>>;
|
|
3146
|
+
}, z.z.core.$strip>>>;
|
|
3147
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
3148
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
3149
|
+
company_website_url: z.ZodDefault<z.ZodObject<{
|
|
3150
|
+
alias: z.ZodString;
|
|
3151
|
+
}, z.z.core.$strip>>;
|
|
3152
|
+
}, z.z.core.$strip>>;
|
|
3153
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
3154
|
+
crustdata_companyenrich_match: z.ZodDefault<z.ZodObject<{
|
|
3155
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
3156
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3157
|
+
}, z.z.core.$strip>>;
|
|
3158
|
+
}, z.z.core.$strip>>;
|
|
3159
|
+
}, z.z.core.$strip>>;
|
|
2912
3160
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
2913
3161
|
pipe_id: z.ZodLiteral<"people:profile:workemail:crustdata@1">;
|
|
2914
3162
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -3141,6 +3389,76 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3141
3389
|
}, z.z.core.$strip>>;
|
|
3142
3390
|
}, z.z.core.$strip>>;
|
|
3143
3391
|
}, z.z.core.$strip>>;
|
|
3392
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
3393
|
+
pipe_id: z.ZodLiteral<"sheet:row:append:sheet@1">;
|
|
3394
|
+
connector: z.ZodObject<{
|
|
3395
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
3396
|
+
first: "first";
|
|
3397
|
+
}>>;
|
|
3398
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
3399
|
+
type: z.ZodLiteral<"vault">;
|
|
3400
|
+
connection: z.ZodString;
|
|
3401
|
+
}, z.z.core.$strip>>;
|
|
3402
|
+
}, z.z.core.$strip>;
|
|
3403
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3404
|
+
action: z.ZodEnum<{
|
|
3405
|
+
run: "run";
|
|
3406
|
+
}>;
|
|
3407
|
+
when: z.ZodObject<{
|
|
3408
|
+
logic: z.ZodEnum<{
|
|
3409
|
+
and: "and";
|
|
3410
|
+
or: "or";
|
|
3411
|
+
}>;
|
|
3412
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3413
|
+
property: z.ZodLiteral<"value">;
|
|
3414
|
+
field_name: z.ZodString;
|
|
3415
|
+
operator: z.ZodEnum<{
|
|
3416
|
+
eq: "eq";
|
|
3417
|
+
neq: "neq";
|
|
3418
|
+
gt: "gt";
|
|
3419
|
+
gte: "gte";
|
|
3420
|
+
lt: "lt";
|
|
3421
|
+
lte: "lte";
|
|
3422
|
+
contains: "contains";
|
|
3423
|
+
}>;
|
|
3424
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
3425
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
3426
|
+
property: z.ZodLiteral<"status">;
|
|
3427
|
+
field_name: z.ZodString;
|
|
3428
|
+
operator: z.ZodEnum<{
|
|
3429
|
+
eq: "eq";
|
|
3430
|
+
neq: "neq";
|
|
3431
|
+
}>;
|
|
3432
|
+
value: z.ZodEnum<{
|
|
3433
|
+
completed: "completed";
|
|
3434
|
+
failed: "failed";
|
|
3435
|
+
no_result: "no_result";
|
|
3436
|
+
skipped: "skipped";
|
|
3437
|
+
}>;
|
|
3438
|
+
}, z.z.core.$strip>], "property">>;
|
|
3439
|
+
}, z.z.core.$strip>;
|
|
3440
|
+
}, z.z.core.$strip>>>;
|
|
3441
|
+
config: z.ZodObject<{
|
|
3442
|
+
run: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
3443
|
+
allow_field_creation: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
3444
|
+
allow_sheet_creation: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
3445
|
+
new_sheet_team_id: z.ZodString;
|
|
3446
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
3447
|
+
sheet: z.ZodDefault<z.ZodObject<{
|
|
3448
|
+
alias: z.ZodString;
|
|
3449
|
+
}, z.z.core.$strip>>;
|
|
3450
|
+
}, z.z.core.$strip>>;
|
|
3451
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
3452
|
+
sheet_record_id: z.ZodDefault<z.ZodObject<{
|
|
3453
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
3454
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3455
|
+
}, z.z.core.$strip>>;
|
|
3456
|
+
sheet_created: z.ZodDefault<z.ZodObject<{
|
|
3457
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
3458
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3459
|
+
}, z.z.core.$strip>>;
|
|
3460
|
+
}, z.z.core.$strip>>;
|
|
3461
|
+
}, z.z.core.$strip>;
|
|
3144
3462
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
3145
3463
|
pipe_id: z.ZodLiteral<"company:identity@1">;
|
|
3146
3464
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -5113,6 +5431,68 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5113
5431
|
}, z.z.core.$strip>>;
|
|
5114
5432
|
}, z.z.core.$strip>>;
|
|
5115
5433
|
}, z.z.core.$strip>;
|
|
5434
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
5435
|
+
pipe_id: z.ZodLiteral<"people:identity:amplemarket@1">;
|
|
5436
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5437
|
+
action: z.ZodEnum<{
|
|
5438
|
+
run: "run";
|
|
5439
|
+
}>;
|
|
5440
|
+
when: z.ZodObject<{
|
|
5441
|
+
logic: z.ZodEnum<{
|
|
5442
|
+
and: "and";
|
|
5443
|
+
or: "or";
|
|
5444
|
+
}>;
|
|
5445
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5446
|
+
property: z.ZodLiteral<"value">;
|
|
5447
|
+
field_name: z.ZodString;
|
|
5448
|
+
operator: z.ZodEnum<{
|
|
5449
|
+
eq: "eq";
|
|
5450
|
+
neq: "neq";
|
|
5451
|
+
gt: "gt";
|
|
5452
|
+
gte: "gte";
|
|
5453
|
+
lt: "lt";
|
|
5454
|
+
lte: "lte";
|
|
5455
|
+
contains: "contains";
|
|
5456
|
+
}>;
|
|
5457
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
5458
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
5459
|
+
property: z.ZodLiteral<"status">;
|
|
5460
|
+
field_name: z.ZodString;
|
|
5461
|
+
operator: z.ZodEnum<{
|
|
5462
|
+
eq: "eq";
|
|
5463
|
+
neq: "neq";
|
|
5464
|
+
}>;
|
|
5465
|
+
value: z.ZodEnum<{
|
|
5466
|
+
completed: "completed";
|
|
5467
|
+
failed: "failed";
|
|
5468
|
+
no_result: "no_result";
|
|
5469
|
+
skipped: "skipped";
|
|
5470
|
+
}>;
|
|
5471
|
+
}, z.z.core.$strip>], "property">>;
|
|
5472
|
+
}, z.z.core.$strip>;
|
|
5473
|
+
}, z.z.core.$strip>>>;
|
|
5474
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5475
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
5476
|
+
first: "first";
|
|
5477
|
+
}>>;
|
|
5478
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
5479
|
+
type: z.ZodLiteral<"vault">;
|
|
5480
|
+
connection: z.ZodString;
|
|
5481
|
+
}, z.z.core.$strip>>;
|
|
5482
|
+
}, z.z.core.$strip>>>;
|
|
5483
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
5484
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
5485
|
+
email: z.ZodDefault<z.ZodObject<{
|
|
5486
|
+
alias: z.ZodString;
|
|
5487
|
+
}, z.z.core.$strip>>;
|
|
5488
|
+
}, z.z.core.$strip>>;
|
|
5489
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
5490
|
+
amplemarket_person_match: z.ZodDefault<z.ZodObject<{
|
|
5491
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
5492
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5493
|
+
}, z.z.core.$strip>>;
|
|
5494
|
+
}, z.z.core.$strip>>;
|
|
5495
|
+
}, z.z.core.$strip>>;
|
|
5116
5496
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
5117
5497
|
pipe_id: z.ZodLiteral<"company:identity@2">;
|
|
5118
5498
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -5588,15 +5968,148 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5588
5968
|
}, z.z.core.$strip>>;
|
|
5589
5969
|
}, z.z.core.$strip>>;
|
|
5590
5970
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
5591
|
-
is_email_valid: z.ZodDefault<z.ZodObject<{
|
|
5971
|
+
is_email_valid: z.ZodDefault<z.ZodObject<{
|
|
5972
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
5973
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5974
|
+
}, z.z.core.$strip>>;
|
|
5975
|
+
}, z.z.core.$strip>>;
|
|
5976
|
+
}, z.z.core.$strip>>;
|
|
5977
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
5978
|
+
pipe_id: z.ZodLiteral<"people:email:validate:millionverifier@1">;
|
|
5979
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5980
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
5981
|
+
first: "first";
|
|
5982
|
+
}>>;
|
|
5983
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
5984
|
+
type: z.ZodLiteral<"vault">;
|
|
5985
|
+
connection: z.ZodString;
|
|
5986
|
+
}, z.z.core.$strip>>;
|
|
5987
|
+
}, z.z.core.$strip>>>;
|
|
5988
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5989
|
+
action: z.ZodEnum<{
|
|
5990
|
+
run: "run";
|
|
5991
|
+
}>;
|
|
5992
|
+
when: z.ZodObject<{
|
|
5993
|
+
logic: z.ZodEnum<{
|
|
5994
|
+
and: "and";
|
|
5995
|
+
or: "or";
|
|
5996
|
+
}>;
|
|
5997
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5998
|
+
property: z.ZodLiteral<"value">;
|
|
5999
|
+
field_name: z.ZodString;
|
|
6000
|
+
operator: z.ZodEnum<{
|
|
6001
|
+
eq: "eq";
|
|
6002
|
+
neq: "neq";
|
|
6003
|
+
gt: "gt";
|
|
6004
|
+
gte: "gte";
|
|
6005
|
+
lt: "lt";
|
|
6006
|
+
lte: "lte";
|
|
6007
|
+
contains: "contains";
|
|
6008
|
+
}>;
|
|
6009
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
6010
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
6011
|
+
property: z.ZodLiteral<"status">;
|
|
6012
|
+
field_name: z.ZodString;
|
|
6013
|
+
operator: z.ZodEnum<{
|
|
6014
|
+
eq: "eq";
|
|
6015
|
+
neq: "neq";
|
|
6016
|
+
}>;
|
|
6017
|
+
value: z.ZodEnum<{
|
|
6018
|
+
completed: "completed";
|
|
6019
|
+
failed: "failed";
|
|
6020
|
+
no_result: "no_result";
|
|
6021
|
+
skipped: "skipped";
|
|
6022
|
+
}>;
|
|
6023
|
+
}, z.z.core.$strip>], "property">>;
|
|
6024
|
+
}, z.z.core.$strip>;
|
|
6025
|
+
}, z.z.core.$strip>>>;
|
|
6026
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
6027
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
6028
|
+
email: z.ZodDefault<z.ZodObject<{
|
|
6029
|
+
alias: z.ZodString;
|
|
6030
|
+
}, z.z.core.$strip>>;
|
|
6031
|
+
}, z.z.core.$strip>>;
|
|
6032
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
6033
|
+
email_validation_status: z.ZodDefault<z.ZodObject<{
|
|
6034
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
6035
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
6036
|
+
}, z.z.core.$strip>>;
|
|
6037
|
+
million_validation_match: z.ZodDefault<z.ZodObject<{
|
|
6038
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
6039
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
6040
|
+
}, z.z.core.$strip>>;
|
|
6041
|
+
}, z.z.core.$strip>>;
|
|
6042
|
+
}, z.z.core.$strip>>;
|
|
6043
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
6044
|
+
pipe_id: z.ZodLiteral<"people:phone:workemail:waterfall@1">;
|
|
6045
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
6046
|
+
action: z.ZodEnum<{
|
|
6047
|
+
run: "run";
|
|
6048
|
+
}>;
|
|
6049
|
+
when: z.ZodObject<{
|
|
6050
|
+
logic: z.ZodEnum<{
|
|
6051
|
+
and: "and";
|
|
6052
|
+
or: "or";
|
|
6053
|
+
}>;
|
|
6054
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6055
|
+
property: z.ZodLiteral<"value">;
|
|
6056
|
+
field_name: z.ZodString;
|
|
6057
|
+
operator: z.ZodEnum<{
|
|
6058
|
+
eq: "eq";
|
|
6059
|
+
neq: "neq";
|
|
6060
|
+
gt: "gt";
|
|
6061
|
+
gte: "gte";
|
|
6062
|
+
lt: "lt";
|
|
6063
|
+
lte: "lte";
|
|
6064
|
+
contains: "contains";
|
|
6065
|
+
}>;
|
|
6066
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
6067
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
6068
|
+
property: z.ZodLiteral<"status">;
|
|
6069
|
+
field_name: z.ZodString;
|
|
6070
|
+
operator: z.ZodEnum<{
|
|
6071
|
+
eq: "eq";
|
|
6072
|
+
neq: "neq";
|
|
6073
|
+
}>;
|
|
6074
|
+
value: z.ZodEnum<{
|
|
6075
|
+
completed: "completed";
|
|
6076
|
+
failed: "failed";
|
|
6077
|
+
no_result: "no_result";
|
|
6078
|
+
skipped: "skipped";
|
|
6079
|
+
}>;
|
|
6080
|
+
}, z.z.core.$strip>], "property">>;
|
|
6081
|
+
}, z.z.core.$strip>;
|
|
6082
|
+
}, z.z.core.$strip>>>;
|
|
6083
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6084
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
6085
|
+
first: "first";
|
|
6086
|
+
}>>;
|
|
6087
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
6088
|
+
type: z.ZodLiteral<"vault">;
|
|
6089
|
+
connection: z.ZodString;
|
|
6090
|
+
}, z.z.core.$strip>>;
|
|
6091
|
+
}, z.z.core.$strip>>>;
|
|
6092
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
6093
|
+
providers: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
6094
|
+
provider: z.ZodEnum<{
|
|
6095
|
+
leadmagic: "leadmagic";
|
|
6096
|
+
}>;
|
|
6097
|
+
}, z.z.core.$strip>>>;
|
|
6098
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
6099
|
+
work_email: z.ZodDefault<z.ZodObject<{
|
|
6100
|
+
alias: z.ZodString;
|
|
6101
|
+
}, z.z.core.$strip>>;
|
|
6102
|
+
}, z.z.core.$strip>>;
|
|
6103
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
6104
|
+
mobile: z.ZodDefault<z.ZodObject<{
|
|
5592
6105
|
alias: z.ZodDefault<z.ZodString>;
|
|
5593
6106
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5594
6107
|
}, z.z.core.$strip>>;
|
|
5595
6108
|
}, z.z.core.$strip>>;
|
|
5596
6109
|
}, z.z.core.$strip>>;
|
|
5597
6110
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
5598
|
-
pipe_id: z.ZodLiteral<"
|
|
5599
|
-
connector: z.
|
|
6111
|
+
pipe_id: z.ZodLiteral<"fields:merge@1">;
|
|
6112
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5600
6113
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
5601
6114
|
first: "first";
|
|
5602
6115
|
}>>;
|
|
@@ -5643,25 +6156,19 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5643
6156
|
}, z.z.core.$strip>], "property">>;
|
|
5644
6157
|
}, z.z.core.$strip>;
|
|
5645
6158
|
}, z.z.core.$strip>>>;
|
|
5646
|
-
config: z.
|
|
5647
|
-
|
|
5648
|
-
|
|
5649
|
-
alias: z.ZodString;
|
|
5650
|
-
}, z.z.core.$strip>>;
|
|
6159
|
+
config: z.ZodObject<{
|
|
6160
|
+
sources: z.ZodArray<z.ZodObject<{
|
|
6161
|
+
field_name: z.ZodString;
|
|
5651
6162
|
}, z.z.core.$strip>>;
|
|
5652
6163
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
5653
|
-
|
|
5654
|
-
alias: z.ZodDefault<z.ZodString>;
|
|
5655
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5656
|
-
}, z.z.core.$strip>>;
|
|
5657
|
-
million_validation_match: z.ZodDefault<z.ZodObject<{
|
|
6164
|
+
merge_result: z.ZodDefault<z.ZodObject<{
|
|
5658
6165
|
alias: z.ZodDefault<z.ZodString>;
|
|
5659
6166
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5660
6167
|
}, z.z.core.$strip>>;
|
|
5661
6168
|
}, z.z.core.$strip>>;
|
|
5662
|
-
}, z.z.core.$strip
|
|
6169
|
+
}, z.z.core.$strip>;
|
|
5663
6170
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
5664
|
-
pipe_id: z.ZodLiteral<"
|
|
6171
|
+
pipe_id: z.ZodLiteral<"field:slugify@1">;
|
|
5665
6172
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5666
6173
|
action: z.ZodEnum<{
|
|
5667
6174
|
run: "run";
|
|
@@ -5700,7 +6207,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5700
6207
|
}, z.z.core.$strip>], "property">>;
|
|
5701
6208
|
}, z.z.core.$strip>;
|
|
5702
6209
|
}, z.z.core.$strip>>>;
|
|
5703
|
-
connector: z.
|
|
6210
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5704
6211
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
5705
6212
|
first: "first";
|
|
5706
6213
|
}>>;
|
|
@@ -5710,34 +6217,20 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5710
6217
|
}, z.z.core.$strip>>;
|
|
5711
6218
|
}, z.z.core.$strip>>>;
|
|
5712
6219
|
config: z.ZodOptional<z.ZodObject<{
|
|
5713
|
-
providers: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5714
|
-
provider: z.ZodEnum<{
|
|
5715
|
-
leadmagic: "leadmagic";
|
|
5716
|
-
}>;
|
|
5717
|
-
}, z.z.core.$strip>>>;
|
|
5718
6220
|
input_fields: z.ZodOptional<z.ZodObject<{
|
|
5719
|
-
|
|
6221
|
+
string_input: z.ZodDefault<z.ZodObject<{
|
|
5720
6222
|
alias: z.ZodString;
|
|
5721
6223
|
}, z.z.core.$strip>>;
|
|
5722
6224
|
}, z.z.core.$strip>>;
|
|
5723
6225
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
5724
|
-
|
|
6226
|
+
slugified: z.ZodDefault<z.ZodObject<{
|
|
5725
6227
|
alias: z.ZodDefault<z.ZodString>;
|
|
5726
6228
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5727
6229
|
}, z.z.core.$strip>>;
|
|
5728
6230
|
}, z.z.core.$strip>>;
|
|
5729
6231
|
}, z.z.core.$strip>>;
|
|
5730
6232
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
5731
|
-
pipe_id: z.ZodLiteral<"
|
|
5732
|
-
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5733
|
-
strategy: z.ZodDefault<z.ZodEnum<{
|
|
5734
|
-
first: "first";
|
|
5735
|
-
}>>;
|
|
5736
|
-
connections: z.ZodArray<z.ZodObject<{
|
|
5737
|
-
type: z.ZodLiteral<"vault">;
|
|
5738
|
-
connection: z.ZodString;
|
|
5739
|
-
}, z.z.core.$strip>>;
|
|
5740
|
-
}, z.z.core.$strip>>>;
|
|
6233
|
+
pipe_id: z.ZodLiteral<"field:domainify@1">;
|
|
5741
6234
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5742
6235
|
action: z.ZodEnum<{
|
|
5743
6236
|
run: "run";
|
|
@@ -5776,17 +6269,28 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5776
6269
|
}, z.z.core.$strip>], "property">>;
|
|
5777
6270
|
}, z.z.core.$strip>;
|
|
5778
6271
|
}, z.z.core.$strip>>>;
|
|
5779
|
-
|
|
5780
|
-
|
|
5781
|
-
|
|
6272
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
6273
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
6274
|
+
first: "first";
|
|
6275
|
+
}>>;
|
|
6276
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
6277
|
+
type: z.ZodLiteral<"vault">;
|
|
6278
|
+
connection: z.ZodString;
|
|
6279
|
+
}, z.z.core.$strip>>;
|
|
6280
|
+
}, z.z.core.$strip>>>;
|
|
6281
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
6282
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
6283
|
+
url_input: z.ZodDefault<z.ZodObject<{
|
|
6284
|
+
alias: z.ZodString;
|
|
6285
|
+
}, z.z.core.$strip>>;
|
|
5782
6286
|
}, z.z.core.$strip>>;
|
|
5783
6287
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
5784
|
-
|
|
6288
|
+
domain: z.ZodDefault<z.ZodObject<{
|
|
5785
6289
|
alias: z.ZodDefault<z.ZodString>;
|
|
5786
6290
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5787
6291
|
}, z.z.core.$strip>>;
|
|
5788
6292
|
}, z.z.core.$strip>>;
|
|
5789
|
-
}, z.z.core.$strip
|
|
6293
|
+
}, z.z.core.$strip>>;
|
|
5790
6294
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
5791
6295
|
pipe_id: z.ZodLiteral<"website:scrape:firecrawl@1">;
|
|
5792
6296
|
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -6066,7 +6570,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
6066
6570
|
}, z.z.core.$strip>>;
|
|
6067
6571
|
}, z.z.core.$strip>>;
|
|
6068
6572
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
6069
|
-
pipe_id: z.ZodLiteral<"sheet:append@1">;
|
|
6573
|
+
pipe_id: z.ZodLiteral<"sheet:row:append@1">;
|
|
6070
6574
|
connector: z.ZodObject<{
|
|
6071
6575
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
6072
6576
|
first: "first";
|
|
@@ -6127,7 +6631,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
6127
6631
|
}, z.z.core.$strip>>;
|
|
6128
6632
|
}, z.z.core.$strip>;
|
|
6129
6633
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
6130
|
-
pipe_id: z.ZodLiteral<"sheet:expandappend@1">;
|
|
6634
|
+
pipe_id: z.ZodLiteral<"sheet:row:expandappend@1">;
|
|
6131
6635
|
connector: z.ZodObject<{
|
|
6132
6636
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
6133
6637
|
first: "first";
|
|
@@ -6395,6 +6899,68 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
6395
6899
|
}, z.z.core.$strip>>;
|
|
6396
6900
|
}, z.z.core.$strip>>;
|
|
6397
6901
|
}, z.z.core.$strip>>;
|
|
6902
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
6903
|
+
pipe_id: z.ZodLiteral<"company:match:crustdata@1">;
|
|
6904
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
6905
|
+
action: z.ZodEnum<{
|
|
6906
|
+
run: "run";
|
|
6907
|
+
}>;
|
|
6908
|
+
when: z.ZodObject<{
|
|
6909
|
+
logic: z.ZodEnum<{
|
|
6910
|
+
and: "and";
|
|
6911
|
+
or: "or";
|
|
6912
|
+
}>;
|
|
6913
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6914
|
+
property: z.ZodLiteral<"value">;
|
|
6915
|
+
field_name: z.ZodString;
|
|
6916
|
+
operator: z.ZodEnum<{
|
|
6917
|
+
eq: "eq";
|
|
6918
|
+
neq: "neq";
|
|
6919
|
+
gt: "gt";
|
|
6920
|
+
gte: "gte";
|
|
6921
|
+
lt: "lt";
|
|
6922
|
+
lte: "lte";
|
|
6923
|
+
contains: "contains";
|
|
6924
|
+
}>;
|
|
6925
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
6926
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
6927
|
+
property: z.ZodLiteral<"status">;
|
|
6928
|
+
field_name: z.ZodString;
|
|
6929
|
+
operator: z.ZodEnum<{
|
|
6930
|
+
eq: "eq";
|
|
6931
|
+
neq: "neq";
|
|
6932
|
+
}>;
|
|
6933
|
+
value: z.ZodEnum<{
|
|
6934
|
+
completed: "completed";
|
|
6935
|
+
failed: "failed";
|
|
6936
|
+
no_result: "no_result";
|
|
6937
|
+
skipped: "skipped";
|
|
6938
|
+
}>;
|
|
6939
|
+
}, z.z.core.$strip>], "property">>;
|
|
6940
|
+
}, z.z.core.$strip>;
|
|
6941
|
+
}, z.z.core.$strip>>>;
|
|
6942
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6943
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
6944
|
+
first: "first";
|
|
6945
|
+
}>>;
|
|
6946
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
6947
|
+
type: z.ZodLiteral<"vault">;
|
|
6948
|
+
connection: z.ZodString;
|
|
6949
|
+
}, z.z.core.$strip>>;
|
|
6950
|
+
}, z.z.core.$strip>>>;
|
|
6951
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
6952
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
6953
|
+
company_website_url: z.ZodDefault<z.ZodObject<{
|
|
6954
|
+
alias: z.ZodString;
|
|
6955
|
+
}, z.z.core.$strip>>;
|
|
6956
|
+
}, z.z.core.$strip>>;
|
|
6957
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
6958
|
+
crustdata_companyenrich_match: z.ZodDefault<z.ZodObject<{
|
|
6959
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
6960
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
6961
|
+
}, z.z.core.$strip>>;
|
|
6962
|
+
}, z.z.core.$strip>>;
|
|
6963
|
+
}, z.z.core.$strip>>;
|
|
6398
6964
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
6399
6965
|
pipe_id: z.ZodLiteral<"people:profile:workemail:crustdata@1">;
|
|
6400
6966
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -6627,6 +7193,76 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
6627
7193
|
}, z.z.core.$strip>>;
|
|
6628
7194
|
}, z.z.core.$strip>>;
|
|
6629
7195
|
}, z.z.core.$strip>>;
|
|
7196
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
7197
|
+
pipe_id: z.ZodLiteral<"sheet:row:append:sheet@1">;
|
|
7198
|
+
connector: z.ZodObject<{
|
|
7199
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
7200
|
+
first: "first";
|
|
7201
|
+
}>>;
|
|
7202
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
7203
|
+
type: z.ZodLiteral<"vault">;
|
|
7204
|
+
connection: z.ZodString;
|
|
7205
|
+
}, z.z.core.$strip>>;
|
|
7206
|
+
}, z.z.core.$strip>;
|
|
7207
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
7208
|
+
action: z.ZodEnum<{
|
|
7209
|
+
run: "run";
|
|
7210
|
+
}>;
|
|
7211
|
+
when: z.ZodObject<{
|
|
7212
|
+
logic: z.ZodEnum<{
|
|
7213
|
+
and: "and";
|
|
7214
|
+
or: "or";
|
|
7215
|
+
}>;
|
|
7216
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7217
|
+
property: z.ZodLiteral<"value">;
|
|
7218
|
+
field_name: z.ZodString;
|
|
7219
|
+
operator: z.ZodEnum<{
|
|
7220
|
+
eq: "eq";
|
|
7221
|
+
neq: "neq";
|
|
7222
|
+
gt: "gt";
|
|
7223
|
+
gte: "gte";
|
|
7224
|
+
lt: "lt";
|
|
7225
|
+
lte: "lte";
|
|
7226
|
+
contains: "contains";
|
|
7227
|
+
}>;
|
|
7228
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
7229
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
7230
|
+
property: z.ZodLiteral<"status">;
|
|
7231
|
+
field_name: z.ZodString;
|
|
7232
|
+
operator: z.ZodEnum<{
|
|
7233
|
+
eq: "eq";
|
|
7234
|
+
neq: "neq";
|
|
7235
|
+
}>;
|
|
7236
|
+
value: z.ZodEnum<{
|
|
7237
|
+
completed: "completed";
|
|
7238
|
+
failed: "failed";
|
|
7239
|
+
no_result: "no_result";
|
|
7240
|
+
skipped: "skipped";
|
|
7241
|
+
}>;
|
|
7242
|
+
}, z.z.core.$strip>], "property">>;
|
|
7243
|
+
}, z.z.core.$strip>;
|
|
7244
|
+
}, z.z.core.$strip>>>;
|
|
7245
|
+
config: z.ZodObject<{
|
|
7246
|
+
run: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
7247
|
+
allow_field_creation: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
7248
|
+
allow_sheet_creation: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
7249
|
+
new_sheet_team_id: z.ZodString;
|
|
7250
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
7251
|
+
sheet: z.ZodDefault<z.ZodObject<{
|
|
7252
|
+
alias: z.ZodString;
|
|
7253
|
+
}, z.z.core.$strip>>;
|
|
7254
|
+
}, z.z.core.$strip>>;
|
|
7255
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
7256
|
+
sheet_record_id: z.ZodDefault<z.ZodObject<{
|
|
7257
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
7258
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
7259
|
+
}, z.z.core.$strip>>;
|
|
7260
|
+
sheet_created: z.ZodDefault<z.ZodObject<{
|
|
7261
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
7262
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
7263
|
+
}, z.z.core.$strip>>;
|
|
7264
|
+
}, z.z.core.$strip>>;
|
|
7265
|
+
}, z.z.core.$strip>;
|
|
6630
7266
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
6631
7267
|
pipe_id: z.ZodLiteral<"company:identity@1">;
|
|
6632
7268
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -8574,25 +9210,87 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
8574
9210
|
connection: z.ZodString;
|
|
8575
9211
|
}, z.z.core.$strip>>;
|
|
8576
9212
|
}, z.z.core.$strip>>>;
|
|
8577
|
-
config: z.ZodObject<{
|
|
8578
|
-
providers: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8579
|
-
provider: z.ZodEnum<{
|
|
8580
|
-
leadmagic: "leadmagic";
|
|
8581
|
-
}>;
|
|
8582
|
-
}, z.z.core.$strip>>>;
|
|
8583
|
-
roles: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
9213
|
+
config: z.ZodObject<{
|
|
9214
|
+
providers: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
9215
|
+
provider: z.ZodEnum<{
|
|
9216
|
+
leadmagic: "leadmagic";
|
|
9217
|
+
}>;
|
|
9218
|
+
}, z.z.core.$strip>>>;
|
|
9219
|
+
roles: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
9220
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
9221
|
+
company_website_url: z.ZodDefault<z.ZodObject<{
|
|
9222
|
+
alias: z.ZodString;
|
|
9223
|
+
}, z.z.core.$strip>>;
|
|
9224
|
+
}, z.z.core.$strip>>;
|
|
9225
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
9226
|
+
role_finder_match: z.ZodDefault<z.ZodObject<{
|
|
9227
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
9228
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
9229
|
+
}, z.z.core.$strip>>;
|
|
9230
|
+
}, z.z.core.$strip>>;
|
|
9231
|
+
}, z.z.core.$strip>;
|
|
9232
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
9233
|
+
pipe_id: z.ZodLiteral<"people:identity:amplemarket@1">;
|
|
9234
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
9235
|
+
action: z.ZodEnum<{
|
|
9236
|
+
run: "run";
|
|
9237
|
+
}>;
|
|
9238
|
+
when: z.ZodObject<{
|
|
9239
|
+
logic: z.ZodEnum<{
|
|
9240
|
+
and: "and";
|
|
9241
|
+
or: "or";
|
|
9242
|
+
}>;
|
|
9243
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9244
|
+
property: z.ZodLiteral<"value">;
|
|
9245
|
+
field_name: z.ZodString;
|
|
9246
|
+
operator: z.ZodEnum<{
|
|
9247
|
+
eq: "eq";
|
|
9248
|
+
neq: "neq";
|
|
9249
|
+
gt: "gt";
|
|
9250
|
+
gte: "gte";
|
|
9251
|
+
lt: "lt";
|
|
9252
|
+
lte: "lte";
|
|
9253
|
+
contains: "contains";
|
|
9254
|
+
}>;
|
|
9255
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
9256
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
9257
|
+
property: z.ZodLiteral<"status">;
|
|
9258
|
+
field_name: z.ZodString;
|
|
9259
|
+
operator: z.ZodEnum<{
|
|
9260
|
+
eq: "eq";
|
|
9261
|
+
neq: "neq";
|
|
9262
|
+
}>;
|
|
9263
|
+
value: z.ZodEnum<{
|
|
9264
|
+
completed: "completed";
|
|
9265
|
+
failed: "failed";
|
|
9266
|
+
no_result: "no_result";
|
|
9267
|
+
skipped: "skipped";
|
|
9268
|
+
}>;
|
|
9269
|
+
}, z.z.core.$strip>], "property">>;
|
|
9270
|
+
}, z.z.core.$strip>;
|
|
9271
|
+
}, z.z.core.$strip>>>;
|
|
9272
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
9273
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
9274
|
+
first: "first";
|
|
9275
|
+
}>>;
|
|
9276
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
9277
|
+
type: z.ZodLiteral<"vault">;
|
|
9278
|
+
connection: z.ZodString;
|
|
9279
|
+
}, z.z.core.$strip>>;
|
|
9280
|
+
}, z.z.core.$strip>>>;
|
|
9281
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
8584
9282
|
input_fields: z.ZodOptional<z.ZodObject<{
|
|
8585
|
-
|
|
9283
|
+
email: z.ZodDefault<z.ZodObject<{
|
|
8586
9284
|
alias: z.ZodString;
|
|
8587
9285
|
}, z.z.core.$strip>>;
|
|
8588
9286
|
}, z.z.core.$strip>>;
|
|
8589
9287
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
8590
|
-
|
|
9288
|
+
amplemarket_person_match: z.ZodDefault<z.ZodObject<{
|
|
8591
9289
|
alias: z.ZodDefault<z.ZodString>;
|
|
8592
9290
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
8593
9291
|
}, z.z.core.$strip>>;
|
|
8594
9292
|
}, z.z.core.$strip>>;
|
|
8595
|
-
}, z.z.core.$strip
|
|
9293
|
+
}, z.z.core.$strip>>;
|
|
8596
9294
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
8597
9295
|
pipe_id: z.ZodLiteral<"company:identity@2">;
|
|
8598
9296
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -9267,6 +9965,130 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9267
9965
|
}, z.z.core.$strip>>;
|
|
9268
9966
|
}, z.z.core.$strip>>;
|
|
9269
9967
|
}, z.z.core.$strip>;
|
|
9968
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
9969
|
+
pipe_id: z.ZodLiteral<"field:slugify@1">;
|
|
9970
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
9971
|
+
action: z.ZodEnum<{
|
|
9972
|
+
run: "run";
|
|
9973
|
+
}>;
|
|
9974
|
+
when: z.ZodObject<{
|
|
9975
|
+
logic: z.ZodEnum<{
|
|
9976
|
+
and: "and";
|
|
9977
|
+
or: "or";
|
|
9978
|
+
}>;
|
|
9979
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9980
|
+
property: z.ZodLiteral<"value">;
|
|
9981
|
+
field_name: z.ZodString;
|
|
9982
|
+
operator: z.ZodEnum<{
|
|
9983
|
+
eq: "eq";
|
|
9984
|
+
neq: "neq";
|
|
9985
|
+
gt: "gt";
|
|
9986
|
+
gte: "gte";
|
|
9987
|
+
lt: "lt";
|
|
9988
|
+
lte: "lte";
|
|
9989
|
+
contains: "contains";
|
|
9990
|
+
}>;
|
|
9991
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
9992
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
9993
|
+
property: z.ZodLiteral<"status">;
|
|
9994
|
+
field_name: z.ZodString;
|
|
9995
|
+
operator: z.ZodEnum<{
|
|
9996
|
+
eq: "eq";
|
|
9997
|
+
neq: "neq";
|
|
9998
|
+
}>;
|
|
9999
|
+
value: z.ZodEnum<{
|
|
10000
|
+
completed: "completed";
|
|
10001
|
+
failed: "failed";
|
|
10002
|
+
no_result: "no_result";
|
|
10003
|
+
skipped: "skipped";
|
|
10004
|
+
}>;
|
|
10005
|
+
}, z.z.core.$strip>], "property">>;
|
|
10006
|
+
}, z.z.core.$strip>;
|
|
10007
|
+
}, z.z.core.$strip>>>;
|
|
10008
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
10009
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
10010
|
+
first: "first";
|
|
10011
|
+
}>>;
|
|
10012
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
10013
|
+
type: z.ZodLiteral<"vault">;
|
|
10014
|
+
connection: z.ZodString;
|
|
10015
|
+
}, z.z.core.$strip>>;
|
|
10016
|
+
}, z.z.core.$strip>>>;
|
|
10017
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
10018
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
10019
|
+
string_input: z.ZodDefault<z.ZodObject<{
|
|
10020
|
+
alias: z.ZodString;
|
|
10021
|
+
}, z.z.core.$strip>>;
|
|
10022
|
+
}, z.z.core.$strip>>;
|
|
10023
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
10024
|
+
slugified: z.ZodDefault<z.ZodObject<{
|
|
10025
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
10026
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
10027
|
+
}, z.z.core.$strip>>;
|
|
10028
|
+
}, z.z.core.$strip>>;
|
|
10029
|
+
}, z.z.core.$strip>>;
|
|
10030
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
10031
|
+
pipe_id: z.ZodLiteral<"field:domainify@1">;
|
|
10032
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
10033
|
+
action: z.ZodEnum<{
|
|
10034
|
+
run: "run";
|
|
10035
|
+
}>;
|
|
10036
|
+
when: z.ZodObject<{
|
|
10037
|
+
logic: z.ZodEnum<{
|
|
10038
|
+
and: "and";
|
|
10039
|
+
or: "or";
|
|
10040
|
+
}>;
|
|
10041
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
10042
|
+
property: z.ZodLiteral<"value">;
|
|
10043
|
+
field_name: z.ZodString;
|
|
10044
|
+
operator: z.ZodEnum<{
|
|
10045
|
+
eq: "eq";
|
|
10046
|
+
neq: "neq";
|
|
10047
|
+
gt: "gt";
|
|
10048
|
+
gte: "gte";
|
|
10049
|
+
lt: "lt";
|
|
10050
|
+
lte: "lte";
|
|
10051
|
+
contains: "contains";
|
|
10052
|
+
}>;
|
|
10053
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
10054
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
10055
|
+
property: z.ZodLiteral<"status">;
|
|
10056
|
+
field_name: z.ZodString;
|
|
10057
|
+
operator: z.ZodEnum<{
|
|
10058
|
+
eq: "eq";
|
|
10059
|
+
neq: "neq";
|
|
10060
|
+
}>;
|
|
10061
|
+
value: z.ZodEnum<{
|
|
10062
|
+
completed: "completed";
|
|
10063
|
+
failed: "failed";
|
|
10064
|
+
no_result: "no_result";
|
|
10065
|
+
skipped: "skipped";
|
|
10066
|
+
}>;
|
|
10067
|
+
}, z.z.core.$strip>], "property">>;
|
|
10068
|
+
}, z.z.core.$strip>;
|
|
10069
|
+
}, z.z.core.$strip>>>;
|
|
10070
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
10071
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
10072
|
+
first: "first";
|
|
10073
|
+
}>>;
|
|
10074
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
10075
|
+
type: z.ZodLiteral<"vault">;
|
|
10076
|
+
connection: z.ZodString;
|
|
10077
|
+
}, z.z.core.$strip>>;
|
|
10078
|
+
}, z.z.core.$strip>>>;
|
|
10079
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
10080
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
10081
|
+
url_input: z.ZodDefault<z.ZodObject<{
|
|
10082
|
+
alias: z.ZodString;
|
|
10083
|
+
}, z.z.core.$strip>>;
|
|
10084
|
+
}, z.z.core.$strip>>;
|
|
10085
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
10086
|
+
domain: z.ZodDefault<z.ZodObject<{
|
|
10087
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
10088
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
10089
|
+
}, z.z.core.$strip>>;
|
|
10090
|
+
}, z.z.core.$strip>>;
|
|
10091
|
+
}, z.z.core.$strip>>;
|
|
9270
10092
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
9271
10093
|
pipe_id: z.ZodLiteral<"website:scrape:firecrawl@1">;
|
|
9272
10094
|
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -9546,7 +10368,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9546
10368
|
}, z.z.core.$strip>>;
|
|
9547
10369
|
}, z.z.core.$strip>>;
|
|
9548
10370
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
9549
|
-
pipe_id: z.ZodLiteral<"sheet:append@1">;
|
|
10371
|
+
pipe_id: z.ZodLiteral<"sheet:row:append@1">;
|
|
9550
10372
|
connector: z.ZodObject<{
|
|
9551
10373
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
9552
10374
|
first: "first";
|
|
@@ -9607,7 +10429,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9607
10429
|
}, z.z.core.$strip>>;
|
|
9608
10430
|
}, z.z.core.$strip>;
|
|
9609
10431
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
9610
|
-
pipe_id: z.ZodLiteral<"sheet:expandappend@1">;
|
|
10432
|
+
pipe_id: z.ZodLiteral<"sheet:row:expandappend@1">;
|
|
9611
10433
|
connector: z.ZodObject<{
|
|
9612
10434
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
9613
10435
|
first: "first";
|
|
@@ -9875,6 +10697,68 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9875
10697
|
}, z.z.core.$strip>>;
|
|
9876
10698
|
}, z.z.core.$strip>>;
|
|
9877
10699
|
}, z.z.core.$strip>>;
|
|
10700
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
10701
|
+
pipe_id: z.ZodLiteral<"company:match:crustdata@1">;
|
|
10702
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
10703
|
+
action: z.ZodEnum<{
|
|
10704
|
+
run: "run";
|
|
10705
|
+
}>;
|
|
10706
|
+
when: z.ZodObject<{
|
|
10707
|
+
logic: z.ZodEnum<{
|
|
10708
|
+
and: "and";
|
|
10709
|
+
or: "or";
|
|
10710
|
+
}>;
|
|
10711
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
10712
|
+
property: z.ZodLiteral<"value">;
|
|
10713
|
+
field_name: z.ZodString;
|
|
10714
|
+
operator: z.ZodEnum<{
|
|
10715
|
+
eq: "eq";
|
|
10716
|
+
neq: "neq";
|
|
10717
|
+
gt: "gt";
|
|
10718
|
+
gte: "gte";
|
|
10719
|
+
lt: "lt";
|
|
10720
|
+
lte: "lte";
|
|
10721
|
+
contains: "contains";
|
|
10722
|
+
}>;
|
|
10723
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
10724
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
10725
|
+
property: z.ZodLiteral<"status">;
|
|
10726
|
+
field_name: z.ZodString;
|
|
10727
|
+
operator: z.ZodEnum<{
|
|
10728
|
+
eq: "eq";
|
|
10729
|
+
neq: "neq";
|
|
10730
|
+
}>;
|
|
10731
|
+
value: z.ZodEnum<{
|
|
10732
|
+
completed: "completed";
|
|
10733
|
+
failed: "failed";
|
|
10734
|
+
no_result: "no_result";
|
|
10735
|
+
skipped: "skipped";
|
|
10736
|
+
}>;
|
|
10737
|
+
}, z.z.core.$strip>], "property">>;
|
|
10738
|
+
}, z.z.core.$strip>;
|
|
10739
|
+
}, z.z.core.$strip>>>;
|
|
10740
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10741
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
10742
|
+
first: "first";
|
|
10743
|
+
}>>;
|
|
10744
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
10745
|
+
type: z.ZodLiteral<"vault">;
|
|
10746
|
+
connection: z.ZodString;
|
|
10747
|
+
}, z.z.core.$strip>>;
|
|
10748
|
+
}, z.z.core.$strip>>>;
|
|
10749
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
10750
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
10751
|
+
company_website_url: z.ZodDefault<z.ZodObject<{
|
|
10752
|
+
alias: z.ZodString;
|
|
10753
|
+
}, z.z.core.$strip>>;
|
|
10754
|
+
}, z.z.core.$strip>>;
|
|
10755
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
10756
|
+
crustdata_companyenrich_match: z.ZodDefault<z.ZodObject<{
|
|
10757
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
10758
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
10759
|
+
}, z.z.core.$strip>>;
|
|
10760
|
+
}, z.z.core.$strip>>;
|
|
10761
|
+
}, z.z.core.$strip>>;
|
|
9878
10762
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
9879
10763
|
pipe_id: z.ZodLiteral<"people:profile:workemail:crustdata@1">;
|
|
9880
10764
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -10107,6 +10991,76 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10107
10991
|
}, z.z.core.$strip>>;
|
|
10108
10992
|
}, z.z.core.$strip>>;
|
|
10109
10993
|
}, z.z.core.$strip>>;
|
|
10994
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
10995
|
+
pipe_id: z.ZodLiteral<"sheet:row:append:sheet@1">;
|
|
10996
|
+
connector: z.ZodObject<{
|
|
10997
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
10998
|
+
first: "first";
|
|
10999
|
+
}>>;
|
|
11000
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
11001
|
+
type: z.ZodLiteral<"vault">;
|
|
11002
|
+
connection: z.ZodString;
|
|
11003
|
+
}, z.z.core.$strip>>;
|
|
11004
|
+
}, z.z.core.$strip>;
|
|
11005
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11006
|
+
action: z.ZodEnum<{
|
|
11007
|
+
run: "run";
|
|
11008
|
+
}>;
|
|
11009
|
+
when: z.ZodObject<{
|
|
11010
|
+
logic: z.ZodEnum<{
|
|
11011
|
+
and: "and";
|
|
11012
|
+
or: "or";
|
|
11013
|
+
}>;
|
|
11014
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11015
|
+
property: z.ZodLiteral<"value">;
|
|
11016
|
+
field_name: z.ZodString;
|
|
11017
|
+
operator: z.ZodEnum<{
|
|
11018
|
+
eq: "eq";
|
|
11019
|
+
neq: "neq";
|
|
11020
|
+
gt: "gt";
|
|
11021
|
+
gte: "gte";
|
|
11022
|
+
lt: "lt";
|
|
11023
|
+
lte: "lte";
|
|
11024
|
+
contains: "contains";
|
|
11025
|
+
}>;
|
|
11026
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
11027
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
11028
|
+
property: z.ZodLiteral<"status">;
|
|
11029
|
+
field_name: z.ZodString;
|
|
11030
|
+
operator: z.ZodEnum<{
|
|
11031
|
+
eq: "eq";
|
|
11032
|
+
neq: "neq";
|
|
11033
|
+
}>;
|
|
11034
|
+
value: z.ZodEnum<{
|
|
11035
|
+
completed: "completed";
|
|
11036
|
+
failed: "failed";
|
|
11037
|
+
no_result: "no_result";
|
|
11038
|
+
skipped: "skipped";
|
|
11039
|
+
}>;
|
|
11040
|
+
}, z.z.core.$strip>], "property">>;
|
|
11041
|
+
}, z.z.core.$strip>;
|
|
11042
|
+
}, z.z.core.$strip>>>;
|
|
11043
|
+
config: z.ZodObject<{
|
|
11044
|
+
run: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
11045
|
+
allow_field_creation: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
11046
|
+
allow_sheet_creation: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
11047
|
+
new_sheet_team_id: z.ZodString;
|
|
11048
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
11049
|
+
sheet: z.ZodDefault<z.ZodObject<{
|
|
11050
|
+
alias: z.ZodString;
|
|
11051
|
+
}, z.z.core.$strip>>;
|
|
11052
|
+
}, z.z.core.$strip>>;
|
|
11053
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
11054
|
+
sheet_record_id: z.ZodDefault<z.ZodObject<{
|
|
11055
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
11056
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
11057
|
+
}, z.z.core.$strip>>;
|
|
11058
|
+
sheet_created: z.ZodDefault<z.ZodObject<{
|
|
11059
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
11060
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
11061
|
+
}, z.z.core.$strip>>;
|
|
11062
|
+
}, z.z.core.$strip>>;
|
|
11063
|
+
}, z.z.core.$strip>;
|
|
10110
11064
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
10111
11065
|
pipe_id: z.ZodLiteral<"company:identity@1">;
|
|
10112
11066
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -10518,6 +11472,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10518
11472
|
"template:fill@1": "template:fill@1";
|
|
10519
11473
|
"contact:create:resend@1": "contact:create:resend@1";
|
|
10520
11474
|
"people:match:role:waterfall@1": "people:match:role:waterfall@1";
|
|
11475
|
+
"people:identity:amplemarket@1": "people:identity:amplemarket@1";
|
|
10521
11476
|
"company:identity@2": "company:identity@2";
|
|
10522
11477
|
"people:phone:profile:waterfall@1": "people:phone:profile:waterfall@1";
|
|
10523
11478
|
"people:personalemail:profile:waterfall@1": "people:personalemail:profile:waterfall@1";
|
|
@@ -10528,18 +11483,22 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10528
11483
|
"people:email:validate:millionverifier@1": "people:email:validate:millionverifier@1";
|
|
10529
11484
|
"people:phone:workemail:waterfall@1": "people:phone:workemail:waterfall@1";
|
|
10530
11485
|
"fields:merge@1": "fields:merge@1";
|
|
11486
|
+
"field:slugify@1": "field:slugify@1";
|
|
11487
|
+
"field:domainify@1": "field:domainify@1";
|
|
10531
11488
|
"website:scrape:firecrawl@1": "website:scrape:firecrawl@1";
|
|
10532
11489
|
"website:scrapelist:firecrawl@1": "website:scrapelist:firecrawl@1";
|
|
10533
11490
|
"website:extract:firecrawl@1": "website:extract:firecrawl@1";
|
|
10534
11491
|
"website:maplinks:firecrawl@1": "website:maplinks:firecrawl@1";
|
|
10535
|
-
"sheet:append@1": "sheet:append@1";
|
|
10536
|
-
"sheet:expandappend@1": "sheet:expandappend@1";
|
|
11492
|
+
"sheet:row:append@1": "sheet:row:append@1";
|
|
11493
|
+
"sheet:row:expandappend@1": "sheet:row:expandappend@1";
|
|
10537
11494
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
10538
11495
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
10539
11496
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
11497
|
+
"company:match:crustdata@1": "company:match:crustdata@1";
|
|
10540
11498
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
10541
11499
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
10542
11500
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
11501
|
+
"sheet:row:append:sheet@1": "sheet:row:append:sheet@1";
|
|
10543
11502
|
"company:identity@1": "company:identity@1";
|
|
10544
11503
|
"people:professionalprofile:waterfall@1": "people:professionalprofile:waterfall@1";
|
|
10545
11504
|
"people:professionalprofileurl:name@1": "people:professionalprofileurl:name@1";
|
|
@@ -10574,6 +11533,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10574
11533
|
"template:fill@1": "template:fill@1";
|
|
10575
11534
|
"contact:create:resend@1": "contact:create:resend@1";
|
|
10576
11535
|
"people:match:role:waterfall@1": "people:match:role:waterfall@1";
|
|
11536
|
+
"people:identity:amplemarket@1": "people:identity:amplemarket@1";
|
|
10577
11537
|
"company:identity@2": "company:identity@2";
|
|
10578
11538
|
"people:phone:profile:waterfall@1": "people:phone:profile:waterfall@1";
|
|
10579
11539
|
"people:personalemail:profile:waterfall@1": "people:personalemail:profile:waterfall@1";
|
|
@@ -10584,18 +11544,22 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10584
11544
|
"people:email:validate:millionverifier@1": "people:email:validate:millionverifier@1";
|
|
10585
11545
|
"people:phone:workemail:waterfall@1": "people:phone:workemail:waterfall@1";
|
|
10586
11546
|
"fields:merge@1": "fields:merge@1";
|
|
11547
|
+
"field:slugify@1": "field:slugify@1";
|
|
11548
|
+
"field:domainify@1": "field:domainify@1";
|
|
10587
11549
|
"website:scrape:firecrawl@1": "website:scrape:firecrawl@1";
|
|
10588
11550
|
"website:scrapelist:firecrawl@1": "website:scrapelist:firecrawl@1";
|
|
10589
11551
|
"website:extract:firecrawl@1": "website:extract:firecrawl@1";
|
|
10590
11552
|
"website:maplinks:firecrawl@1": "website:maplinks:firecrawl@1";
|
|
10591
|
-
"sheet:append@1": "sheet:append@1";
|
|
10592
|
-
"sheet:expandappend@1": "sheet:expandappend@1";
|
|
11553
|
+
"sheet:row:append@1": "sheet:row:append@1";
|
|
11554
|
+
"sheet:row:expandappend@1": "sheet:row:expandappend@1";
|
|
10593
11555
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
10594
11556
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
10595
11557
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
11558
|
+
"company:match:crustdata@1": "company:match:crustdata@1";
|
|
10596
11559
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
10597
11560
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
10598
11561
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
11562
|
+
"sheet:row:append:sheet@1": "sheet:row:append:sheet@1";
|
|
10599
11563
|
"company:identity@1": "company:identity@1";
|
|
10600
11564
|
"people:professionalprofile:waterfall@1": "people:professionalprofile:waterfall@1";
|
|
10601
11565
|
"people:professionalprofileurl:name@1": "people:professionalprofileurl:name@1";
|
|
@@ -10652,6 +11616,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10652
11616
|
openai: "openai";
|
|
10653
11617
|
companyenrich: "companyenrich";
|
|
10654
11618
|
logodev: "logodev";
|
|
11619
|
+
amplemarket: "amplemarket";
|
|
10655
11620
|
}>;
|
|
10656
11621
|
}, z.z.core.$strip>>;
|
|
10657
11622
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -10678,6 +11643,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10678
11643
|
openai: "openai";
|
|
10679
11644
|
companyenrich: "companyenrich";
|
|
10680
11645
|
logodev: "logodev";
|
|
11646
|
+
amplemarket: "amplemarket";
|
|
10681
11647
|
}>>;
|
|
10682
11648
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
10683
11649
|
pipe0: "pipe0";
|
|
@@ -10703,6 +11669,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10703
11669
|
openai: "openai";
|
|
10704
11670
|
companyenrich: "companyenrich";
|
|
10705
11671
|
logodev: "logodev";
|
|
11672
|
+
amplemarket: "amplemarket";
|
|
10706
11673
|
}>>;
|
|
10707
11674
|
}, z.z.core.$strip>>>;
|
|
10708
11675
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -10806,6 +11773,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10806
11773
|
"template:fill@1": "template:fill@1";
|
|
10807
11774
|
"contact:create:resend@1": "contact:create:resend@1";
|
|
10808
11775
|
"people:match:role:waterfall@1": "people:match:role:waterfall@1";
|
|
11776
|
+
"people:identity:amplemarket@1": "people:identity:amplemarket@1";
|
|
10809
11777
|
"company:identity@2": "company:identity@2";
|
|
10810
11778
|
"people:phone:profile:waterfall@1": "people:phone:profile:waterfall@1";
|
|
10811
11779
|
"people:personalemail:profile:waterfall@1": "people:personalemail:profile:waterfall@1";
|
|
@@ -10816,18 +11784,22 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10816
11784
|
"people:email:validate:millionverifier@1": "people:email:validate:millionverifier@1";
|
|
10817
11785
|
"people:phone:workemail:waterfall@1": "people:phone:workemail:waterfall@1";
|
|
10818
11786
|
"fields:merge@1": "fields:merge@1";
|
|
11787
|
+
"field:slugify@1": "field:slugify@1";
|
|
11788
|
+
"field:domainify@1": "field:domainify@1";
|
|
10819
11789
|
"website:scrape:firecrawl@1": "website:scrape:firecrawl@1";
|
|
10820
11790
|
"website:scrapelist:firecrawl@1": "website:scrapelist:firecrawl@1";
|
|
10821
11791
|
"website:extract:firecrawl@1": "website:extract:firecrawl@1";
|
|
10822
11792
|
"website:maplinks:firecrawl@1": "website:maplinks:firecrawl@1";
|
|
10823
|
-
"sheet:append@1": "sheet:append@1";
|
|
10824
|
-
"sheet:expandappend@1": "sheet:expandappend@1";
|
|
11793
|
+
"sheet:row:append@1": "sheet:row:append@1";
|
|
11794
|
+
"sheet:row:expandappend@1": "sheet:row:expandappend@1";
|
|
10825
11795
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
10826
11796
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
10827
11797
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
11798
|
+
"company:match:crustdata@1": "company:match:crustdata@1";
|
|
10828
11799
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
10829
11800
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
10830
11801
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
11802
|
+
"sheet:row:append:sheet@1": "sheet:row:append:sheet@1";
|
|
10831
11803
|
"company:identity@1": "company:identity@1";
|
|
10832
11804
|
"people:professionalprofile:waterfall@1": "people:professionalprofile:waterfall@1";
|
|
10833
11805
|
"people:professionalprofileurl:name@1": "people:professionalprofileurl:name@1";
|
|
@@ -10862,6 +11834,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10862
11834
|
"template:fill@1": "template:fill@1";
|
|
10863
11835
|
"contact:create:resend@1": "contact:create:resend@1";
|
|
10864
11836
|
"people:match:role:waterfall@1": "people:match:role:waterfall@1";
|
|
11837
|
+
"people:identity:amplemarket@1": "people:identity:amplemarket@1";
|
|
10865
11838
|
"company:identity@2": "company:identity@2";
|
|
10866
11839
|
"people:phone:profile:waterfall@1": "people:phone:profile:waterfall@1";
|
|
10867
11840
|
"people:personalemail:profile:waterfall@1": "people:personalemail:profile:waterfall@1";
|
|
@@ -10872,18 +11845,22 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10872
11845
|
"people:email:validate:millionverifier@1": "people:email:validate:millionverifier@1";
|
|
10873
11846
|
"people:phone:workemail:waterfall@1": "people:phone:workemail:waterfall@1";
|
|
10874
11847
|
"fields:merge@1": "fields:merge@1";
|
|
11848
|
+
"field:slugify@1": "field:slugify@1";
|
|
11849
|
+
"field:domainify@1": "field:domainify@1";
|
|
10875
11850
|
"website:scrape:firecrawl@1": "website:scrape:firecrawl@1";
|
|
10876
11851
|
"website:scrapelist:firecrawl@1": "website:scrapelist:firecrawl@1";
|
|
10877
11852
|
"website:extract:firecrawl@1": "website:extract:firecrawl@1";
|
|
10878
11853
|
"website:maplinks:firecrawl@1": "website:maplinks:firecrawl@1";
|
|
10879
|
-
"sheet:append@1": "sheet:append@1";
|
|
10880
|
-
"sheet:expandappend@1": "sheet:expandappend@1";
|
|
11854
|
+
"sheet:row:append@1": "sheet:row:append@1";
|
|
11855
|
+
"sheet:row:expandappend@1": "sheet:row:expandappend@1";
|
|
10881
11856
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
10882
11857
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
10883
11858
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
11859
|
+
"company:match:crustdata@1": "company:match:crustdata@1";
|
|
10884
11860
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
10885
11861
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
10886
11862
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
11863
|
+
"sheet:row:append:sheet@1": "sheet:row:append:sheet@1";
|
|
10887
11864
|
"company:identity@1": "company:identity@1";
|
|
10888
11865
|
"people:professionalprofile:waterfall@1": "people:professionalprofile:waterfall@1";
|
|
10889
11866
|
"people:professionalprofileurl:name@1": "people:professionalprofileurl:name@1";
|
|
@@ -10940,6 +11917,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10940
11917
|
openai: "openai";
|
|
10941
11918
|
companyenrich: "companyenrich";
|
|
10942
11919
|
logodev: "logodev";
|
|
11920
|
+
amplemarket: "amplemarket";
|
|
10943
11921
|
}>;
|
|
10944
11922
|
}, z.z.core.$strip>>;
|
|
10945
11923
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -10966,6 +11944,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10966
11944
|
openai: "openai";
|
|
10967
11945
|
companyenrich: "companyenrich";
|
|
10968
11946
|
logodev: "logodev";
|
|
11947
|
+
amplemarket: "amplemarket";
|
|
10969
11948
|
}>>;
|
|
10970
11949
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
10971
11950
|
pipe0: "pipe0";
|
|
@@ -10991,6 +11970,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10991
11970
|
openai: "openai";
|
|
10992
11971
|
companyenrich: "companyenrich";
|
|
10993
11972
|
logodev: "logodev";
|
|
11973
|
+
amplemarket: "amplemarket";
|
|
10994
11974
|
}>>;
|
|
10995
11975
|
}, z.z.core.$strip>>>;
|
|
10996
11976
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|