@pipe0/ops 0.0.9 → 0.0.11
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 +935 -0
- package/dist/fields/json-meta/fields/amplemarket-person-match.d.ts +412 -0
- package/dist/form-generation/fields.d.ts +13 -12
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2436 -1233
- 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 +3 -3
- 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/fields-merge-1.d.ts +6 -2
- 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-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} +17 -9
- package/dist/pipes/catalog/entries/sheet-row-append-sheet-1.d.ts +228 -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 +415 -3
- package/dist/pipes/catalog/pipes-catalog.d.ts +2019 -359
- 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 +1105 -92
- 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 +10 -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<{
|
|
@@ -1697,6 +1759,68 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1697
1759
|
}, z.z.core.$strip>>;
|
|
1698
1760
|
}, z.z.core.$strip>>;
|
|
1699
1761
|
}, z.z.core.$strip>>;
|
|
1762
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
1763
|
+
pipe_id: z.ZodLiteral<"people:match:amplemarket@1">;
|
|
1764
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1765
|
+
action: z.ZodEnum<{
|
|
1766
|
+
run: "run";
|
|
1767
|
+
}>;
|
|
1768
|
+
when: z.ZodObject<{
|
|
1769
|
+
logic: z.ZodEnum<{
|
|
1770
|
+
and: "and";
|
|
1771
|
+
or: "or";
|
|
1772
|
+
}>;
|
|
1773
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1774
|
+
property: z.ZodLiteral<"value">;
|
|
1775
|
+
field_name: z.ZodString;
|
|
1776
|
+
operator: z.ZodEnum<{
|
|
1777
|
+
eq: "eq";
|
|
1778
|
+
neq: "neq";
|
|
1779
|
+
gt: "gt";
|
|
1780
|
+
gte: "gte";
|
|
1781
|
+
lt: "lt";
|
|
1782
|
+
lte: "lte";
|
|
1783
|
+
contains: "contains";
|
|
1784
|
+
}>;
|
|
1785
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
1786
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
1787
|
+
property: z.ZodLiteral<"status">;
|
|
1788
|
+
field_name: z.ZodString;
|
|
1789
|
+
operator: z.ZodEnum<{
|
|
1790
|
+
eq: "eq";
|
|
1791
|
+
neq: "neq";
|
|
1792
|
+
}>;
|
|
1793
|
+
value: z.ZodEnum<{
|
|
1794
|
+
completed: "completed";
|
|
1795
|
+
failed: "failed";
|
|
1796
|
+
no_result: "no_result";
|
|
1797
|
+
skipped: "skipped";
|
|
1798
|
+
}>;
|
|
1799
|
+
}, z.z.core.$strip>], "property">>;
|
|
1800
|
+
}, z.z.core.$strip>;
|
|
1801
|
+
}, z.z.core.$strip>>>;
|
|
1802
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1803
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
1804
|
+
first: "first";
|
|
1805
|
+
}>>;
|
|
1806
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
1807
|
+
type: z.ZodLiteral<"vault">;
|
|
1808
|
+
connection: z.ZodString;
|
|
1809
|
+
}, z.z.core.$strip>>;
|
|
1810
|
+
}, z.z.core.$strip>>>;
|
|
1811
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
1812
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
1813
|
+
profile_url: z.ZodDefault<z.ZodObject<{
|
|
1814
|
+
alias: z.ZodString;
|
|
1815
|
+
}, z.z.core.$strip>>;
|
|
1816
|
+
}, z.z.core.$strip>>;
|
|
1817
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
1818
|
+
amplemarket_person_match: z.ZodDefault<z.ZodObject<{
|
|
1819
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
1820
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1821
|
+
}, z.z.core.$strip>>;
|
|
1822
|
+
}, z.z.core.$strip>>;
|
|
1823
|
+
}, z.z.core.$strip>>;
|
|
1700
1824
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
1701
1825
|
pipe_id: z.ZodLiteral<"people:phone:profile:waterfall@1">;
|
|
1702
1826
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -2293,7 +2417,9 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2293
2417
|
config: z.ZodObject<{
|
|
2294
2418
|
sources: z.ZodArray<z.ZodObject<{
|
|
2295
2419
|
field_name: z.ZodString;
|
|
2296
|
-
}, z.z.core.$strip
|
|
2420
|
+
}, z.z.core.$strip>> | z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2421
|
+
field_name: z.ZodString;
|
|
2422
|
+
}, z.z.core.$strip>>>;
|
|
2297
2423
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
2298
2424
|
merge_result: z.ZodDefault<z.ZodObject<{
|
|
2299
2425
|
alias: z.ZodDefault<z.ZodString>;
|
|
@@ -2301,6 +2427,130 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2301
2427
|
}, z.z.core.$strip>>;
|
|
2302
2428
|
}, z.z.core.$strip>>;
|
|
2303
2429
|
}, z.z.core.$strip>;
|
|
2430
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
2431
|
+
pipe_id: z.ZodLiteral<"field:slugify@1">;
|
|
2432
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2433
|
+
action: z.ZodEnum<{
|
|
2434
|
+
run: "run";
|
|
2435
|
+
}>;
|
|
2436
|
+
when: z.ZodObject<{
|
|
2437
|
+
logic: z.ZodEnum<{
|
|
2438
|
+
and: "and";
|
|
2439
|
+
or: "or";
|
|
2440
|
+
}>;
|
|
2441
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2442
|
+
property: z.ZodLiteral<"value">;
|
|
2443
|
+
field_name: z.ZodString;
|
|
2444
|
+
operator: z.ZodEnum<{
|
|
2445
|
+
eq: "eq";
|
|
2446
|
+
neq: "neq";
|
|
2447
|
+
gt: "gt";
|
|
2448
|
+
gte: "gte";
|
|
2449
|
+
lt: "lt";
|
|
2450
|
+
lte: "lte";
|
|
2451
|
+
contains: "contains";
|
|
2452
|
+
}>;
|
|
2453
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
2454
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
2455
|
+
property: z.ZodLiteral<"status">;
|
|
2456
|
+
field_name: z.ZodString;
|
|
2457
|
+
operator: z.ZodEnum<{
|
|
2458
|
+
eq: "eq";
|
|
2459
|
+
neq: "neq";
|
|
2460
|
+
}>;
|
|
2461
|
+
value: z.ZodEnum<{
|
|
2462
|
+
completed: "completed";
|
|
2463
|
+
failed: "failed";
|
|
2464
|
+
no_result: "no_result";
|
|
2465
|
+
skipped: "skipped";
|
|
2466
|
+
}>;
|
|
2467
|
+
}, z.z.core.$strip>], "property">>;
|
|
2468
|
+
}, z.z.core.$strip>;
|
|
2469
|
+
}, z.z.core.$strip>>>;
|
|
2470
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2471
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
2472
|
+
first: "first";
|
|
2473
|
+
}>>;
|
|
2474
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
2475
|
+
type: z.ZodLiteral<"vault">;
|
|
2476
|
+
connection: z.ZodString;
|
|
2477
|
+
}, z.z.core.$strip>>;
|
|
2478
|
+
}, z.z.core.$strip>>>;
|
|
2479
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
2480
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
2481
|
+
string_input: z.ZodDefault<z.ZodObject<{
|
|
2482
|
+
alias: z.ZodString;
|
|
2483
|
+
}, z.z.core.$strip>>;
|
|
2484
|
+
}, z.z.core.$strip>>;
|
|
2485
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
2486
|
+
slugified: z.ZodDefault<z.ZodObject<{
|
|
2487
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
2488
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2489
|
+
}, z.z.core.$strip>>;
|
|
2490
|
+
}, z.z.core.$strip>>;
|
|
2491
|
+
}, z.z.core.$strip>>;
|
|
2492
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
2493
|
+
pipe_id: z.ZodLiteral<"field:domainify@1">;
|
|
2494
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2495
|
+
action: z.ZodEnum<{
|
|
2496
|
+
run: "run";
|
|
2497
|
+
}>;
|
|
2498
|
+
when: z.ZodObject<{
|
|
2499
|
+
logic: z.ZodEnum<{
|
|
2500
|
+
and: "and";
|
|
2501
|
+
or: "or";
|
|
2502
|
+
}>;
|
|
2503
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2504
|
+
property: z.ZodLiteral<"value">;
|
|
2505
|
+
field_name: z.ZodString;
|
|
2506
|
+
operator: z.ZodEnum<{
|
|
2507
|
+
eq: "eq";
|
|
2508
|
+
neq: "neq";
|
|
2509
|
+
gt: "gt";
|
|
2510
|
+
gte: "gte";
|
|
2511
|
+
lt: "lt";
|
|
2512
|
+
lte: "lte";
|
|
2513
|
+
contains: "contains";
|
|
2514
|
+
}>;
|
|
2515
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
2516
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
2517
|
+
property: z.ZodLiteral<"status">;
|
|
2518
|
+
field_name: z.ZodString;
|
|
2519
|
+
operator: z.ZodEnum<{
|
|
2520
|
+
eq: "eq";
|
|
2521
|
+
neq: "neq";
|
|
2522
|
+
}>;
|
|
2523
|
+
value: z.ZodEnum<{
|
|
2524
|
+
completed: "completed";
|
|
2525
|
+
failed: "failed";
|
|
2526
|
+
no_result: "no_result";
|
|
2527
|
+
skipped: "skipped";
|
|
2528
|
+
}>;
|
|
2529
|
+
}, z.z.core.$strip>], "property">>;
|
|
2530
|
+
}, z.z.core.$strip>;
|
|
2531
|
+
}, z.z.core.$strip>>>;
|
|
2532
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2533
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
2534
|
+
first: "first";
|
|
2535
|
+
}>>;
|
|
2536
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
2537
|
+
type: z.ZodLiteral<"vault">;
|
|
2538
|
+
connection: z.ZodString;
|
|
2539
|
+
}, z.z.core.$strip>>;
|
|
2540
|
+
}, z.z.core.$strip>>>;
|
|
2541
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
2542
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
2543
|
+
url_input: z.ZodDefault<z.ZodObject<{
|
|
2544
|
+
alias: z.ZodString;
|
|
2545
|
+
}, z.z.core.$strip>>;
|
|
2546
|
+
}, z.z.core.$strip>>;
|
|
2547
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
2548
|
+
domain: z.ZodDefault<z.ZodObject<{
|
|
2549
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
2550
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2551
|
+
}, z.z.core.$strip>>;
|
|
2552
|
+
}, z.z.core.$strip>>;
|
|
2553
|
+
}, z.z.core.$strip>>;
|
|
2304
2554
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
2305
2555
|
pipe_id: z.ZodLiteral<"website:scrape:firecrawl@1">;
|
|
2306
2556
|
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2580,7 +2830,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2580
2830
|
}, z.z.core.$strip>>;
|
|
2581
2831
|
}, z.z.core.$strip>>;
|
|
2582
2832
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
2583
|
-
pipe_id: z.ZodLiteral<"sheet:append@1">;
|
|
2833
|
+
pipe_id: z.ZodLiteral<"sheet:row:append@1">;
|
|
2584
2834
|
connector: z.ZodObject<{
|
|
2585
2835
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
2586
2836
|
first: "first";
|
|
@@ -2632,7 +2882,11 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2632
2882
|
sheet: z.ZodString;
|
|
2633
2883
|
run: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
2634
2884
|
allow_field_creation: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
2635
|
-
included_fields: z.
|
|
2885
|
+
included_fields: z.ZodArray<z.ZodObject<{
|
|
2886
|
+
field_name: z.ZodString;
|
|
2887
|
+
}, z.z.core.$strip>> | z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2888
|
+
field_name: z.ZodString;
|
|
2889
|
+
}, z.z.core.$strip>>>;
|
|
2636
2890
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
2637
2891
|
sheet_record_id: z.ZodDefault<z.ZodObject<{
|
|
2638
2892
|
alias: z.ZodDefault<z.ZodString>;
|
|
@@ -2641,7 +2895,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2641
2895
|
}, z.z.core.$strip>>;
|
|
2642
2896
|
}, z.z.core.$strip>;
|
|
2643
2897
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
2644
|
-
pipe_id: z.ZodLiteral<"sheet:expandappend@1">;
|
|
2898
|
+
pipe_id: z.ZodLiteral<"sheet:row:expandappend@1">;
|
|
2645
2899
|
connector: z.ZodObject<{
|
|
2646
2900
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
2647
2901
|
first: "first";
|
|
@@ -3197,12 +3451,87 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3197
3451
|
alias: z.ZodDefault<z.ZodString>;
|
|
3198
3452
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3199
3453
|
}, z.z.core.$strip>>;
|
|
3200
|
-
company_profile_url: z.ZodDefault<z.ZodObject<{
|
|
3454
|
+
company_profile_url: z.ZodDefault<z.ZodObject<{
|
|
3455
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
3456
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3457
|
+
}, z.z.core.$strip>>;
|
|
3458
|
+
}, z.z.core.$strip>>;
|
|
3459
|
+
}, z.z.core.$strip>>;
|
|
3460
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
3461
|
+
pipe_id: z.ZodLiteral<"sheet:row:append:sheet@1">;
|
|
3462
|
+
connector: z.ZodObject<{
|
|
3463
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
3464
|
+
first: "first";
|
|
3465
|
+
}>>;
|
|
3466
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
3467
|
+
type: z.ZodLiteral<"vault">;
|
|
3468
|
+
connection: z.ZodString;
|
|
3469
|
+
}, z.z.core.$strip>>;
|
|
3470
|
+
}, z.z.core.$strip>;
|
|
3471
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3472
|
+
action: z.ZodEnum<{
|
|
3473
|
+
run: "run";
|
|
3474
|
+
}>;
|
|
3475
|
+
when: z.ZodObject<{
|
|
3476
|
+
logic: z.ZodEnum<{
|
|
3477
|
+
and: "and";
|
|
3478
|
+
or: "or";
|
|
3479
|
+
}>;
|
|
3480
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3481
|
+
property: z.ZodLiteral<"value">;
|
|
3482
|
+
field_name: z.ZodString;
|
|
3483
|
+
operator: z.ZodEnum<{
|
|
3484
|
+
eq: "eq";
|
|
3485
|
+
neq: "neq";
|
|
3486
|
+
gt: "gt";
|
|
3487
|
+
gte: "gte";
|
|
3488
|
+
lt: "lt";
|
|
3489
|
+
lte: "lte";
|
|
3490
|
+
contains: "contains";
|
|
3491
|
+
}>;
|
|
3492
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
3493
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
3494
|
+
property: z.ZodLiteral<"status">;
|
|
3495
|
+
field_name: z.ZodString;
|
|
3496
|
+
operator: z.ZodEnum<{
|
|
3497
|
+
eq: "eq";
|
|
3498
|
+
neq: "neq";
|
|
3499
|
+
}>;
|
|
3500
|
+
value: z.ZodEnum<{
|
|
3501
|
+
completed: "completed";
|
|
3502
|
+
failed: "failed";
|
|
3503
|
+
no_result: "no_result";
|
|
3504
|
+
skipped: "skipped";
|
|
3505
|
+
}>;
|
|
3506
|
+
}, z.z.core.$strip>], "property">>;
|
|
3507
|
+
}, z.z.core.$strip>;
|
|
3508
|
+
}, z.z.core.$strip>>>;
|
|
3509
|
+
config: z.ZodObject<{
|
|
3510
|
+
run: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
3511
|
+
allow_field_creation: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
3512
|
+
included_fields: z.ZodArray<z.ZodObject<{
|
|
3513
|
+
field_name: z.ZodString;
|
|
3514
|
+
}, z.z.core.$strip>> | z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3515
|
+
field_name: z.ZodString;
|
|
3516
|
+
}, z.z.core.$strip>>>;
|
|
3517
|
+
allow_sheet_creation: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
3518
|
+
new_sheet_team_id: z.ZodString;
|
|
3519
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
3520
|
+
sheet: z.ZodDefault<z.ZodObject<{
|
|
3521
|
+
alias: z.ZodString;
|
|
3522
|
+
}, z.z.core.$strip>>;
|
|
3523
|
+
}, z.z.core.$strip>>;
|
|
3524
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
3525
|
+
sheet_record_id: z.ZodDefault<z.ZodObject<{
|
|
3526
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
3527
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3528
|
+
}, z.z.core.$strip>>;
|
|
3529
|
+
created_sheet: z.ZodDefault<z.ZodObject<{
|
|
3201
3530
|
alias: z.ZodDefault<z.ZodString>;
|
|
3202
3531
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3203
3532
|
}, z.z.core.$strip>>;
|
|
3204
3533
|
}, z.z.core.$strip>>;
|
|
3205
|
-
}, z.z.core.$strip
|
|
3534
|
+
}, z.z.core.$strip>;
|
|
3206
3535
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
3207
3536
|
pipe_id: z.ZodLiteral<"company:identity@1">;
|
|
3208
3537
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -5175,6 +5504,68 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5175
5504
|
}, z.z.core.$strip>>;
|
|
5176
5505
|
}, z.z.core.$strip>>;
|
|
5177
5506
|
}, z.z.core.$strip>;
|
|
5507
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
5508
|
+
pipe_id: z.ZodLiteral<"people:identity:amplemarket@1">;
|
|
5509
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5510
|
+
action: z.ZodEnum<{
|
|
5511
|
+
run: "run";
|
|
5512
|
+
}>;
|
|
5513
|
+
when: z.ZodObject<{
|
|
5514
|
+
logic: z.ZodEnum<{
|
|
5515
|
+
and: "and";
|
|
5516
|
+
or: "or";
|
|
5517
|
+
}>;
|
|
5518
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5519
|
+
property: z.ZodLiteral<"value">;
|
|
5520
|
+
field_name: z.ZodString;
|
|
5521
|
+
operator: z.ZodEnum<{
|
|
5522
|
+
eq: "eq";
|
|
5523
|
+
neq: "neq";
|
|
5524
|
+
gt: "gt";
|
|
5525
|
+
gte: "gte";
|
|
5526
|
+
lt: "lt";
|
|
5527
|
+
lte: "lte";
|
|
5528
|
+
contains: "contains";
|
|
5529
|
+
}>;
|
|
5530
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
5531
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
5532
|
+
property: z.ZodLiteral<"status">;
|
|
5533
|
+
field_name: z.ZodString;
|
|
5534
|
+
operator: z.ZodEnum<{
|
|
5535
|
+
eq: "eq";
|
|
5536
|
+
neq: "neq";
|
|
5537
|
+
}>;
|
|
5538
|
+
value: z.ZodEnum<{
|
|
5539
|
+
completed: "completed";
|
|
5540
|
+
failed: "failed";
|
|
5541
|
+
no_result: "no_result";
|
|
5542
|
+
skipped: "skipped";
|
|
5543
|
+
}>;
|
|
5544
|
+
}, z.z.core.$strip>], "property">>;
|
|
5545
|
+
}, z.z.core.$strip>;
|
|
5546
|
+
}, z.z.core.$strip>>>;
|
|
5547
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5548
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
5549
|
+
first: "first";
|
|
5550
|
+
}>>;
|
|
5551
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
5552
|
+
type: z.ZodLiteral<"vault">;
|
|
5553
|
+
connection: z.ZodString;
|
|
5554
|
+
}, z.z.core.$strip>>;
|
|
5555
|
+
}, z.z.core.$strip>>>;
|
|
5556
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
5557
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
5558
|
+
email: z.ZodDefault<z.ZodObject<{
|
|
5559
|
+
alias: z.ZodString;
|
|
5560
|
+
}, z.z.core.$strip>>;
|
|
5561
|
+
}, z.z.core.$strip>>;
|
|
5562
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
5563
|
+
amplemarket_person_match: z.ZodDefault<z.ZodObject<{
|
|
5564
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
5565
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5566
|
+
}, z.z.core.$strip>>;
|
|
5567
|
+
}, z.z.core.$strip>>;
|
|
5568
|
+
}, z.z.core.$strip>>;
|
|
5178
5569
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
5179
5570
|
pipe_id: z.ZodLiteral<"company:identity@2">;
|
|
5180
5571
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -5245,6 +5636,68 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5245
5636
|
}, z.z.core.$strip>>;
|
|
5246
5637
|
}, z.z.core.$strip>>;
|
|
5247
5638
|
}, z.z.core.$strip>>;
|
|
5639
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
5640
|
+
pipe_id: z.ZodLiteral<"people:match:amplemarket@1">;
|
|
5641
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5642
|
+
action: z.ZodEnum<{
|
|
5643
|
+
run: "run";
|
|
5644
|
+
}>;
|
|
5645
|
+
when: z.ZodObject<{
|
|
5646
|
+
logic: z.ZodEnum<{
|
|
5647
|
+
and: "and";
|
|
5648
|
+
or: "or";
|
|
5649
|
+
}>;
|
|
5650
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5651
|
+
property: z.ZodLiteral<"value">;
|
|
5652
|
+
field_name: z.ZodString;
|
|
5653
|
+
operator: z.ZodEnum<{
|
|
5654
|
+
eq: "eq";
|
|
5655
|
+
neq: "neq";
|
|
5656
|
+
gt: "gt";
|
|
5657
|
+
gte: "gte";
|
|
5658
|
+
lt: "lt";
|
|
5659
|
+
lte: "lte";
|
|
5660
|
+
contains: "contains";
|
|
5661
|
+
}>;
|
|
5662
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
5663
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
5664
|
+
property: z.ZodLiteral<"status">;
|
|
5665
|
+
field_name: z.ZodString;
|
|
5666
|
+
operator: z.ZodEnum<{
|
|
5667
|
+
eq: "eq";
|
|
5668
|
+
neq: "neq";
|
|
5669
|
+
}>;
|
|
5670
|
+
value: z.ZodEnum<{
|
|
5671
|
+
completed: "completed";
|
|
5672
|
+
failed: "failed";
|
|
5673
|
+
no_result: "no_result";
|
|
5674
|
+
skipped: "skipped";
|
|
5675
|
+
}>;
|
|
5676
|
+
}, z.z.core.$strip>], "property">>;
|
|
5677
|
+
}, z.z.core.$strip>;
|
|
5678
|
+
}, z.z.core.$strip>>>;
|
|
5679
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5680
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
5681
|
+
first: "first";
|
|
5682
|
+
}>>;
|
|
5683
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
5684
|
+
type: z.ZodLiteral<"vault">;
|
|
5685
|
+
connection: z.ZodString;
|
|
5686
|
+
}, z.z.core.$strip>>;
|
|
5687
|
+
}, z.z.core.$strip>>>;
|
|
5688
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
5689
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
5690
|
+
profile_url: z.ZodDefault<z.ZodObject<{
|
|
5691
|
+
alias: z.ZodString;
|
|
5692
|
+
}, z.z.core.$strip>>;
|
|
5693
|
+
}, z.z.core.$strip>>;
|
|
5694
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
5695
|
+
amplemarket_person_match: z.ZodDefault<z.ZodObject<{
|
|
5696
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
5697
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5698
|
+
}, z.z.core.$strip>>;
|
|
5699
|
+
}, z.z.core.$strip>>;
|
|
5700
|
+
}, z.z.core.$strip>>;
|
|
5248
5701
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
5249
5702
|
pipe_id: z.ZodLiteral<"people:phone:profile:waterfall@1">;
|
|
5250
5703
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -5650,15 +6103,148 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5650
6103
|
}, z.z.core.$strip>>;
|
|
5651
6104
|
}, z.z.core.$strip>>;
|
|
5652
6105
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
5653
|
-
is_email_valid: z.ZodDefault<z.ZodObject<{
|
|
6106
|
+
is_email_valid: z.ZodDefault<z.ZodObject<{
|
|
6107
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
6108
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
6109
|
+
}, z.z.core.$strip>>;
|
|
6110
|
+
}, z.z.core.$strip>>;
|
|
6111
|
+
}, z.z.core.$strip>>;
|
|
6112
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
6113
|
+
pipe_id: z.ZodLiteral<"people:email:validate:millionverifier@1">;
|
|
6114
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6115
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
6116
|
+
first: "first";
|
|
6117
|
+
}>>;
|
|
6118
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
6119
|
+
type: z.ZodLiteral<"vault">;
|
|
6120
|
+
connection: z.ZodString;
|
|
6121
|
+
}, z.z.core.$strip>>;
|
|
6122
|
+
}, z.z.core.$strip>>>;
|
|
6123
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
6124
|
+
action: z.ZodEnum<{
|
|
6125
|
+
run: "run";
|
|
6126
|
+
}>;
|
|
6127
|
+
when: z.ZodObject<{
|
|
6128
|
+
logic: z.ZodEnum<{
|
|
6129
|
+
and: "and";
|
|
6130
|
+
or: "or";
|
|
6131
|
+
}>;
|
|
6132
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6133
|
+
property: z.ZodLiteral<"value">;
|
|
6134
|
+
field_name: z.ZodString;
|
|
6135
|
+
operator: z.ZodEnum<{
|
|
6136
|
+
eq: "eq";
|
|
6137
|
+
neq: "neq";
|
|
6138
|
+
gt: "gt";
|
|
6139
|
+
gte: "gte";
|
|
6140
|
+
lt: "lt";
|
|
6141
|
+
lte: "lte";
|
|
6142
|
+
contains: "contains";
|
|
6143
|
+
}>;
|
|
6144
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
6145
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
6146
|
+
property: z.ZodLiteral<"status">;
|
|
6147
|
+
field_name: z.ZodString;
|
|
6148
|
+
operator: z.ZodEnum<{
|
|
6149
|
+
eq: "eq";
|
|
6150
|
+
neq: "neq";
|
|
6151
|
+
}>;
|
|
6152
|
+
value: z.ZodEnum<{
|
|
6153
|
+
completed: "completed";
|
|
6154
|
+
failed: "failed";
|
|
6155
|
+
no_result: "no_result";
|
|
6156
|
+
skipped: "skipped";
|
|
6157
|
+
}>;
|
|
6158
|
+
}, z.z.core.$strip>], "property">>;
|
|
6159
|
+
}, z.z.core.$strip>;
|
|
6160
|
+
}, z.z.core.$strip>>>;
|
|
6161
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
6162
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
6163
|
+
email: z.ZodDefault<z.ZodObject<{
|
|
6164
|
+
alias: z.ZodString;
|
|
6165
|
+
}, z.z.core.$strip>>;
|
|
6166
|
+
}, z.z.core.$strip>>;
|
|
6167
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
6168
|
+
email_validation_status: z.ZodDefault<z.ZodObject<{
|
|
6169
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
6170
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
6171
|
+
}, z.z.core.$strip>>;
|
|
6172
|
+
million_validation_match: z.ZodDefault<z.ZodObject<{
|
|
6173
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
6174
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
6175
|
+
}, z.z.core.$strip>>;
|
|
6176
|
+
}, z.z.core.$strip>>;
|
|
6177
|
+
}, z.z.core.$strip>>;
|
|
6178
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
6179
|
+
pipe_id: z.ZodLiteral<"people:phone:workemail:waterfall@1">;
|
|
6180
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
6181
|
+
action: z.ZodEnum<{
|
|
6182
|
+
run: "run";
|
|
6183
|
+
}>;
|
|
6184
|
+
when: z.ZodObject<{
|
|
6185
|
+
logic: z.ZodEnum<{
|
|
6186
|
+
and: "and";
|
|
6187
|
+
or: "or";
|
|
6188
|
+
}>;
|
|
6189
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6190
|
+
property: z.ZodLiteral<"value">;
|
|
6191
|
+
field_name: z.ZodString;
|
|
6192
|
+
operator: z.ZodEnum<{
|
|
6193
|
+
eq: "eq";
|
|
6194
|
+
neq: "neq";
|
|
6195
|
+
gt: "gt";
|
|
6196
|
+
gte: "gte";
|
|
6197
|
+
lt: "lt";
|
|
6198
|
+
lte: "lte";
|
|
6199
|
+
contains: "contains";
|
|
6200
|
+
}>;
|
|
6201
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
6202
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
6203
|
+
property: z.ZodLiteral<"status">;
|
|
6204
|
+
field_name: z.ZodString;
|
|
6205
|
+
operator: z.ZodEnum<{
|
|
6206
|
+
eq: "eq";
|
|
6207
|
+
neq: "neq";
|
|
6208
|
+
}>;
|
|
6209
|
+
value: z.ZodEnum<{
|
|
6210
|
+
completed: "completed";
|
|
6211
|
+
failed: "failed";
|
|
6212
|
+
no_result: "no_result";
|
|
6213
|
+
skipped: "skipped";
|
|
6214
|
+
}>;
|
|
6215
|
+
}, z.z.core.$strip>], "property">>;
|
|
6216
|
+
}, z.z.core.$strip>;
|
|
6217
|
+
}, z.z.core.$strip>>>;
|
|
6218
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6219
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
6220
|
+
first: "first";
|
|
6221
|
+
}>>;
|
|
6222
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
6223
|
+
type: z.ZodLiteral<"vault">;
|
|
6224
|
+
connection: z.ZodString;
|
|
6225
|
+
}, z.z.core.$strip>>;
|
|
6226
|
+
}, z.z.core.$strip>>>;
|
|
6227
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
6228
|
+
providers: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
6229
|
+
provider: z.ZodEnum<{
|
|
6230
|
+
leadmagic: "leadmagic";
|
|
6231
|
+
}>;
|
|
6232
|
+
}, z.z.core.$strip>>>;
|
|
6233
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
6234
|
+
work_email: z.ZodDefault<z.ZodObject<{
|
|
6235
|
+
alias: z.ZodString;
|
|
6236
|
+
}, z.z.core.$strip>>;
|
|
6237
|
+
}, z.z.core.$strip>>;
|
|
6238
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
6239
|
+
mobile: z.ZodDefault<z.ZodObject<{
|
|
5654
6240
|
alias: z.ZodDefault<z.ZodString>;
|
|
5655
6241
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5656
6242
|
}, z.z.core.$strip>>;
|
|
5657
6243
|
}, z.z.core.$strip>>;
|
|
5658
6244
|
}, z.z.core.$strip>>;
|
|
5659
6245
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
5660
|
-
pipe_id: z.ZodLiteral<"
|
|
5661
|
-
connector: z.
|
|
6246
|
+
pipe_id: z.ZodLiteral<"fields:merge@1">;
|
|
6247
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5662
6248
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
5663
6249
|
first: "first";
|
|
5664
6250
|
}>>;
|
|
@@ -5705,25 +6291,21 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5705
6291
|
}, z.z.core.$strip>], "property">>;
|
|
5706
6292
|
}, z.z.core.$strip>;
|
|
5707
6293
|
}, z.z.core.$strip>>>;
|
|
5708
|
-
config: z.
|
|
5709
|
-
|
|
5710
|
-
|
|
5711
|
-
|
|
5712
|
-
|
|
5713
|
-
}, z.z.core.$strip
|
|
6294
|
+
config: z.ZodObject<{
|
|
6295
|
+
sources: z.ZodArray<z.ZodObject<{
|
|
6296
|
+
field_name: z.ZodString;
|
|
6297
|
+
}, z.z.core.$strip>> | z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
6298
|
+
field_name: z.ZodString;
|
|
6299
|
+
}, z.z.core.$strip>>>;
|
|
5714
6300
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
5715
|
-
|
|
5716
|
-
alias: z.ZodDefault<z.ZodString>;
|
|
5717
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5718
|
-
}, z.z.core.$strip>>;
|
|
5719
|
-
million_validation_match: z.ZodDefault<z.ZodObject<{
|
|
6301
|
+
merge_result: z.ZodDefault<z.ZodObject<{
|
|
5720
6302
|
alias: z.ZodDefault<z.ZodString>;
|
|
5721
6303
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5722
6304
|
}, z.z.core.$strip>>;
|
|
5723
6305
|
}, z.z.core.$strip>>;
|
|
5724
|
-
}, z.z.core.$strip
|
|
6306
|
+
}, z.z.core.$strip>;
|
|
5725
6307
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
5726
|
-
pipe_id: z.ZodLiteral<"
|
|
6308
|
+
pipe_id: z.ZodLiteral<"field:slugify@1">;
|
|
5727
6309
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5728
6310
|
action: z.ZodEnum<{
|
|
5729
6311
|
run: "run";
|
|
@@ -5762,7 +6344,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5762
6344
|
}, z.z.core.$strip>], "property">>;
|
|
5763
6345
|
}, z.z.core.$strip>;
|
|
5764
6346
|
}, z.z.core.$strip>>>;
|
|
5765
|
-
connector: z.
|
|
6347
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5766
6348
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
5767
6349
|
first: "first";
|
|
5768
6350
|
}>>;
|
|
@@ -5772,34 +6354,20 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5772
6354
|
}, z.z.core.$strip>>;
|
|
5773
6355
|
}, z.z.core.$strip>>>;
|
|
5774
6356
|
config: z.ZodOptional<z.ZodObject<{
|
|
5775
|
-
providers: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5776
|
-
provider: z.ZodEnum<{
|
|
5777
|
-
leadmagic: "leadmagic";
|
|
5778
|
-
}>;
|
|
5779
|
-
}, z.z.core.$strip>>>;
|
|
5780
6357
|
input_fields: z.ZodOptional<z.ZodObject<{
|
|
5781
|
-
|
|
6358
|
+
string_input: z.ZodDefault<z.ZodObject<{
|
|
5782
6359
|
alias: z.ZodString;
|
|
5783
6360
|
}, z.z.core.$strip>>;
|
|
5784
6361
|
}, z.z.core.$strip>>;
|
|
5785
6362
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
5786
|
-
|
|
6363
|
+
slugified: z.ZodDefault<z.ZodObject<{
|
|
5787
6364
|
alias: z.ZodDefault<z.ZodString>;
|
|
5788
6365
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5789
6366
|
}, z.z.core.$strip>>;
|
|
5790
6367
|
}, z.z.core.$strip>>;
|
|
5791
6368
|
}, z.z.core.$strip>>;
|
|
5792
6369
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
5793
|
-
pipe_id: z.ZodLiteral<"
|
|
5794
|
-
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5795
|
-
strategy: z.ZodDefault<z.ZodEnum<{
|
|
5796
|
-
first: "first";
|
|
5797
|
-
}>>;
|
|
5798
|
-
connections: z.ZodArray<z.ZodObject<{
|
|
5799
|
-
type: z.ZodLiteral<"vault">;
|
|
5800
|
-
connection: z.ZodString;
|
|
5801
|
-
}, z.z.core.$strip>>;
|
|
5802
|
-
}, z.z.core.$strip>>>;
|
|
6370
|
+
pipe_id: z.ZodLiteral<"field:domainify@1">;
|
|
5803
6371
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5804
6372
|
action: z.ZodEnum<{
|
|
5805
6373
|
run: "run";
|
|
@@ -5838,17 +6406,28 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5838
6406
|
}, z.z.core.$strip>], "property">>;
|
|
5839
6407
|
}, z.z.core.$strip>;
|
|
5840
6408
|
}, z.z.core.$strip>>>;
|
|
5841
|
-
|
|
5842
|
-
|
|
5843
|
-
|
|
6409
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
6410
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
6411
|
+
first: "first";
|
|
6412
|
+
}>>;
|
|
6413
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
6414
|
+
type: z.ZodLiteral<"vault">;
|
|
6415
|
+
connection: z.ZodString;
|
|
6416
|
+
}, z.z.core.$strip>>;
|
|
6417
|
+
}, z.z.core.$strip>>>;
|
|
6418
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
6419
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
6420
|
+
url_input: z.ZodDefault<z.ZodObject<{
|
|
6421
|
+
alias: z.ZodString;
|
|
6422
|
+
}, z.z.core.$strip>>;
|
|
5844
6423
|
}, z.z.core.$strip>>;
|
|
5845
6424
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
5846
|
-
|
|
6425
|
+
domain: z.ZodDefault<z.ZodObject<{
|
|
5847
6426
|
alias: z.ZodDefault<z.ZodString>;
|
|
5848
6427
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5849
6428
|
}, z.z.core.$strip>>;
|
|
5850
6429
|
}, z.z.core.$strip>>;
|
|
5851
|
-
}, z.z.core.$strip
|
|
6430
|
+
}, z.z.core.$strip>>;
|
|
5852
6431
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
5853
6432
|
pipe_id: z.ZodLiteral<"website:scrape:firecrawl@1">;
|
|
5854
6433
|
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -6128,7 +6707,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
6128
6707
|
}, z.z.core.$strip>>;
|
|
6129
6708
|
}, z.z.core.$strip>>;
|
|
6130
6709
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
6131
|
-
pipe_id: z.ZodLiteral<"sheet:append@1">;
|
|
6710
|
+
pipe_id: z.ZodLiteral<"sheet:row:append@1">;
|
|
6132
6711
|
connector: z.ZodObject<{
|
|
6133
6712
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
6134
6713
|
first: "first";
|
|
@@ -6180,7 +6759,11 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
6180
6759
|
sheet: z.ZodString;
|
|
6181
6760
|
run: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
6182
6761
|
allow_field_creation: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
6183
|
-
included_fields: z.
|
|
6762
|
+
included_fields: z.ZodArray<z.ZodObject<{
|
|
6763
|
+
field_name: z.ZodString;
|
|
6764
|
+
}, z.z.core.$strip>> | z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
6765
|
+
field_name: z.ZodString;
|
|
6766
|
+
}, z.z.core.$strip>>>;
|
|
6184
6767
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
6185
6768
|
sheet_record_id: z.ZodDefault<z.ZodObject<{
|
|
6186
6769
|
alias: z.ZodDefault<z.ZodString>;
|
|
@@ -6189,7 +6772,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
6189
6772
|
}, z.z.core.$strip>>;
|
|
6190
6773
|
}, z.z.core.$strip>;
|
|
6191
6774
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
6192
|
-
pipe_id: z.ZodLiteral<"sheet:expandappend@1">;
|
|
6775
|
+
pipe_id: z.ZodLiteral<"sheet:row:expandappend@1">;
|
|
6193
6776
|
connector: z.ZodObject<{
|
|
6194
6777
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
6195
6778
|
first: "first";
|
|
@@ -6751,6 +7334,81 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
6751
7334
|
}, z.z.core.$strip>>;
|
|
6752
7335
|
}, z.z.core.$strip>>;
|
|
6753
7336
|
}, z.z.core.$strip>>;
|
|
7337
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
7338
|
+
pipe_id: z.ZodLiteral<"sheet:row:append:sheet@1">;
|
|
7339
|
+
connector: z.ZodObject<{
|
|
7340
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
7341
|
+
first: "first";
|
|
7342
|
+
}>>;
|
|
7343
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
7344
|
+
type: z.ZodLiteral<"vault">;
|
|
7345
|
+
connection: z.ZodString;
|
|
7346
|
+
}, z.z.core.$strip>>;
|
|
7347
|
+
}, z.z.core.$strip>;
|
|
7348
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
7349
|
+
action: z.ZodEnum<{
|
|
7350
|
+
run: "run";
|
|
7351
|
+
}>;
|
|
7352
|
+
when: z.ZodObject<{
|
|
7353
|
+
logic: z.ZodEnum<{
|
|
7354
|
+
and: "and";
|
|
7355
|
+
or: "or";
|
|
7356
|
+
}>;
|
|
7357
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7358
|
+
property: z.ZodLiteral<"value">;
|
|
7359
|
+
field_name: z.ZodString;
|
|
7360
|
+
operator: z.ZodEnum<{
|
|
7361
|
+
eq: "eq";
|
|
7362
|
+
neq: "neq";
|
|
7363
|
+
gt: "gt";
|
|
7364
|
+
gte: "gte";
|
|
7365
|
+
lt: "lt";
|
|
7366
|
+
lte: "lte";
|
|
7367
|
+
contains: "contains";
|
|
7368
|
+
}>;
|
|
7369
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
7370
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
7371
|
+
property: z.ZodLiteral<"status">;
|
|
7372
|
+
field_name: z.ZodString;
|
|
7373
|
+
operator: z.ZodEnum<{
|
|
7374
|
+
eq: "eq";
|
|
7375
|
+
neq: "neq";
|
|
7376
|
+
}>;
|
|
7377
|
+
value: z.ZodEnum<{
|
|
7378
|
+
completed: "completed";
|
|
7379
|
+
failed: "failed";
|
|
7380
|
+
no_result: "no_result";
|
|
7381
|
+
skipped: "skipped";
|
|
7382
|
+
}>;
|
|
7383
|
+
}, z.z.core.$strip>], "property">>;
|
|
7384
|
+
}, z.z.core.$strip>;
|
|
7385
|
+
}, z.z.core.$strip>>>;
|
|
7386
|
+
config: z.ZodObject<{
|
|
7387
|
+
run: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
7388
|
+
allow_field_creation: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
7389
|
+
included_fields: z.ZodArray<z.ZodObject<{
|
|
7390
|
+
field_name: z.ZodString;
|
|
7391
|
+
}, z.z.core.$strip>> | z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7392
|
+
field_name: z.ZodString;
|
|
7393
|
+
}, z.z.core.$strip>>>;
|
|
7394
|
+
allow_sheet_creation: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
7395
|
+
new_sheet_team_id: z.ZodString;
|
|
7396
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
7397
|
+
sheet: z.ZodDefault<z.ZodObject<{
|
|
7398
|
+
alias: z.ZodString;
|
|
7399
|
+
}, z.z.core.$strip>>;
|
|
7400
|
+
}, z.z.core.$strip>>;
|
|
7401
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
7402
|
+
sheet_record_id: z.ZodDefault<z.ZodObject<{
|
|
7403
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
7404
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
7405
|
+
}, z.z.core.$strip>>;
|
|
7406
|
+
created_sheet: z.ZodDefault<z.ZodObject<{
|
|
7407
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
7408
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
7409
|
+
}, z.z.core.$strip>>;
|
|
7410
|
+
}, z.z.core.$strip>>;
|
|
7411
|
+
}, z.z.core.$strip>;
|
|
6754
7412
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
6755
7413
|
pipe_id: z.ZodLiteral<"company:identity@1">;
|
|
6756
7414
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -8631,26 +9289,156 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
8631
9289
|
}, z.z.core.$strip>], "property">>;
|
|
8632
9290
|
}, z.z.core.$strip>;
|
|
8633
9291
|
}, z.z.core.$strip>>>;
|
|
8634
|
-
config: z.ZodObject<{
|
|
8635
|
-
audience_id: z.ZodString;
|
|
8636
|
-
add_as_subscribed: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
9292
|
+
config: z.ZodObject<{
|
|
9293
|
+
audience_id: z.ZodString;
|
|
9294
|
+
add_as_subscribed: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
9295
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
9296
|
+
name: z.ZodDefault<z.ZodObject<{
|
|
9297
|
+
alias: z.ZodString;
|
|
9298
|
+
}, z.z.core.$strip>>;
|
|
9299
|
+
email: z.ZodDefault<z.ZodObject<{
|
|
9300
|
+
alias: z.ZodString;
|
|
9301
|
+
}, z.z.core.$strip>>;
|
|
9302
|
+
}, z.z.core.$strip>>;
|
|
9303
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
9304
|
+
resend_contact_id: z.ZodDefault<z.ZodObject<{
|
|
9305
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
9306
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
9307
|
+
}, z.z.core.$strip>>;
|
|
9308
|
+
}, z.z.core.$strip>>;
|
|
9309
|
+
}, z.z.core.$strip>;
|
|
9310
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
9311
|
+
pipe_id: z.ZodLiteral<"people:match:role:waterfall@1">;
|
|
9312
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
9313
|
+
action: z.ZodEnum<{
|
|
9314
|
+
run: "run";
|
|
9315
|
+
}>;
|
|
9316
|
+
when: z.ZodObject<{
|
|
9317
|
+
logic: z.ZodEnum<{
|
|
9318
|
+
and: "and";
|
|
9319
|
+
or: "or";
|
|
9320
|
+
}>;
|
|
9321
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9322
|
+
property: z.ZodLiteral<"value">;
|
|
9323
|
+
field_name: z.ZodString;
|
|
9324
|
+
operator: z.ZodEnum<{
|
|
9325
|
+
eq: "eq";
|
|
9326
|
+
neq: "neq";
|
|
9327
|
+
gt: "gt";
|
|
9328
|
+
gte: "gte";
|
|
9329
|
+
lt: "lt";
|
|
9330
|
+
lte: "lte";
|
|
9331
|
+
contains: "contains";
|
|
9332
|
+
}>;
|
|
9333
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
9334
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
9335
|
+
property: z.ZodLiteral<"status">;
|
|
9336
|
+
field_name: z.ZodString;
|
|
9337
|
+
operator: z.ZodEnum<{
|
|
9338
|
+
eq: "eq";
|
|
9339
|
+
neq: "neq";
|
|
9340
|
+
}>;
|
|
9341
|
+
value: z.ZodEnum<{
|
|
9342
|
+
completed: "completed";
|
|
9343
|
+
failed: "failed";
|
|
9344
|
+
no_result: "no_result";
|
|
9345
|
+
skipped: "skipped";
|
|
9346
|
+
}>;
|
|
9347
|
+
}, z.z.core.$strip>], "property">>;
|
|
9348
|
+
}, z.z.core.$strip>;
|
|
9349
|
+
}, z.z.core.$strip>>>;
|
|
9350
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
9351
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
9352
|
+
first: "first";
|
|
9353
|
+
}>>;
|
|
9354
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
9355
|
+
type: z.ZodLiteral<"vault">;
|
|
9356
|
+
connection: z.ZodString;
|
|
9357
|
+
}, z.z.core.$strip>>;
|
|
9358
|
+
}, z.z.core.$strip>>>;
|
|
9359
|
+
config: z.ZodObject<{
|
|
9360
|
+
providers: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
9361
|
+
provider: z.ZodEnum<{
|
|
9362
|
+
leadmagic: "leadmagic";
|
|
9363
|
+
}>;
|
|
9364
|
+
}, z.z.core.$strip>>>;
|
|
9365
|
+
roles: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
9366
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
9367
|
+
company_website_url: z.ZodDefault<z.ZodObject<{
|
|
9368
|
+
alias: z.ZodString;
|
|
9369
|
+
}, z.z.core.$strip>>;
|
|
9370
|
+
}, z.z.core.$strip>>;
|
|
9371
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
9372
|
+
role_finder_match: z.ZodDefault<z.ZodObject<{
|
|
9373
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
9374
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
9375
|
+
}, z.z.core.$strip>>;
|
|
9376
|
+
}, z.z.core.$strip>>;
|
|
9377
|
+
}, z.z.core.$strip>;
|
|
9378
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
9379
|
+
pipe_id: z.ZodLiteral<"people:identity:amplemarket@1">;
|
|
9380
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
9381
|
+
action: z.ZodEnum<{
|
|
9382
|
+
run: "run";
|
|
9383
|
+
}>;
|
|
9384
|
+
when: z.ZodObject<{
|
|
9385
|
+
logic: z.ZodEnum<{
|
|
9386
|
+
and: "and";
|
|
9387
|
+
or: "or";
|
|
9388
|
+
}>;
|
|
9389
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9390
|
+
property: z.ZodLiteral<"value">;
|
|
9391
|
+
field_name: z.ZodString;
|
|
9392
|
+
operator: z.ZodEnum<{
|
|
9393
|
+
eq: "eq";
|
|
9394
|
+
neq: "neq";
|
|
9395
|
+
gt: "gt";
|
|
9396
|
+
gte: "gte";
|
|
9397
|
+
lt: "lt";
|
|
9398
|
+
lte: "lte";
|
|
9399
|
+
contains: "contains";
|
|
9400
|
+
}>;
|
|
9401
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
9402
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
9403
|
+
property: z.ZodLiteral<"status">;
|
|
9404
|
+
field_name: z.ZodString;
|
|
9405
|
+
operator: z.ZodEnum<{
|
|
9406
|
+
eq: "eq";
|
|
9407
|
+
neq: "neq";
|
|
9408
|
+
}>;
|
|
9409
|
+
value: z.ZodEnum<{
|
|
9410
|
+
completed: "completed";
|
|
9411
|
+
failed: "failed";
|
|
9412
|
+
no_result: "no_result";
|
|
9413
|
+
skipped: "skipped";
|
|
9414
|
+
}>;
|
|
9415
|
+
}, z.z.core.$strip>], "property">>;
|
|
9416
|
+
}, z.z.core.$strip>;
|
|
9417
|
+
}, z.z.core.$strip>>>;
|
|
9418
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
9419
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
9420
|
+
first: "first";
|
|
9421
|
+
}>>;
|
|
9422
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
9423
|
+
type: z.ZodLiteral<"vault">;
|
|
9424
|
+
connection: z.ZodString;
|
|
9425
|
+
}, z.z.core.$strip>>;
|
|
9426
|
+
}, z.z.core.$strip>>>;
|
|
9427
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
8637
9428
|
input_fields: z.ZodOptional<z.ZodObject<{
|
|
8638
|
-
name: z.ZodDefault<z.ZodObject<{
|
|
8639
|
-
alias: z.ZodString;
|
|
8640
|
-
}, z.z.core.$strip>>;
|
|
8641
9429
|
email: z.ZodDefault<z.ZodObject<{
|
|
8642
9430
|
alias: z.ZodString;
|
|
8643
9431
|
}, z.z.core.$strip>>;
|
|
8644
9432
|
}, z.z.core.$strip>>;
|
|
8645
9433
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
8646
|
-
|
|
9434
|
+
amplemarket_person_match: z.ZodDefault<z.ZodObject<{
|
|
8647
9435
|
alias: z.ZodDefault<z.ZodString>;
|
|
8648
9436
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
8649
9437
|
}, z.z.core.$strip>>;
|
|
8650
9438
|
}, z.z.core.$strip>>;
|
|
8651
|
-
}, z.z.core.$strip
|
|
9439
|
+
}, z.z.core.$strip>>;
|
|
8652
9440
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
8653
|
-
pipe_id: z.ZodLiteral<"
|
|
9441
|
+
pipe_id: z.ZodLiteral<"company:identity@2">;
|
|
8654
9442
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
8655
9443
|
action: z.ZodEnum<{
|
|
8656
9444
|
run: "run";
|
|
@@ -8689,7 +9477,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
8689
9477
|
}, z.z.core.$strip>], "property">>;
|
|
8690
9478
|
}, z.z.core.$strip>;
|
|
8691
9479
|
}, z.z.core.$strip>>>;
|
|
8692
|
-
connector: z.
|
|
9480
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
8693
9481
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
8694
9482
|
first: "first";
|
|
8695
9483
|
}>>;
|
|
@@ -8698,27 +9486,29 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
8698
9486
|
connection: z.ZodString;
|
|
8699
9487
|
}, z.z.core.$strip>>;
|
|
8700
9488
|
}, z.z.core.$strip>>>;
|
|
8701
|
-
config: z.ZodObject<{
|
|
8702
|
-
providers: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8703
|
-
provider: z.ZodEnum<{
|
|
8704
|
-
leadmagic: "leadmagic";
|
|
8705
|
-
}>;
|
|
8706
|
-
}, z.z.core.$strip>>>;
|
|
8707
|
-
roles: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
9489
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
8708
9490
|
input_fields: z.ZodOptional<z.ZodObject<{
|
|
8709
|
-
|
|
9491
|
+
company_name: z.ZodDefault<z.ZodObject<{
|
|
8710
9492
|
alias: z.ZodString;
|
|
8711
9493
|
}, z.z.core.$strip>>;
|
|
8712
9494
|
}, z.z.core.$strip>>;
|
|
8713
9495
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
8714
|
-
|
|
9496
|
+
company_profile_url: z.ZodDefault<z.ZodObject<{
|
|
9497
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
9498
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
9499
|
+
}, z.z.core.$strip>>;
|
|
9500
|
+
cleaned_company_name: z.ZodDefault<z.ZodObject<{
|
|
9501
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
9502
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
9503
|
+
}, z.z.core.$strip>>;
|
|
9504
|
+
company_website_url: z.ZodDefault<z.ZodObject<{
|
|
8715
9505
|
alias: z.ZodDefault<z.ZodString>;
|
|
8716
9506
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
8717
9507
|
}, z.z.core.$strip>>;
|
|
8718
9508
|
}, z.z.core.$strip>>;
|
|
8719
|
-
}, z.z.core.$strip
|
|
9509
|
+
}, z.z.core.$strip>>;
|
|
8720
9510
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
8721
|
-
pipe_id: z.ZodLiteral<"
|
|
9511
|
+
pipe_id: z.ZodLiteral<"people:match:amplemarket@1">;
|
|
8722
9512
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
8723
9513
|
action: z.ZodEnum<{
|
|
8724
9514
|
run: "run";
|
|
@@ -8757,7 +9547,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
8757
9547
|
}, z.z.core.$strip>], "property">>;
|
|
8758
9548
|
}, z.z.core.$strip>;
|
|
8759
9549
|
}, z.z.core.$strip>>>;
|
|
8760
|
-
connector: z.
|
|
9550
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
8761
9551
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
8762
9552
|
first: "first";
|
|
8763
9553
|
}>>;
|
|
@@ -8768,20 +9558,12 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
8768
9558
|
}, z.z.core.$strip>>>;
|
|
8769
9559
|
config: z.ZodOptional<z.ZodObject<{
|
|
8770
9560
|
input_fields: z.ZodOptional<z.ZodObject<{
|
|
8771
|
-
|
|
9561
|
+
profile_url: z.ZodDefault<z.ZodObject<{
|
|
8772
9562
|
alias: z.ZodString;
|
|
8773
9563
|
}, z.z.core.$strip>>;
|
|
8774
9564
|
}, z.z.core.$strip>>;
|
|
8775
9565
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
8776
|
-
|
|
8777
|
-
alias: z.ZodDefault<z.ZodString>;
|
|
8778
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
8779
|
-
}, z.z.core.$strip>>;
|
|
8780
|
-
cleaned_company_name: z.ZodDefault<z.ZodObject<{
|
|
8781
|
-
alias: z.ZodDefault<z.ZodString>;
|
|
8782
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
8783
|
-
}, z.z.core.$strip>>;
|
|
8784
|
-
company_website_url: z.ZodDefault<z.ZodObject<{
|
|
9566
|
+
amplemarket_person_match: z.ZodDefault<z.ZodObject<{
|
|
8785
9567
|
alias: z.ZodDefault<z.ZodString>;
|
|
8786
9568
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
8787
9569
|
}, z.z.core.$strip>>;
|
|
@@ -9383,7 +10165,9 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9383
10165
|
config: z.ZodObject<{
|
|
9384
10166
|
sources: z.ZodArray<z.ZodObject<{
|
|
9385
10167
|
field_name: z.ZodString;
|
|
9386
|
-
}, z.z.core.$strip
|
|
10168
|
+
}, z.z.core.$strip>> | z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
10169
|
+
field_name: z.ZodString;
|
|
10170
|
+
}, z.z.core.$strip>>>;
|
|
9387
10171
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
9388
10172
|
merge_result: z.ZodDefault<z.ZodObject<{
|
|
9389
10173
|
alias: z.ZodDefault<z.ZodString>;
|
|
@@ -9391,6 +10175,130 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9391
10175
|
}, z.z.core.$strip>>;
|
|
9392
10176
|
}, z.z.core.$strip>>;
|
|
9393
10177
|
}, z.z.core.$strip>;
|
|
10178
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
10179
|
+
pipe_id: z.ZodLiteral<"field:slugify@1">;
|
|
10180
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
10181
|
+
action: z.ZodEnum<{
|
|
10182
|
+
run: "run";
|
|
10183
|
+
}>;
|
|
10184
|
+
when: z.ZodObject<{
|
|
10185
|
+
logic: z.ZodEnum<{
|
|
10186
|
+
and: "and";
|
|
10187
|
+
or: "or";
|
|
10188
|
+
}>;
|
|
10189
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
10190
|
+
property: z.ZodLiteral<"value">;
|
|
10191
|
+
field_name: z.ZodString;
|
|
10192
|
+
operator: z.ZodEnum<{
|
|
10193
|
+
eq: "eq";
|
|
10194
|
+
neq: "neq";
|
|
10195
|
+
gt: "gt";
|
|
10196
|
+
gte: "gte";
|
|
10197
|
+
lt: "lt";
|
|
10198
|
+
lte: "lte";
|
|
10199
|
+
contains: "contains";
|
|
10200
|
+
}>;
|
|
10201
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
10202
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
10203
|
+
property: z.ZodLiteral<"status">;
|
|
10204
|
+
field_name: z.ZodString;
|
|
10205
|
+
operator: z.ZodEnum<{
|
|
10206
|
+
eq: "eq";
|
|
10207
|
+
neq: "neq";
|
|
10208
|
+
}>;
|
|
10209
|
+
value: z.ZodEnum<{
|
|
10210
|
+
completed: "completed";
|
|
10211
|
+
failed: "failed";
|
|
10212
|
+
no_result: "no_result";
|
|
10213
|
+
skipped: "skipped";
|
|
10214
|
+
}>;
|
|
10215
|
+
}, z.z.core.$strip>], "property">>;
|
|
10216
|
+
}, z.z.core.$strip>;
|
|
10217
|
+
}, z.z.core.$strip>>>;
|
|
10218
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
10219
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
10220
|
+
first: "first";
|
|
10221
|
+
}>>;
|
|
10222
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
10223
|
+
type: z.ZodLiteral<"vault">;
|
|
10224
|
+
connection: z.ZodString;
|
|
10225
|
+
}, z.z.core.$strip>>;
|
|
10226
|
+
}, z.z.core.$strip>>>;
|
|
10227
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
10228
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
10229
|
+
string_input: z.ZodDefault<z.ZodObject<{
|
|
10230
|
+
alias: z.ZodString;
|
|
10231
|
+
}, z.z.core.$strip>>;
|
|
10232
|
+
}, z.z.core.$strip>>;
|
|
10233
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
10234
|
+
slugified: z.ZodDefault<z.ZodObject<{
|
|
10235
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
10236
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
10237
|
+
}, z.z.core.$strip>>;
|
|
10238
|
+
}, z.z.core.$strip>>;
|
|
10239
|
+
}, z.z.core.$strip>>;
|
|
10240
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
10241
|
+
pipe_id: z.ZodLiteral<"field:domainify@1">;
|
|
10242
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
10243
|
+
action: z.ZodEnum<{
|
|
10244
|
+
run: "run";
|
|
10245
|
+
}>;
|
|
10246
|
+
when: z.ZodObject<{
|
|
10247
|
+
logic: z.ZodEnum<{
|
|
10248
|
+
and: "and";
|
|
10249
|
+
or: "or";
|
|
10250
|
+
}>;
|
|
10251
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
10252
|
+
property: z.ZodLiteral<"value">;
|
|
10253
|
+
field_name: z.ZodString;
|
|
10254
|
+
operator: z.ZodEnum<{
|
|
10255
|
+
eq: "eq";
|
|
10256
|
+
neq: "neq";
|
|
10257
|
+
gt: "gt";
|
|
10258
|
+
gte: "gte";
|
|
10259
|
+
lt: "lt";
|
|
10260
|
+
lte: "lte";
|
|
10261
|
+
contains: "contains";
|
|
10262
|
+
}>;
|
|
10263
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
10264
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
10265
|
+
property: z.ZodLiteral<"status">;
|
|
10266
|
+
field_name: z.ZodString;
|
|
10267
|
+
operator: z.ZodEnum<{
|
|
10268
|
+
eq: "eq";
|
|
10269
|
+
neq: "neq";
|
|
10270
|
+
}>;
|
|
10271
|
+
value: z.ZodEnum<{
|
|
10272
|
+
completed: "completed";
|
|
10273
|
+
failed: "failed";
|
|
10274
|
+
no_result: "no_result";
|
|
10275
|
+
skipped: "skipped";
|
|
10276
|
+
}>;
|
|
10277
|
+
}, z.z.core.$strip>], "property">>;
|
|
10278
|
+
}, z.z.core.$strip>;
|
|
10279
|
+
}, z.z.core.$strip>>>;
|
|
10280
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
10281
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
10282
|
+
first: "first";
|
|
10283
|
+
}>>;
|
|
10284
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
10285
|
+
type: z.ZodLiteral<"vault">;
|
|
10286
|
+
connection: z.ZodString;
|
|
10287
|
+
}, z.z.core.$strip>>;
|
|
10288
|
+
}, z.z.core.$strip>>>;
|
|
10289
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
10290
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
10291
|
+
url_input: z.ZodDefault<z.ZodObject<{
|
|
10292
|
+
alias: z.ZodString;
|
|
10293
|
+
}, z.z.core.$strip>>;
|
|
10294
|
+
}, z.z.core.$strip>>;
|
|
10295
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
10296
|
+
domain: z.ZodDefault<z.ZodObject<{
|
|
10297
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
10298
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
10299
|
+
}, z.z.core.$strip>>;
|
|
10300
|
+
}, z.z.core.$strip>>;
|
|
10301
|
+
}, z.z.core.$strip>>;
|
|
9394
10302
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
9395
10303
|
pipe_id: z.ZodLiteral<"website:scrape:firecrawl@1">;
|
|
9396
10304
|
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -9670,7 +10578,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9670
10578
|
}, z.z.core.$strip>>;
|
|
9671
10579
|
}, z.z.core.$strip>>;
|
|
9672
10580
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
9673
|
-
pipe_id: z.ZodLiteral<"sheet:append@1">;
|
|
10581
|
+
pipe_id: z.ZodLiteral<"sheet:row:append@1">;
|
|
9674
10582
|
connector: z.ZodObject<{
|
|
9675
10583
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
9676
10584
|
first: "first";
|
|
@@ -9722,7 +10630,11 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9722
10630
|
sheet: z.ZodString;
|
|
9723
10631
|
run: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
9724
10632
|
allow_field_creation: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
9725
|
-
included_fields: z.
|
|
10633
|
+
included_fields: z.ZodArray<z.ZodObject<{
|
|
10634
|
+
field_name: z.ZodString;
|
|
10635
|
+
}, z.z.core.$strip>> | z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
10636
|
+
field_name: z.ZodString;
|
|
10637
|
+
}, z.z.core.$strip>>>;
|
|
9726
10638
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
9727
10639
|
sheet_record_id: z.ZodDefault<z.ZodObject<{
|
|
9728
10640
|
alias: z.ZodDefault<z.ZodString>;
|
|
@@ -9731,7 +10643,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9731
10643
|
}, z.z.core.$strip>>;
|
|
9732
10644
|
}, z.z.core.$strip>;
|
|
9733
10645
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
9734
|
-
pipe_id: z.ZodLiteral<"sheet:expandappend@1">;
|
|
10646
|
+
pipe_id: z.ZodLiteral<"sheet:row:expandappend@1">;
|
|
9735
10647
|
connector: z.ZodObject<{
|
|
9736
10648
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
9737
10649
|
first: "first";
|
|
@@ -10293,6 +11205,81 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10293
11205
|
}, z.z.core.$strip>>;
|
|
10294
11206
|
}, z.z.core.$strip>>;
|
|
10295
11207
|
}, z.z.core.$strip>>;
|
|
11208
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
11209
|
+
pipe_id: z.ZodLiteral<"sheet:row:append:sheet@1">;
|
|
11210
|
+
connector: z.ZodObject<{
|
|
11211
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
11212
|
+
first: "first";
|
|
11213
|
+
}>>;
|
|
11214
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
11215
|
+
type: z.ZodLiteral<"vault">;
|
|
11216
|
+
connection: z.ZodString;
|
|
11217
|
+
}, z.z.core.$strip>>;
|
|
11218
|
+
}, z.z.core.$strip>;
|
|
11219
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11220
|
+
action: z.ZodEnum<{
|
|
11221
|
+
run: "run";
|
|
11222
|
+
}>;
|
|
11223
|
+
when: z.ZodObject<{
|
|
11224
|
+
logic: z.ZodEnum<{
|
|
11225
|
+
and: "and";
|
|
11226
|
+
or: "or";
|
|
11227
|
+
}>;
|
|
11228
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11229
|
+
property: z.ZodLiteral<"value">;
|
|
11230
|
+
field_name: z.ZodString;
|
|
11231
|
+
operator: z.ZodEnum<{
|
|
11232
|
+
eq: "eq";
|
|
11233
|
+
neq: "neq";
|
|
11234
|
+
gt: "gt";
|
|
11235
|
+
gte: "gte";
|
|
11236
|
+
lt: "lt";
|
|
11237
|
+
lte: "lte";
|
|
11238
|
+
contains: "contains";
|
|
11239
|
+
}>;
|
|
11240
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
11241
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
11242
|
+
property: z.ZodLiteral<"status">;
|
|
11243
|
+
field_name: z.ZodString;
|
|
11244
|
+
operator: z.ZodEnum<{
|
|
11245
|
+
eq: "eq";
|
|
11246
|
+
neq: "neq";
|
|
11247
|
+
}>;
|
|
11248
|
+
value: z.ZodEnum<{
|
|
11249
|
+
completed: "completed";
|
|
11250
|
+
failed: "failed";
|
|
11251
|
+
no_result: "no_result";
|
|
11252
|
+
skipped: "skipped";
|
|
11253
|
+
}>;
|
|
11254
|
+
}, z.z.core.$strip>], "property">>;
|
|
11255
|
+
}, z.z.core.$strip>;
|
|
11256
|
+
}, z.z.core.$strip>>>;
|
|
11257
|
+
config: z.ZodObject<{
|
|
11258
|
+
run: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
11259
|
+
allow_field_creation: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
11260
|
+
included_fields: z.ZodArray<z.ZodObject<{
|
|
11261
|
+
field_name: z.ZodString;
|
|
11262
|
+
}, z.z.core.$strip>> | z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
11263
|
+
field_name: z.ZodString;
|
|
11264
|
+
}, z.z.core.$strip>>>;
|
|
11265
|
+
allow_sheet_creation: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
11266
|
+
new_sheet_team_id: z.ZodString;
|
|
11267
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
11268
|
+
sheet: z.ZodDefault<z.ZodObject<{
|
|
11269
|
+
alias: z.ZodString;
|
|
11270
|
+
}, z.z.core.$strip>>;
|
|
11271
|
+
}, z.z.core.$strip>>;
|
|
11272
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
11273
|
+
sheet_record_id: z.ZodDefault<z.ZodObject<{
|
|
11274
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
11275
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
11276
|
+
}, z.z.core.$strip>>;
|
|
11277
|
+
created_sheet: z.ZodDefault<z.ZodObject<{
|
|
11278
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
11279
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
11280
|
+
}, z.z.core.$strip>>;
|
|
11281
|
+
}, z.z.core.$strip>>;
|
|
11282
|
+
}, z.z.core.$strip>;
|
|
10296
11283
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
10297
11284
|
pipe_id: z.ZodLiteral<"company:identity@1">;
|
|
10298
11285
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -10704,7 +11691,9 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10704
11691
|
"template:fill@1": "template:fill@1";
|
|
10705
11692
|
"contact:create:resend@1": "contact:create:resend@1";
|
|
10706
11693
|
"people:match:role:waterfall@1": "people:match:role:waterfall@1";
|
|
11694
|
+
"people:identity:amplemarket@1": "people:identity:amplemarket@1";
|
|
10707
11695
|
"company:identity@2": "company:identity@2";
|
|
11696
|
+
"people:match:amplemarket@1": "people:match:amplemarket@1";
|
|
10708
11697
|
"people:phone:profile:waterfall@1": "people:phone:profile:waterfall@1";
|
|
10709
11698
|
"people:personalemail:profile:waterfall@1": "people:personalemail:profile:waterfall@1";
|
|
10710
11699
|
"people:profile:waterfall@1": "people:profile:waterfall@1";
|
|
@@ -10714,12 +11703,14 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10714
11703
|
"people:email:validate:millionverifier@1": "people:email:validate:millionverifier@1";
|
|
10715
11704
|
"people:phone:workemail:waterfall@1": "people:phone:workemail:waterfall@1";
|
|
10716
11705
|
"fields:merge@1": "fields:merge@1";
|
|
11706
|
+
"field:slugify@1": "field:slugify@1";
|
|
11707
|
+
"field:domainify@1": "field:domainify@1";
|
|
10717
11708
|
"website:scrape:firecrawl@1": "website:scrape:firecrawl@1";
|
|
10718
11709
|
"website:scrapelist:firecrawl@1": "website:scrapelist:firecrawl@1";
|
|
10719
11710
|
"website:extract:firecrawl@1": "website:extract:firecrawl@1";
|
|
10720
11711
|
"website:maplinks:firecrawl@1": "website:maplinks:firecrawl@1";
|
|
10721
|
-
"sheet:append@1": "sheet:append@1";
|
|
10722
|
-
"sheet:expandappend@1": "sheet:expandappend@1";
|
|
11712
|
+
"sheet:row:append@1": "sheet:row:append@1";
|
|
11713
|
+
"sheet:row:expandappend@1": "sheet:row:expandappend@1";
|
|
10723
11714
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
10724
11715
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
10725
11716
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
@@ -10727,6 +11718,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10727
11718
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
10728
11719
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
10729
11720
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
11721
|
+
"sheet:row:append:sheet@1": "sheet:row:append:sheet@1";
|
|
10730
11722
|
"company:identity@1": "company:identity@1";
|
|
10731
11723
|
"people:professionalprofile:waterfall@1": "people:professionalprofile:waterfall@1";
|
|
10732
11724
|
"people:professionalprofileurl:name@1": "people:professionalprofileurl:name@1";
|
|
@@ -10761,7 +11753,9 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10761
11753
|
"template:fill@1": "template:fill@1";
|
|
10762
11754
|
"contact:create:resend@1": "contact:create:resend@1";
|
|
10763
11755
|
"people:match:role:waterfall@1": "people:match:role:waterfall@1";
|
|
11756
|
+
"people:identity:amplemarket@1": "people:identity:amplemarket@1";
|
|
10764
11757
|
"company:identity@2": "company:identity@2";
|
|
11758
|
+
"people:match:amplemarket@1": "people:match:amplemarket@1";
|
|
10765
11759
|
"people:phone:profile:waterfall@1": "people:phone:profile:waterfall@1";
|
|
10766
11760
|
"people:personalemail:profile:waterfall@1": "people:personalemail:profile:waterfall@1";
|
|
10767
11761
|
"people:profile:waterfall@1": "people:profile:waterfall@1";
|
|
@@ -10771,12 +11765,14 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10771
11765
|
"people:email:validate:millionverifier@1": "people:email:validate:millionverifier@1";
|
|
10772
11766
|
"people:phone:workemail:waterfall@1": "people:phone:workemail:waterfall@1";
|
|
10773
11767
|
"fields:merge@1": "fields:merge@1";
|
|
11768
|
+
"field:slugify@1": "field:slugify@1";
|
|
11769
|
+
"field:domainify@1": "field:domainify@1";
|
|
10774
11770
|
"website:scrape:firecrawl@1": "website:scrape:firecrawl@1";
|
|
10775
11771
|
"website:scrapelist:firecrawl@1": "website:scrapelist:firecrawl@1";
|
|
10776
11772
|
"website:extract:firecrawl@1": "website:extract:firecrawl@1";
|
|
10777
11773
|
"website:maplinks:firecrawl@1": "website:maplinks:firecrawl@1";
|
|
10778
|
-
"sheet:append@1": "sheet:append@1";
|
|
10779
|
-
"sheet:expandappend@1": "sheet:expandappend@1";
|
|
11774
|
+
"sheet:row:append@1": "sheet:row:append@1";
|
|
11775
|
+
"sheet:row:expandappend@1": "sheet:row:expandappend@1";
|
|
10780
11776
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
10781
11777
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
10782
11778
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
@@ -10784,6 +11780,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10784
11780
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
10785
11781
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
10786
11782
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
11783
|
+
"sheet:row:append:sheet@1": "sheet:row:append:sheet@1";
|
|
10787
11784
|
"company:identity@1": "company:identity@1";
|
|
10788
11785
|
"people:professionalprofile:waterfall@1": "people:professionalprofile:waterfall@1";
|
|
10789
11786
|
"people:professionalprofileurl:name@1": "people:professionalprofileurl:name@1";
|
|
@@ -10840,6 +11837,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10840
11837
|
openai: "openai";
|
|
10841
11838
|
companyenrich: "companyenrich";
|
|
10842
11839
|
logodev: "logodev";
|
|
11840
|
+
amplemarket: "amplemarket";
|
|
10843
11841
|
}>;
|
|
10844
11842
|
}, z.z.core.$strip>>;
|
|
10845
11843
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -10866,6 +11864,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10866
11864
|
openai: "openai";
|
|
10867
11865
|
companyenrich: "companyenrich";
|
|
10868
11866
|
logodev: "logodev";
|
|
11867
|
+
amplemarket: "amplemarket";
|
|
10869
11868
|
}>>;
|
|
10870
11869
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
10871
11870
|
pipe0: "pipe0";
|
|
@@ -10891,6 +11890,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10891
11890
|
openai: "openai";
|
|
10892
11891
|
companyenrich: "companyenrich";
|
|
10893
11892
|
logodev: "logodev";
|
|
11893
|
+
amplemarket: "amplemarket";
|
|
10894
11894
|
}>>;
|
|
10895
11895
|
}, z.z.core.$strip>>>;
|
|
10896
11896
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -10994,7 +11994,9 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10994
11994
|
"template:fill@1": "template:fill@1";
|
|
10995
11995
|
"contact:create:resend@1": "contact:create:resend@1";
|
|
10996
11996
|
"people:match:role:waterfall@1": "people:match:role:waterfall@1";
|
|
11997
|
+
"people:identity:amplemarket@1": "people:identity:amplemarket@1";
|
|
10997
11998
|
"company:identity@2": "company:identity@2";
|
|
11999
|
+
"people:match:amplemarket@1": "people:match:amplemarket@1";
|
|
10998
12000
|
"people:phone:profile:waterfall@1": "people:phone:profile:waterfall@1";
|
|
10999
12001
|
"people:personalemail:profile:waterfall@1": "people:personalemail:profile:waterfall@1";
|
|
11000
12002
|
"people:profile:waterfall@1": "people:profile:waterfall@1";
|
|
@@ -11004,12 +12006,14 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11004
12006
|
"people:email:validate:millionverifier@1": "people:email:validate:millionverifier@1";
|
|
11005
12007
|
"people:phone:workemail:waterfall@1": "people:phone:workemail:waterfall@1";
|
|
11006
12008
|
"fields:merge@1": "fields:merge@1";
|
|
12009
|
+
"field:slugify@1": "field:slugify@1";
|
|
12010
|
+
"field:domainify@1": "field:domainify@1";
|
|
11007
12011
|
"website:scrape:firecrawl@1": "website:scrape:firecrawl@1";
|
|
11008
12012
|
"website:scrapelist:firecrawl@1": "website:scrapelist:firecrawl@1";
|
|
11009
12013
|
"website:extract:firecrawl@1": "website:extract:firecrawl@1";
|
|
11010
12014
|
"website:maplinks:firecrawl@1": "website:maplinks:firecrawl@1";
|
|
11011
|
-
"sheet:append@1": "sheet:append@1";
|
|
11012
|
-
"sheet:expandappend@1": "sheet:expandappend@1";
|
|
12015
|
+
"sheet:row:append@1": "sheet:row:append@1";
|
|
12016
|
+
"sheet:row:expandappend@1": "sheet:row:expandappend@1";
|
|
11013
12017
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
11014
12018
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
11015
12019
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
@@ -11017,6 +12021,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11017
12021
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
11018
12022
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
11019
12023
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
12024
|
+
"sheet:row:append:sheet@1": "sheet:row:append:sheet@1";
|
|
11020
12025
|
"company:identity@1": "company:identity@1";
|
|
11021
12026
|
"people:professionalprofile:waterfall@1": "people:professionalprofile:waterfall@1";
|
|
11022
12027
|
"people:professionalprofileurl:name@1": "people:professionalprofileurl:name@1";
|
|
@@ -11051,7 +12056,9 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11051
12056
|
"template:fill@1": "template:fill@1";
|
|
11052
12057
|
"contact:create:resend@1": "contact:create:resend@1";
|
|
11053
12058
|
"people:match:role:waterfall@1": "people:match:role:waterfall@1";
|
|
12059
|
+
"people:identity:amplemarket@1": "people:identity:amplemarket@1";
|
|
11054
12060
|
"company:identity@2": "company:identity@2";
|
|
12061
|
+
"people:match:amplemarket@1": "people:match:amplemarket@1";
|
|
11055
12062
|
"people:phone:profile:waterfall@1": "people:phone:profile:waterfall@1";
|
|
11056
12063
|
"people:personalemail:profile:waterfall@1": "people:personalemail:profile:waterfall@1";
|
|
11057
12064
|
"people:profile:waterfall@1": "people:profile:waterfall@1";
|
|
@@ -11061,12 +12068,14 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11061
12068
|
"people:email:validate:millionverifier@1": "people:email:validate:millionverifier@1";
|
|
11062
12069
|
"people:phone:workemail:waterfall@1": "people:phone:workemail:waterfall@1";
|
|
11063
12070
|
"fields:merge@1": "fields:merge@1";
|
|
12071
|
+
"field:slugify@1": "field:slugify@1";
|
|
12072
|
+
"field:domainify@1": "field:domainify@1";
|
|
11064
12073
|
"website:scrape:firecrawl@1": "website:scrape:firecrawl@1";
|
|
11065
12074
|
"website:scrapelist:firecrawl@1": "website:scrapelist:firecrawl@1";
|
|
11066
12075
|
"website:extract:firecrawl@1": "website:extract:firecrawl@1";
|
|
11067
12076
|
"website:maplinks:firecrawl@1": "website:maplinks:firecrawl@1";
|
|
11068
|
-
"sheet:append@1": "sheet:append@1";
|
|
11069
|
-
"sheet:expandappend@1": "sheet:expandappend@1";
|
|
12077
|
+
"sheet:row:append@1": "sheet:row:append@1";
|
|
12078
|
+
"sheet:row:expandappend@1": "sheet:row:expandappend@1";
|
|
11070
12079
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
11071
12080
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
11072
12081
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
@@ -11074,6 +12083,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11074
12083
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
11075
12084
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
11076
12085
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
12086
|
+
"sheet:row:append:sheet@1": "sheet:row:append:sheet@1";
|
|
11077
12087
|
"company:identity@1": "company:identity@1";
|
|
11078
12088
|
"people:professionalprofile:waterfall@1": "people:professionalprofile:waterfall@1";
|
|
11079
12089
|
"people:professionalprofileurl:name@1": "people:professionalprofileurl:name@1";
|
|
@@ -11130,6 +12140,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11130
12140
|
openai: "openai";
|
|
11131
12141
|
companyenrich: "companyenrich";
|
|
11132
12142
|
logodev: "logodev";
|
|
12143
|
+
amplemarket: "amplemarket";
|
|
11133
12144
|
}>;
|
|
11134
12145
|
}, z.z.core.$strip>>;
|
|
11135
12146
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -11156,6 +12167,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11156
12167
|
openai: "openai";
|
|
11157
12168
|
companyenrich: "companyenrich";
|
|
11158
12169
|
logodev: "logodev";
|
|
12170
|
+
amplemarket: "amplemarket";
|
|
11159
12171
|
}>>;
|
|
11160
12172
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
11161
12173
|
pipe0: "pipe0";
|
|
@@ -11181,6 +12193,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11181
12193
|
openai: "openai";
|
|
11182
12194
|
companyenrich: "companyenrich";
|
|
11183
12195
|
logodev: "logodev";
|
|
12196
|
+
amplemarket: "amplemarket";
|
|
11184
12197
|
}>>;
|
|
11185
12198
|
}, z.z.core.$strip>>>;
|
|
11186
12199
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|