@pipe0/ops 0.0.9 → 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 +8 -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 +5 -5
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2324 -1198
- 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/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 +415 -3
- package/dist/pipes/catalog/pipes-catalog.d.ts +1558 -250
- 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 +94 -27
- package/dist/pipes/utils/sheet-schemas-primitives.d.ts +815 -25
- package/dist/searches/catalog/searches-catalog.d.ts +27 -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<{
|
|
@@ -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";
|
|
@@ -3203,6 +3389,76 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3203
3389
|
}, z.z.core.$strip>>;
|
|
3204
3390
|
}, z.z.core.$strip>>;
|
|
3205
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>;
|
|
3206
3462
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
3207
3463
|
pipe_id: z.ZodLiteral<"company:identity@1">;
|
|
3208
3464
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -5176,7 +5432,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5176
5432
|
}, z.z.core.$strip>>;
|
|
5177
5433
|
}, z.z.core.$strip>;
|
|
5178
5434
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
5179
|
-
pipe_id: z.ZodLiteral<"
|
|
5435
|
+
pipe_id: z.ZodLiteral<"people:identity:amplemarket@1">;
|
|
5180
5436
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5181
5437
|
action: z.ZodEnum<{
|
|
5182
5438
|
run: "run";
|
|
@@ -5215,7 +5471,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5215
5471
|
}, z.z.core.$strip>], "property">>;
|
|
5216
5472
|
}, z.z.core.$strip>;
|
|
5217
5473
|
}, z.z.core.$strip>>>;
|
|
5218
|
-
connector: z.
|
|
5474
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5219
5475
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
5220
5476
|
first: "first";
|
|
5221
5477
|
}>>;
|
|
@@ -5226,22 +5482,84 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5226
5482
|
}, z.z.core.$strip>>>;
|
|
5227
5483
|
config: z.ZodOptional<z.ZodObject<{
|
|
5228
5484
|
input_fields: z.ZodOptional<z.ZodObject<{
|
|
5229
|
-
|
|
5485
|
+
email: z.ZodDefault<z.ZodObject<{
|
|
5230
5486
|
alias: z.ZodString;
|
|
5231
5487
|
}, z.z.core.$strip>>;
|
|
5232
5488
|
}, z.z.core.$strip>>;
|
|
5233
5489
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
5234
|
-
|
|
5235
|
-
alias: z.ZodDefault<z.ZodString>;
|
|
5236
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5237
|
-
}, z.z.core.$strip>>;
|
|
5238
|
-
cleaned_company_name: z.ZodDefault<z.ZodObject<{
|
|
5490
|
+
amplemarket_person_match: z.ZodDefault<z.ZodObject<{
|
|
5239
5491
|
alias: z.ZodDefault<z.ZodString>;
|
|
5240
5492
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5241
5493
|
}, z.z.core.$strip>>;
|
|
5242
|
-
|
|
5243
|
-
|
|
5244
|
-
|
|
5494
|
+
}, z.z.core.$strip>>;
|
|
5495
|
+
}, z.z.core.$strip>>;
|
|
5496
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
5497
|
+
pipe_id: z.ZodLiteral<"company:identity@2">;
|
|
5498
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5499
|
+
action: z.ZodEnum<{
|
|
5500
|
+
run: "run";
|
|
5501
|
+
}>;
|
|
5502
|
+
when: z.ZodObject<{
|
|
5503
|
+
logic: z.ZodEnum<{
|
|
5504
|
+
and: "and";
|
|
5505
|
+
or: "or";
|
|
5506
|
+
}>;
|
|
5507
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5508
|
+
property: z.ZodLiteral<"value">;
|
|
5509
|
+
field_name: z.ZodString;
|
|
5510
|
+
operator: z.ZodEnum<{
|
|
5511
|
+
eq: "eq";
|
|
5512
|
+
neq: "neq";
|
|
5513
|
+
gt: "gt";
|
|
5514
|
+
gte: "gte";
|
|
5515
|
+
lt: "lt";
|
|
5516
|
+
lte: "lte";
|
|
5517
|
+
contains: "contains";
|
|
5518
|
+
}>;
|
|
5519
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
5520
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
5521
|
+
property: z.ZodLiteral<"status">;
|
|
5522
|
+
field_name: z.ZodString;
|
|
5523
|
+
operator: z.ZodEnum<{
|
|
5524
|
+
eq: "eq";
|
|
5525
|
+
neq: "neq";
|
|
5526
|
+
}>;
|
|
5527
|
+
value: z.ZodEnum<{
|
|
5528
|
+
completed: "completed";
|
|
5529
|
+
failed: "failed";
|
|
5530
|
+
no_result: "no_result";
|
|
5531
|
+
skipped: "skipped";
|
|
5532
|
+
}>;
|
|
5533
|
+
}, z.z.core.$strip>], "property">>;
|
|
5534
|
+
}, z.z.core.$strip>;
|
|
5535
|
+
}, z.z.core.$strip>>>;
|
|
5536
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5537
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
5538
|
+
first: "first";
|
|
5539
|
+
}>>;
|
|
5540
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
5541
|
+
type: z.ZodLiteral<"vault">;
|
|
5542
|
+
connection: z.ZodString;
|
|
5543
|
+
}, z.z.core.$strip>>;
|
|
5544
|
+
}, z.z.core.$strip>>>;
|
|
5545
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
5546
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
5547
|
+
company_name: z.ZodDefault<z.ZodObject<{
|
|
5548
|
+
alias: z.ZodString;
|
|
5549
|
+
}, z.z.core.$strip>>;
|
|
5550
|
+
}, z.z.core.$strip>>;
|
|
5551
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
5552
|
+
company_profile_url: z.ZodDefault<z.ZodObject<{
|
|
5553
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
5554
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5555
|
+
}, z.z.core.$strip>>;
|
|
5556
|
+
cleaned_company_name: z.ZodDefault<z.ZodObject<{
|
|
5557
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
5558
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5559
|
+
}, z.z.core.$strip>>;
|
|
5560
|
+
company_website_url: z.ZodDefault<z.ZodObject<{
|
|
5561
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
5562
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5245
5563
|
}, z.z.core.$strip>>;
|
|
5246
5564
|
}, z.z.core.$strip>>;
|
|
5247
5565
|
}, z.z.core.$strip>>;
|
|
@@ -5849,6 +6167,130 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
5849
6167
|
}, z.z.core.$strip>>;
|
|
5850
6168
|
}, z.z.core.$strip>>;
|
|
5851
6169
|
}, z.z.core.$strip>;
|
|
6170
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
6171
|
+
pipe_id: z.ZodLiteral<"field:slugify@1">;
|
|
6172
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
6173
|
+
action: z.ZodEnum<{
|
|
6174
|
+
run: "run";
|
|
6175
|
+
}>;
|
|
6176
|
+
when: z.ZodObject<{
|
|
6177
|
+
logic: z.ZodEnum<{
|
|
6178
|
+
and: "and";
|
|
6179
|
+
or: "or";
|
|
6180
|
+
}>;
|
|
6181
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6182
|
+
property: z.ZodLiteral<"value">;
|
|
6183
|
+
field_name: z.ZodString;
|
|
6184
|
+
operator: z.ZodEnum<{
|
|
6185
|
+
eq: "eq";
|
|
6186
|
+
neq: "neq";
|
|
6187
|
+
gt: "gt";
|
|
6188
|
+
gte: "gte";
|
|
6189
|
+
lt: "lt";
|
|
6190
|
+
lte: "lte";
|
|
6191
|
+
contains: "contains";
|
|
6192
|
+
}>;
|
|
6193
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
6194
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
6195
|
+
property: z.ZodLiteral<"status">;
|
|
6196
|
+
field_name: z.ZodString;
|
|
6197
|
+
operator: z.ZodEnum<{
|
|
6198
|
+
eq: "eq";
|
|
6199
|
+
neq: "neq";
|
|
6200
|
+
}>;
|
|
6201
|
+
value: z.ZodEnum<{
|
|
6202
|
+
completed: "completed";
|
|
6203
|
+
failed: "failed";
|
|
6204
|
+
no_result: "no_result";
|
|
6205
|
+
skipped: "skipped";
|
|
6206
|
+
}>;
|
|
6207
|
+
}, z.z.core.$strip>], "property">>;
|
|
6208
|
+
}, z.z.core.$strip>;
|
|
6209
|
+
}, z.z.core.$strip>>>;
|
|
6210
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
6211
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
6212
|
+
first: "first";
|
|
6213
|
+
}>>;
|
|
6214
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
6215
|
+
type: z.ZodLiteral<"vault">;
|
|
6216
|
+
connection: z.ZodString;
|
|
6217
|
+
}, z.z.core.$strip>>;
|
|
6218
|
+
}, z.z.core.$strip>>>;
|
|
6219
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
6220
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
6221
|
+
string_input: z.ZodDefault<z.ZodObject<{
|
|
6222
|
+
alias: z.ZodString;
|
|
6223
|
+
}, z.z.core.$strip>>;
|
|
6224
|
+
}, z.z.core.$strip>>;
|
|
6225
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
6226
|
+
slugified: z.ZodDefault<z.ZodObject<{
|
|
6227
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
6228
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
6229
|
+
}, z.z.core.$strip>>;
|
|
6230
|
+
}, z.z.core.$strip>>;
|
|
6231
|
+
}, z.z.core.$strip>>;
|
|
6232
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
6233
|
+
pipe_id: z.ZodLiteral<"field:domainify@1">;
|
|
6234
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
6235
|
+
action: z.ZodEnum<{
|
|
6236
|
+
run: "run";
|
|
6237
|
+
}>;
|
|
6238
|
+
when: z.ZodObject<{
|
|
6239
|
+
logic: z.ZodEnum<{
|
|
6240
|
+
and: "and";
|
|
6241
|
+
or: "or";
|
|
6242
|
+
}>;
|
|
6243
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6244
|
+
property: z.ZodLiteral<"value">;
|
|
6245
|
+
field_name: z.ZodString;
|
|
6246
|
+
operator: z.ZodEnum<{
|
|
6247
|
+
eq: "eq";
|
|
6248
|
+
neq: "neq";
|
|
6249
|
+
gt: "gt";
|
|
6250
|
+
gte: "gte";
|
|
6251
|
+
lt: "lt";
|
|
6252
|
+
lte: "lte";
|
|
6253
|
+
contains: "contains";
|
|
6254
|
+
}>;
|
|
6255
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
6256
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
6257
|
+
property: z.ZodLiteral<"status">;
|
|
6258
|
+
field_name: z.ZodString;
|
|
6259
|
+
operator: z.ZodEnum<{
|
|
6260
|
+
eq: "eq";
|
|
6261
|
+
neq: "neq";
|
|
6262
|
+
}>;
|
|
6263
|
+
value: z.ZodEnum<{
|
|
6264
|
+
completed: "completed";
|
|
6265
|
+
failed: "failed";
|
|
6266
|
+
no_result: "no_result";
|
|
6267
|
+
skipped: "skipped";
|
|
6268
|
+
}>;
|
|
6269
|
+
}, z.z.core.$strip>], "property">>;
|
|
6270
|
+
}, z.z.core.$strip>;
|
|
6271
|
+
}, z.z.core.$strip>>>;
|
|
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>>;
|
|
6286
|
+
}, z.z.core.$strip>>;
|
|
6287
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
6288
|
+
domain: z.ZodDefault<z.ZodObject<{
|
|
6289
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
6290
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
6291
|
+
}, z.z.core.$strip>>;
|
|
6292
|
+
}, z.z.core.$strip>>;
|
|
6293
|
+
}, z.z.core.$strip>>;
|
|
5852
6294
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
5853
6295
|
pipe_id: z.ZodLiteral<"website:scrape:firecrawl@1">;
|
|
5854
6296
|
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -6128,7 +6570,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
6128
6570
|
}, z.z.core.$strip>>;
|
|
6129
6571
|
}, z.z.core.$strip>>;
|
|
6130
6572
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
6131
|
-
pipe_id: z.ZodLiteral<"sheet:append@1">;
|
|
6573
|
+
pipe_id: z.ZodLiteral<"sheet:row:append@1">;
|
|
6132
6574
|
connector: z.ZodObject<{
|
|
6133
6575
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
6134
6576
|
first: "first";
|
|
@@ -6189,7 +6631,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
6189
6631
|
}, z.z.core.$strip>>;
|
|
6190
6632
|
}, z.z.core.$strip>;
|
|
6191
6633
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
6192
|
-
pipe_id: z.ZodLiteral<"sheet:expandappend@1">;
|
|
6634
|
+
pipe_id: z.ZodLiteral<"sheet:row:expandappend@1">;
|
|
6193
6635
|
connector: z.ZodObject<{
|
|
6194
6636
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
6195
6637
|
first: "first";
|
|
@@ -6751,6 +7193,76 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
6751
7193
|
}, z.z.core.$strip>>;
|
|
6752
7194
|
}, z.z.core.$strip>>;
|
|
6753
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>;
|
|
6754
7266
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
6755
7267
|
pipe_id: z.ZodLiteral<"company:identity@1">;
|
|
6756
7268
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -8717,6 +9229,68 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
8717
9229
|
}, z.z.core.$strip>>;
|
|
8718
9230
|
}, z.z.core.$strip>>;
|
|
8719
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<{
|
|
9282
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
9283
|
+
email: z.ZodDefault<z.ZodObject<{
|
|
9284
|
+
alias: z.ZodString;
|
|
9285
|
+
}, z.z.core.$strip>>;
|
|
9286
|
+
}, z.z.core.$strip>>;
|
|
9287
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
9288
|
+
amplemarket_person_match: z.ZodDefault<z.ZodObject<{
|
|
9289
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
9290
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
9291
|
+
}, z.z.core.$strip>>;
|
|
9292
|
+
}, z.z.core.$strip>>;
|
|
9293
|
+
}, z.z.core.$strip>>;
|
|
8720
9294
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
8721
9295
|
pipe_id: z.ZodLiteral<"company:identity@2">;
|
|
8722
9296
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -9391,6 +9965,130 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9391
9965
|
}, z.z.core.$strip>>;
|
|
9392
9966
|
}, z.z.core.$strip>>;
|
|
9393
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>>;
|
|
9394
10092
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
9395
10093
|
pipe_id: z.ZodLiteral<"website:scrape:firecrawl@1">;
|
|
9396
10094
|
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -9670,7 +10368,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9670
10368
|
}, z.z.core.$strip>>;
|
|
9671
10369
|
}, z.z.core.$strip>>;
|
|
9672
10370
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
9673
|
-
pipe_id: z.ZodLiteral<"sheet:append@1">;
|
|
10371
|
+
pipe_id: z.ZodLiteral<"sheet:row:append@1">;
|
|
9674
10372
|
connector: z.ZodObject<{
|
|
9675
10373
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
9676
10374
|
first: "first";
|
|
@@ -9731,7 +10429,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9731
10429
|
}, z.z.core.$strip>>;
|
|
9732
10430
|
}, z.z.core.$strip>;
|
|
9733
10431
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
9734
|
-
pipe_id: z.ZodLiteral<"sheet:expandappend@1">;
|
|
10432
|
+
pipe_id: z.ZodLiteral<"sheet:row:expandappend@1">;
|
|
9735
10433
|
connector: z.ZodObject<{
|
|
9736
10434
|
strategy: z.ZodDefault<z.ZodEnum<{
|
|
9737
10435
|
first: "first";
|
|
@@ -10293,6 +10991,76 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10293
10991
|
}, z.z.core.$strip>>;
|
|
10294
10992
|
}, z.z.core.$strip>>;
|
|
10295
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>;
|
|
10296
11064
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
10297
11065
|
pipe_id: z.ZodLiteral<"company:identity@1">;
|
|
10298
11066
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -10704,6 +11472,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10704
11472
|
"template:fill@1": "template:fill@1";
|
|
10705
11473
|
"contact:create:resend@1": "contact:create:resend@1";
|
|
10706
11474
|
"people:match:role:waterfall@1": "people:match:role:waterfall@1";
|
|
11475
|
+
"people:identity:amplemarket@1": "people:identity:amplemarket@1";
|
|
10707
11476
|
"company:identity@2": "company:identity@2";
|
|
10708
11477
|
"people:phone:profile:waterfall@1": "people:phone:profile:waterfall@1";
|
|
10709
11478
|
"people:personalemail:profile:waterfall@1": "people:personalemail:profile:waterfall@1";
|
|
@@ -10714,12 +11483,14 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10714
11483
|
"people:email:validate:millionverifier@1": "people:email:validate:millionverifier@1";
|
|
10715
11484
|
"people:phone:workemail:waterfall@1": "people:phone:workemail:waterfall@1";
|
|
10716
11485
|
"fields:merge@1": "fields:merge@1";
|
|
11486
|
+
"field:slugify@1": "field:slugify@1";
|
|
11487
|
+
"field:domainify@1": "field:domainify@1";
|
|
10717
11488
|
"website:scrape:firecrawl@1": "website:scrape:firecrawl@1";
|
|
10718
11489
|
"website:scrapelist:firecrawl@1": "website:scrapelist:firecrawl@1";
|
|
10719
11490
|
"website:extract:firecrawl@1": "website:extract:firecrawl@1";
|
|
10720
11491
|
"website:maplinks:firecrawl@1": "website:maplinks:firecrawl@1";
|
|
10721
|
-
"sheet:append@1": "sheet:append@1";
|
|
10722
|
-
"sheet:expandappend@1": "sheet:expandappend@1";
|
|
11492
|
+
"sheet:row:append@1": "sheet:row:append@1";
|
|
11493
|
+
"sheet:row:expandappend@1": "sheet:row:expandappend@1";
|
|
10723
11494
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
10724
11495
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
10725
11496
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
@@ -10727,6 +11498,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10727
11498
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
10728
11499
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
10729
11500
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
11501
|
+
"sheet:row:append:sheet@1": "sheet:row:append:sheet@1";
|
|
10730
11502
|
"company:identity@1": "company:identity@1";
|
|
10731
11503
|
"people:professionalprofile:waterfall@1": "people:professionalprofile:waterfall@1";
|
|
10732
11504
|
"people:professionalprofileurl:name@1": "people:professionalprofileurl:name@1";
|
|
@@ -10761,6 +11533,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10761
11533
|
"template:fill@1": "template:fill@1";
|
|
10762
11534
|
"contact:create:resend@1": "contact:create:resend@1";
|
|
10763
11535
|
"people:match:role:waterfall@1": "people:match:role:waterfall@1";
|
|
11536
|
+
"people:identity:amplemarket@1": "people:identity:amplemarket@1";
|
|
10764
11537
|
"company:identity@2": "company:identity@2";
|
|
10765
11538
|
"people:phone:profile:waterfall@1": "people:phone:profile:waterfall@1";
|
|
10766
11539
|
"people:personalemail:profile:waterfall@1": "people:personalemail:profile:waterfall@1";
|
|
@@ -10771,12 +11544,14 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10771
11544
|
"people:email:validate:millionverifier@1": "people:email:validate:millionverifier@1";
|
|
10772
11545
|
"people:phone:workemail:waterfall@1": "people:phone:workemail:waterfall@1";
|
|
10773
11546
|
"fields:merge@1": "fields:merge@1";
|
|
11547
|
+
"field:slugify@1": "field:slugify@1";
|
|
11548
|
+
"field:domainify@1": "field:domainify@1";
|
|
10774
11549
|
"website:scrape:firecrawl@1": "website:scrape:firecrawl@1";
|
|
10775
11550
|
"website:scrapelist:firecrawl@1": "website:scrapelist:firecrawl@1";
|
|
10776
11551
|
"website:extract:firecrawl@1": "website:extract:firecrawl@1";
|
|
10777
11552
|
"website:maplinks:firecrawl@1": "website:maplinks:firecrawl@1";
|
|
10778
|
-
"sheet:append@1": "sheet:append@1";
|
|
10779
|
-
"sheet:expandappend@1": "sheet:expandappend@1";
|
|
11553
|
+
"sheet:row:append@1": "sheet:row:append@1";
|
|
11554
|
+
"sheet:row:expandappend@1": "sheet:row:expandappend@1";
|
|
10780
11555
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
10781
11556
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
10782
11557
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
@@ -10784,6 +11559,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10784
11559
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
10785
11560
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
10786
11561
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
11562
|
+
"sheet:row:append:sheet@1": "sheet:row:append:sheet@1";
|
|
10787
11563
|
"company:identity@1": "company:identity@1";
|
|
10788
11564
|
"people:professionalprofile:waterfall@1": "people:professionalprofile:waterfall@1";
|
|
10789
11565
|
"people:professionalprofileurl:name@1": "people:professionalprofileurl:name@1";
|
|
@@ -10840,6 +11616,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10840
11616
|
openai: "openai";
|
|
10841
11617
|
companyenrich: "companyenrich";
|
|
10842
11618
|
logodev: "logodev";
|
|
11619
|
+
amplemarket: "amplemarket";
|
|
10843
11620
|
}>;
|
|
10844
11621
|
}, z.z.core.$strip>>;
|
|
10845
11622
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -10866,6 +11643,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10866
11643
|
openai: "openai";
|
|
10867
11644
|
companyenrich: "companyenrich";
|
|
10868
11645
|
logodev: "logodev";
|
|
11646
|
+
amplemarket: "amplemarket";
|
|
10869
11647
|
}>>;
|
|
10870
11648
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
10871
11649
|
pipe0: "pipe0";
|
|
@@ -10891,6 +11669,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10891
11669
|
openai: "openai";
|
|
10892
11670
|
companyenrich: "companyenrich";
|
|
10893
11671
|
logodev: "logodev";
|
|
11672
|
+
amplemarket: "amplemarket";
|
|
10894
11673
|
}>>;
|
|
10895
11674
|
}, z.z.core.$strip>>>;
|
|
10896
11675
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -10994,6 +11773,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10994
11773
|
"template:fill@1": "template:fill@1";
|
|
10995
11774
|
"contact:create:resend@1": "contact:create:resend@1";
|
|
10996
11775
|
"people:match:role:waterfall@1": "people:match:role:waterfall@1";
|
|
11776
|
+
"people:identity:amplemarket@1": "people:identity:amplemarket@1";
|
|
10997
11777
|
"company:identity@2": "company:identity@2";
|
|
10998
11778
|
"people:phone:profile:waterfall@1": "people:phone:profile:waterfall@1";
|
|
10999
11779
|
"people:personalemail:profile:waterfall@1": "people:personalemail:profile:waterfall@1";
|
|
@@ -11004,12 +11784,14 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11004
11784
|
"people:email:validate:millionverifier@1": "people:email:validate:millionverifier@1";
|
|
11005
11785
|
"people:phone:workemail:waterfall@1": "people:phone:workemail:waterfall@1";
|
|
11006
11786
|
"fields:merge@1": "fields:merge@1";
|
|
11787
|
+
"field:slugify@1": "field:slugify@1";
|
|
11788
|
+
"field:domainify@1": "field:domainify@1";
|
|
11007
11789
|
"website:scrape:firecrawl@1": "website:scrape:firecrawl@1";
|
|
11008
11790
|
"website:scrapelist:firecrawl@1": "website:scrapelist:firecrawl@1";
|
|
11009
11791
|
"website:extract:firecrawl@1": "website:extract:firecrawl@1";
|
|
11010
11792
|
"website:maplinks:firecrawl@1": "website:maplinks:firecrawl@1";
|
|
11011
|
-
"sheet:append@1": "sheet:append@1";
|
|
11012
|
-
"sheet:expandappend@1": "sheet:expandappend@1";
|
|
11793
|
+
"sheet:row:append@1": "sheet:row:append@1";
|
|
11794
|
+
"sheet:row:expandappend@1": "sheet:row:expandappend@1";
|
|
11013
11795
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
11014
11796
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
11015
11797
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
@@ -11017,6 +11799,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11017
11799
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
11018
11800
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
11019
11801
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
11802
|
+
"sheet:row:append:sheet@1": "sheet:row:append:sheet@1";
|
|
11020
11803
|
"company:identity@1": "company:identity@1";
|
|
11021
11804
|
"people:professionalprofile:waterfall@1": "people:professionalprofile:waterfall@1";
|
|
11022
11805
|
"people:professionalprofileurl:name@1": "people:professionalprofileurl:name@1";
|
|
@@ -11051,6 +11834,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11051
11834
|
"template:fill@1": "template:fill@1";
|
|
11052
11835
|
"contact:create:resend@1": "contact:create:resend@1";
|
|
11053
11836
|
"people:match:role:waterfall@1": "people:match:role:waterfall@1";
|
|
11837
|
+
"people:identity:amplemarket@1": "people:identity:amplemarket@1";
|
|
11054
11838
|
"company:identity@2": "company:identity@2";
|
|
11055
11839
|
"people:phone:profile:waterfall@1": "people:phone:profile:waterfall@1";
|
|
11056
11840
|
"people:personalemail:profile:waterfall@1": "people:personalemail:profile:waterfall@1";
|
|
@@ -11061,12 +11845,14 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11061
11845
|
"people:email:validate:millionverifier@1": "people:email:validate:millionverifier@1";
|
|
11062
11846
|
"people:phone:workemail:waterfall@1": "people:phone:workemail:waterfall@1";
|
|
11063
11847
|
"fields:merge@1": "fields:merge@1";
|
|
11848
|
+
"field:slugify@1": "field:slugify@1";
|
|
11849
|
+
"field:domainify@1": "field:domainify@1";
|
|
11064
11850
|
"website:scrape:firecrawl@1": "website:scrape:firecrawl@1";
|
|
11065
11851
|
"website:scrapelist:firecrawl@1": "website:scrapelist:firecrawl@1";
|
|
11066
11852
|
"website:extract:firecrawl@1": "website:extract:firecrawl@1";
|
|
11067
11853
|
"website:maplinks:firecrawl@1": "website:maplinks:firecrawl@1";
|
|
11068
|
-
"sheet:append@1": "sheet:append@1";
|
|
11069
|
-
"sheet:expandappend@1": "sheet:expandappend@1";
|
|
11854
|
+
"sheet:row:append@1": "sheet:row:append@1";
|
|
11855
|
+
"sheet:row:expandappend@1": "sheet:row:expandappend@1";
|
|
11070
11856
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
11071
11857
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
11072
11858
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
@@ -11074,6 +11860,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11074
11860
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
11075
11861
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
11076
11862
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
11863
|
+
"sheet:row:append:sheet@1": "sheet:row:append:sheet@1";
|
|
11077
11864
|
"company:identity@1": "company:identity@1";
|
|
11078
11865
|
"people:professionalprofile:waterfall@1": "people:professionalprofile:waterfall@1";
|
|
11079
11866
|
"people:professionalprofileurl:name@1": "people:professionalprofileurl:name@1";
|
|
@@ -11130,6 +11917,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11130
11917
|
openai: "openai";
|
|
11131
11918
|
companyenrich: "companyenrich";
|
|
11132
11919
|
logodev: "logodev";
|
|
11920
|
+
amplemarket: "amplemarket";
|
|
11133
11921
|
}>;
|
|
11134
11922
|
}, z.z.core.$strip>>;
|
|
11135
11923
|
available_providers: z.ZodArray<z.ZodEnum<{
|
|
@@ -11156,6 +11944,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11156
11944
|
openai: "openai";
|
|
11157
11945
|
companyenrich: "companyenrich";
|
|
11158
11946
|
logodev: "logodev";
|
|
11947
|
+
amplemarket: "amplemarket";
|
|
11159
11948
|
}>>;
|
|
11160
11949
|
successful_provider: z.ZodOptional<z.ZodEnum<{
|
|
11161
11950
|
pipe0: "pipe0";
|
|
@@ -11181,6 +11970,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
11181
11970
|
openai: "openai";
|
|
11182
11971
|
companyenrich: "companyenrich";
|
|
11183
11972
|
logodev: "logodev";
|
|
11973
|
+
amplemarket: "amplemarket";
|
|
11184
11974
|
}>>;
|
|
11185
11975
|
}, z.z.core.$strip>>>;
|
|
11186
11976
|
icon: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|