@getcommunity/gc-validators 0.0.221 → 0.0.222

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.
@@ -2421,11 +2421,112 @@ declare const QueryStrapiSearchClientReports: v.ObjectSchema<{
2421
2421
  readonly is_external: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2422
2422
  readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2423
2423
  readonly client_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
2424
+ readonly clients: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
2424
2425
  readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "title:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "is_external:ASC" | "is_external:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "title:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "is_external:ASC" | "is_external:DESC")[], 7, undefined>]>, undefined>;
2425
2426
  }, undefined>;
2426
2427
  type QueryStrapiSearchClientReports = v.InferOutput<typeof QueryStrapiSearchClientReports>;
2427
2428
  declare const SCreateClientReportDocument: v.ObjectSchema<{
2428
- readonly clients: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
2429
+ readonly clients: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
2430
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
2431
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2432
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
2433
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2434
+ }, undefined>, v.ObjectSchema<{
2435
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2436
+ }, undefined>, v.ObjectSchema<{
2437
+ readonly start: v.BooleanSchema<undefined>;
2438
+ }, undefined>, v.ObjectSchema<{
2439
+ readonly end: v.BooleanSchema<undefined>;
2440
+ }, undefined>], undefined>]>, {
2441
+ readonly end: true;
2442
+ }>, undefined>;
2443
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
2444
+ documentId: string;
2445
+ position?: {
2446
+ before: string;
2447
+ } | {
2448
+ after: string;
2449
+ } | {
2450
+ start: boolean;
2451
+ } | {
2452
+ end: boolean;
2453
+ } | undefined;
2454
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
2455
+ documentId: string;
2456
+ position?: {
2457
+ before: string;
2458
+ } | {
2459
+ after: string;
2460
+ } | {
2461
+ start: boolean;
2462
+ } | {
2463
+ end: boolean;
2464
+ } | undefined;
2465
+ })[], 100, undefined>]>;
2466
+ }, undefined>, v.ObjectSchema<{
2467
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
2468
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2469
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
2470
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2471
+ }, undefined>, v.ObjectSchema<{
2472
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2473
+ }, undefined>, v.ObjectSchema<{
2474
+ readonly start: v.BooleanSchema<undefined>;
2475
+ }, undefined>, v.ObjectSchema<{
2476
+ readonly end: v.BooleanSchema<undefined>;
2477
+ }, undefined>], undefined>]>, {
2478
+ readonly end: true;
2479
+ }>, undefined>;
2480
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
2481
+ documentId: string;
2482
+ position?: {
2483
+ before: string;
2484
+ } | {
2485
+ after: string;
2486
+ } | {
2487
+ start: boolean;
2488
+ } | {
2489
+ end: boolean;
2490
+ } | undefined;
2491
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
2492
+ documentId: string;
2493
+ position?: {
2494
+ before: string;
2495
+ } | {
2496
+ after: string;
2497
+ } | {
2498
+ start: boolean;
2499
+ } | {
2500
+ end: boolean;
2501
+ } | undefined;
2502
+ })[], 100, undefined>]>;
2503
+ }, undefined>, v.ObjectSchema<{
2504
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
2505
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2506
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
2507
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2508
+ }, undefined>, v.ObjectSchema<{
2509
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2510
+ }, undefined>, v.ObjectSchema<{
2511
+ readonly start: v.BooleanSchema<undefined>;
2512
+ }, undefined>, v.ObjectSchema<{
2513
+ readonly end: v.BooleanSchema<undefined>;
2514
+ }, undefined>], undefined>]>, {
2515
+ readonly end: true;
2516
+ }>, undefined>;
2517
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
2518
+ documentId: string;
2519
+ position?: {
2520
+ before: string;
2521
+ } | {
2522
+ after: string;
2523
+ } | {
2524
+ start: boolean;
2525
+ } | {
2526
+ end: boolean;
2527
+ } | undefined;
2528
+ })[], 1, undefined>]>;
2529
+ }, undefined>], undefined>, undefined>;
2429
2530
  readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2430
2531
  readonly report_id: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>]>;
2431
2532
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, true>;
@@ -2435,7 +2536,107 @@ declare const SCreateClientReportDocument: v.ObjectSchema<{
2435
2536
  }, undefined>;
2436
2537
  type SCreateClientReportDocument = v.InferOutput<typeof SCreateClientReportDocument>;
2437
2538
  declare const SUpdateClientReportDocument: v.ObjectSchema<{
2438
- readonly clients: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
2539
+ readonly clients: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
2540
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
2541
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2542
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
2543
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2544
+ }, undefined>, v.ObjectSchema<{
2545
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2546
+ }, undefined>, v.ObjectSchema<{
2547
+ readonly start: v.BooleanSchema<undefined>;
2548
+ }, undefined>, v.ObjectSchema<{
2549
+ readonly end: v.BooleanSchema<undefined>;
2550
+ }, undefined>], undefined>]>, {
2551
+ readonly end: true;
2552
+ }>, undefined>;
2553
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
2554
+ documentId: string;
2555
+ position?: {
2556
+ before: string;
2557
+ } | {
2558
+ after: string;
2559
+ } | {
2560
+ start: boolean;
2561
+ } | {
2562
+ end: boolean;
2563
+ } | undefined;
2564
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
2565
+ documentId: string;
2566
+ position?: {
2567
+ before: string;
2568
+ } | {
2569
+ after: string;
2570
+ } | {
2571
+ start: boolean;
2572
+ } | {
2573
+ end: boolean;
2574
+ } | undefined;
2575
+ })[], 100, undefined>]>;
2576
+ }, undefined>, v.ObjectSchema<{
2577
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
2578
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2579
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
2580
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2581
+ }, undefined>, v.ObjectSchema<{
2582
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2583
+ }, undefined>, v.ObjectSchema<{
2584
+ readonly start: v.BooleanSchema<undefined>;
2585
+ }, undefined>, v.ObjectSchema<{
2586
+ readonly end: v.BooleanSchema<undefined>;
2587
+ }, undefined>], undefined>]>, {
2588
+ readonly end: true;
2589
+ }>, undefined>;
2590
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
2591
+ documentId: string;
2592
+ position?: {
2593
+ before: string;
2594
+ } | {
2595
+ after: string;
2596
+ } | {
2597
+ start: boolean;
2598
+ } | {
2599
+ end: boolean;
2600
+ } | undefined;
2601
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
2602
+ documentId: string;
2603
+ position?: {
2604
+ before: string;
2605
+ } | {
2606
+ after: string;
2607
+ } | {
2608
+ start: boolean;
2609
+ } | {
2610
+ end: boolean;
2611
+ } | undefined;
2612
+ })[], 100, undefined>]>;
2613
+ }, undefined>, v.ObjectSchema<{
2614
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
2615
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2616
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
2617
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2618
+ }, undefined>, v.ObjectSchema<{
2619
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2620
+ }, undefined>, v.ObjectSchema<{
2621
+ readonly start: v.BooleanSchema<undefined>;
2622
+ }, undefined>, v.ObjectSchema<{
2623
+ readonly end: v.BooleanSchema<undefined>;
2624
+ }, undefined>], undefined>]>, {
2625
+ readonly end: true;
2626
+ }>, undefined>;
2627
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
2628
+ documentId: string;
2629
+ position?: {
2630
+ before: string;
2631
+ } | {
2632
+ after: string;
2633
+ } | {
2634
+ start: boolean;
2635
+ } | {
2636
+ end: boolean;
2637
+ } | undefined;
2638
+ })[], 1, undefined>]>;
2639
+ }, undefined>], undefined>, undefined>;
2439
2640
  readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
2440
2641
  readonly report_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
2441
2642
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -2447,7 +2648,107 @@ type SUpdateClientReportDocument = v.InferOutput<typeof SUpdateClientReportDocum
2447
2648
  declare const SUpdateClientReportDocumentRequest: v.ObjectSchema<{
2448
2649
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2449
2650
  readonly data: v.ObjectSchema<{
2450
- readonly clients: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
2651
+ readonly clients: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
2652
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
2653
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2654
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
2655
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2656
+ }, undefined>, v.ObjectSchema<{
2657
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2658
+ }, undefined>, v.ObjectSchema<{
2659
+ readonly start: v.BooleanSchema<undefined>;
2660
+ }, undefined>, v.ObjectSchema<{
2661
+ readonly end: v.BooleanSchema<undefined>;
2662
+ }, undefined>], undefined>]>, {
2663
+ readonly end: true;
2664
+ }>, undefined>;
2665
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
2666
+ documentId: string;
2667
+ position?: {
2668
+ before: string;
2669
+ } | {
2670
+ after: string;
2671
+ } | {
2672
+ start: boolean;
2673
+ } | {
2674
+ end: boolean;
2675
+ } | undefined;
2676
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
2677
+ documentId: string;
2678
+ position?: {
2679
+ before: string;
2680
+ } | {
2681
+ after: string;
2682
+ } | {
2683
+ start: boolean;
2684
+ } | {
2685
+ end: boolean;
2686
+ } | undefined;
2687
+ })[], 100, undefined>]>;
2688
+ }, undefined>, v.ObjectSchema<{
2689
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
2690
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2691
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
2692
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2693
+ }, undefined>, v.ObjectSchema<{
2694
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2695
+ }, undefined>, v.ObjectSchema<{
2696
+ readonly start: v.BooleanSchema<undefined>;
2697
+ }, undefined>, v.ObjectSchema<{
2698
+ readonly end: v.BooleanSchema<undefined>;
2699
+ }, undefined>], undefined>]>, {
2700
+ readonly end: true;
2701
+ }>, undefined>;
2702
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
2703
+ documentId: string;
2704
+ position?: {
2705
+ before: string;
2706
+ } | {
2707
+ after: string;
2708
+ } | {
2709
+ start: boolean;
2710
+ } | {
2711
+ end: boolean;
2712
+ } | undefined;
2713
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
2714
+ documentId: string;
2715
+ position?: {
2716
+ before: string;
2717
+ } | {
2718
+ after: string;
2719
+ } | {
2720
+ start: boolean;
2721
+ } | {
2722
+ end: boolean;
2723
+ } | undefined;
2724
+ })[], 100, undefined>]>;
2725
+ }, undefined>, v.ObjectSchema<{
2726
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
2727
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2728
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
2729
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2730
+ }, undefined>, v.ObjectSchema<{
2731
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2732
+ }, undefined>, v.ObjectSchema<{
2733
+ readonly start: v.BooleanSchema<undefined>;
2734
+ }, undefined>, v.ObjectSchema<{
2735
+ readonly end: v.BooleanSchema<undefined>;
2736
+ }, undefined>], undefined>]>, {
2737
+ readonly end: true;
2738
+ }>, undefined>;
2739
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
2740
+ documentId: string;
2741
+ position?: {
2742
+ before: string;
2743
+ } | {
2744
+ after: string;
2745
+ } | {
2746
+ start: boolean;
2747
+ } | {
2748
+ end: boolean;
2749
+ } | undefined;
2750
+ })[], 1, undefined>]>;
2751
+ }, undefined>], undefined>, undefined>;
2451
2752
  readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
2452
2753
  readonly report_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
2453
2754
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -2755,119 +3056,828 @@ declare const SUpdateContentPillarDocumentRequest: v.ObjectSchema<{
2755
3056
  }, undefined>;
2756
3057
  type SUpdateContentPillarDocumentRequest = v.InferOutput<typeof SUpdateContentPillarDocumentRequest>;
2757
3058
  //#endregion
2758
- //#region src/schemas/gcflytour-snap.schemas.d.ts
2759
- declare const GCFlyTourSnapSortKeys: readonly ["id", "title", "slug", "is_active", "is_hidden", "createdAt", "updatedAt"];
2760
- declare const QuerySortGCFlyTourSnaps: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], 7, undefined>]>, undefined>;
2761
- type QuerySortGCFlyTourSnaps = v.InferOutput<typeof QuerySortGCFlyTourSnaps>;
2762
- declare const QueryStrapiSearchGCFlyTourSnaps: v.ObjectSchema<{
2763
- readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
2764
- readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
2765
- readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
2766
- readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
2767
- readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2768
- readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2769
- readonly gcflytour: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
2770
- readonly gcflytours: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
2771
- readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], 7, undefined>]>, undefined>;
2772
- }, undefined>;
2773
- type QueryStrapiSearchGCFlyTourSnaps = v.InferOutput<typeof QueryStrapiSearchGCFlyTourSnaps>;
2774
- declare const SCreateGCFlyTourSnapDocument: v.ObjectSchema<{
2775
- readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2776
- readonly slug: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>]>;
2777
- readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
2778
- readonly is_active: v.BooleanSchema<undefined>;
2779
- readonly is_hidden: v.BooleanSchema<undefined>;
2780
- readonly gcflytour: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2781
- }, undefined>;
2782
- type SCreateGCFlyTourSnapDocument = v.InferOutput<typeof SCreateGCFlyTourSnapDocument>;
2783
- declare const SUpdateGCFlyTourSnapDocument: v.ObjectSchema<{
2784
- readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
2785
- readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
2786
- readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
2787
- readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2788
- readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2789
- readonly gcflytour: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
2790
- }, undefined>;
2791
- type SUpdateGCFlyTourSnapDocument = v.InferOutput<typeof SUpdateGCFlyTourSnapDocument>;
2792
- declare const SUpdateGCFlyTourSnapDocumentRequest: v.ObjectSchema<{
3059
+ //#region src/schemas/core-relations.schemas.d.ts
3060
+ declare const SEntityRelation: v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
2793
3061
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2794
- readonly data: v.ObjectSchema<{
2795
- readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
2796
- readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
2797
- readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
2798
- readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2799
- readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2800
- readonly gcflytour: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
2801
- }, undefined>;
2802
- }, undefined>;
2803
- type SUpdateGCFlyTourSnapDocumentRequest = v.InferOutput<typeof SUpdateGCFlyTourSnapDocumentRequest>;
2804
- //#endregion
2805
- //#region src/schemas/gcflytour.schemas.d.ts
2806
- declare const GCFlyTourSortKeys: readonly ["id", "title", "slug", "is_active", "is_hidden", "createdAt", "updatedAt"];
2807
- declare const QuerySortGCFlyTours: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], 7, undefined>]>, undefined>;
2808
- type QuerySortGCFlyTours = v.InferOutput<typeof QuerySortGCFlyTours>;
2809
- declare const QueryStrapiSearchGCFlyTours: v.ObjectSchema<{
2810
- readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
2811
- readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
2812
- readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
2813
- readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
2814
- readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2815
- readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2816
- readonly clients: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
2817
- readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], 7, undefined>]>, undefined>;
2818
- }, undefined>;
2819
- type QueryStrapiSearchGCFlyTours = v.InferOutput<typeof QueryStrapiSearchGCFlyTours>;
2820
- declare const SCreateGCFlyTourDocument: v.ObjectSchema<{
2821
- readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2822
- readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>;
2823
- readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
2824
- readonly is_active: v.BooleanSchema<undefined>;
2825
- readonly is_hidden: v.BooleanSchema<undefined>;
2826
- readonly clients: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
2827
- }, undefined>;
2828
- type SCreateGCFlyTourDocument = v.InferOutput<typeof SCreateGCFlyTourDocument>;
2829
- declare const SUpdateGCFlyTourDocument: v.ObjectSchema<{
2830
- readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
2831
- readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
2832
- readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
2833
- readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2834
- readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2835
- readonly clients: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
3062
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3063
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3064
+ }, undefined>, v.ObjectSchema<{
3065
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3066
+ }, undefined>, v.ObjectSchema<{
3067
+ readonly start: v.BooleanSchema<undefined>;
3068
+ }, undefined>, v.ObjectSchema<{
3069
+ readonly end: v.BooleanSchema<undefined>;
3070
+ }, undefined>], undefined>]>, {
3071
+ readonly end: true;
3072
+ }>, undefined>;
3073
+ }, undefined>], undefined>;
3074
+ type SEntityRelation = v.InferOutput<typeof SEntityRelation>;
3075
+ declare const SConnectManyEntityRelation: v.ObjectSchema<{
3076
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3077
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3078
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3079
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3080
+ }, undefined>, v.ObjectSchema<{
3081
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3082
+ }, undefined>, v.ObjectSchema<{
3083
+ readonly start: v.BooleanSchema<undefined>;
3084
+ }, undefined>, v.ObjectSchema<{
3085
+ readonly end: v.BooleanSchema<undefined>;
3086
+ }, undefined>], undefined>]>, {
3087
+ readonly end: true;
3088
+ }>, undefined>;
3089
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3090
+ documentId: string;
3091
+ position?: {
3092
+ before: string;
3093
+ } | {
3094
+ after: string;
3095
+ } | {
3096
+ start: boolean;
3097
+ } | {
3098
+ end: boolean;
3099
+ } | undefined;
3100
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
3101
+ documentId: string;
3102
+ position?: {
3103
+ before: string;
3104
+ } | {
3105
+ after: string;
3106
+ } | {
3107
+ start: boolean;
3108
+ } | {
3109
+ end: boolean;
3110
+ } | undefined;
3111
+ })[], 100, undefined>]>;
2836
3112
  }, undefined>;
2837
- type SUpdateGCFlyTourDocument = v.InferOutput<typeof SUpdateGCFlyTourDocument>;
2838
- declare const SUpdateGCFlyTourDocumentRequest: v.ObjectSchema<{
2839
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
2840
- readonly data: v.ObjectSchema<{
2841
- readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
2842
- readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
2843
- readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
2844
- readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2845
- readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2846
- readonly clients: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
2847
- }, undefined>;
3113
+ type SConnectManyEntityRelation = v.InferOutput<typeof SConnectManyEntityRelation>;
3114
+ declare const SDisconnectManyEntityRelation: v.ObjectSchema<{
3115
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3116
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3117
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3118
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3119
+ }, undefined>, v.ObjectSchema<{
3120
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3121
+ }, undefined>, v.ObjectSchema<{
3122
+ readonly start: v.BooleanSchema<undefined>;
3123
+ }, undefined>, v.ObjectSchema<{
3124
+ readonly end: v.BooleanSchema<undefined>;
3125
+ }, undefined>], undefined>]>, {
3126
+ readonly end: true;
3127
+ }>, undefined>;
3128
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3129
+ documentId: string;
3130
+ position?: {
3131
+ before: string;
3132
+ } | {
3133
+ after: string;
3134
+ } | {
3135
+ start: boolean;
3136
+ } | {
3137
+ end: boolean;
3138
+ } | undefined;
3139
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
3140
+ documentId: string;
3141
+ position?: {
3142
+ before: string;
3143
+ } | {
3144
+ after: string;
3145
+ } | {
3146
+ start: boolean;
3147
+ } | {
3148
+ end: boolean;
3149
+ } | undefined;
3150
+ })[], 100, undefined>]>;
2848
3151
  }, undefined>;
2849
- type SUpdateGCFlyTourDocumentRequest = v.InferOutput<typeof SUpdateGCFlyTourDocumentRequest>;
2850
- //#endregion
2851
- //#region src/schemas/generic.schemas.d.ts
2852
- declare const EntitySortKeys: readonly ["id", "createdAt", "updatedAt"];
2853
- declare const QuerySortEntities: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], 3, undefined>]>, undefined>;
2854
- type QuerySortEntities = v.InferOutput<typeof QuerySortEntities>;
2855
- declare const QueryStrapiPaginated: v.ObjectSchema<{
2856
- readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
2857
- readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
2858
- readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], 3, undefined>]>, undefined>;
3152
+ type SDisconnectManyEntityRelation = v.InferOutput<typeof SDisconnectManyEntityRelation>;
3153
+ declare const SSetManyEntityRelation: v.ObjectSchema<{
3154
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3155
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3156
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3157
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3158
+ }, undefined>, v.ObjectSchema<{
3159
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3160
+ }, undefined>, v.ObjectSchema<{
3161
+ readonly start: v.BooleanSchema<undefined>;
3162
+ }, undefined>, v.ObjectSchema<{
3163
+ readonly end: v.BooleanSchema<undefined>;
3164
+ }, undefined>], undefined>]>, {
3165
+ readonly end: true;
3166
+ }>, undefined>;
3167
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3168
+ documentId: string;
3169
+ position?: {
3170
+ before: string;
3171
+ } | {
3172
+ after: string;
3173
+ } | {
3174
+ start: boolean;
3175
+ } | {
3176
+ end: boolean;
3177
+ } | undefined;
3178
+ })[], 1, undefined>]>;
2859
3179
  }, undefined>;
2860
- type QueryStrapiPaginated = v.InferOutput<typeof QueryStrapiPaginated>;
2861
- declare const QueryStrapiById: v.ObjectSchema<{
2862
- readonly id: v.NumberSchema<undefined>;
3180
+ type SSetManyEntityRelation = v.InferOutput<typeof SSetManyEntityRelation>;
3181
+ declare const SConnectOneEntityRelation: v.ObjectSchema<{
3182
+ readonly connect: v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3183
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3184
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3185
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3186
+ }, undefined>, v.ObjectSchema<{
3187
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3188
+ }, undefined>, v.ObjectSchema<{
3189
+ readonly start: v.BooleanSchema<undefined>;
3190
+ }, undefined>, v.ObjectSchema<{
3191
+ readonly end: v.BooleanSchema<undefined>;
3192
+ }, undefined>], undefined>]>, {
3193
+ readonly end: true;
3194
+ }>, undefined>;
3195
+ }, undefined>], undefined>], undefined>;
2863
3196
  }, undefined>;
2864
- type QueryStrapiById = v.InferOutput<typeof QueryStrapiById>;
2865
- declare const QueryStrapiByDocumentId: v.ObjectSchema<{
2866
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3197
+ type SConnectOneEntityRelation = v.InferOutput<typeof SConnectOneEntityRelation>;
3198
+ declare const SDisconnectOneEntityRelation: v.ObjectSchema<{
3199
+ readonly disconnect: v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3200
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3201
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3202
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3203
+ }, undefined>, v.ObjectSchema<{
3204
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3205
+ }, undefined>, v.ObjectSchema<{
3206
+ readonly start: v.BooleanSchema<undefined>;
3207
+ }, undefined>, v.ObjectSchema<{
3208
+ readonly end: v.BooleanSchema<undefined>;
3209
+ }, undefined>], undefined>]>, {
3210
+ readonly end: true;
3211
+ }>, undefined>;
3212
+ }, undefined>], undefined>], undefined>;
2867
3213
  }, undefined>;
2868
- type QueryStrapiByDocumentId = v.InferOutput<typeof QueryStrapiByDocumentId>;
2869
- declare const QueryStrapiBySlug: v.ObjectSchema<{
2870
- readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3214
+ type SDisconnectOneEntityRelation = v.InferOutput<typeof SDisconnectOneEntityRelation>;
3215
+ declare const SSetOneEntityRelation: v.ObjectSchema<{
3216
+ readonly set: v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3217
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3218
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3219
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3220
+ }, undefined>, v.ObjectSchema<{
3221
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3222
+ }, undefined>, v.ObjectSchema<{
3223
+ readonly start: v.BooleanSchema<undefined>;
3224
+ }, undefined>, v.ObjectSchema<{
3225
+ readonly end: v.BooleanSchema<undefined>;
3226
+ }, undefined>], undefined>]>, {
3227
+ readonly end: true;
3228
+ }>, undefined>;
3229
+ }, undefined>], undefined>], undefined>;
3230
+ }, undefined>;
3231
+ type SSetOneEntityRelation = v.InferOutput<typeof SSetOneEntityRelation>;
3232
+ declare const VRelationMany: () => v.UnionSchema<[v.ObjectSchema<{
3233
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3234
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3235
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3236
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3237
+ }, undefined>, v.ObjectSchema<{
3238
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3239
+ }, undefined>, v.ObjectSchema<{
3240
+ readonly start: v.BooleanSchema<undefined>;
3241
+ }, undefined>, v.ObjectSchema<{
3242
+ readonly end: v.BooleanSchema<undefined>;
3243
+ }, undefined>], undefined>]>, {
3244
+ readonly end: true;
3245
+ }>, undefined>;
3246
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3247
+ documentId: string;
3248
+ position?: {
3249
+ before: string;
3250
+ } | {
3251
+ after: string;
3252
+ } | {
3253
+ start: boolean;
3254
+ } | {
3255
+ end: boolean;
3256
+ } | undefined;
3257
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
3258
+ documentId: string;
3259
+ position?: {
3260
+ before: string;
3261
+ } | {
3262
+ after: string;
3263
+ } | {
3264
+ start: boolean;
3265
+ } | {
3266
+ end: boolean;
3267
+ } | undefined;
3268
+ })[], 100, undefined>]>;
3269
+ }, undefined>, v.ObjectSchema<{
3270
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3271
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3272
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3273
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3274
+ }, undefined>, v.ObjectSchema<{
3275
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3276
+ }, undefined>, v.ObjectSchema<{
3277
+ readonly start: v.BooleanSchema<undefined>;
3278
+ }, undefined>, v.ObjectSchema<{
3279
+ readonly end: v.BooleanSchema<undefined>;
3280
+ }, undefined>], undefined>]>, {
3281
+ readonly end: true;
3282
+ }>, undefined>;
3283
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3284
+ documentId: string;
3285
+ position?: {
3286
+ before: string;
3287
+ } | {
3288
+ after: string;
3289
+ } | {
3290
+ start: boolean;
3291
+ } | {
3292
+ end: boolean;
3293
+ } | undefined;
3294
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
3295
+ documentId: string;
3296
+ position?: {
3297
+ before: string;
3298
+ } | {
3299
+ after: string;
3300
+ } | {
3301
+ start: boolean;
3302
+ } | {
3303
+ end: boolean;
3304
+ } | undefined;
3305
+ })[], 100, undefined>]>;
3306
+ }, undefined>, v.ObjectSchema<{
3307
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3308
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3309
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3310
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3311
+ }, undefined>, v.ObjectSchema<{
3312
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3313
+ }, undefined>, v.ObjectSchema<{
3314
+ readonly start: v.BooleanSchema<undefined>;
3315
+ }, undefined>, v.ObjectSchema<{
3316
+ readonly end: v.BooleanSchema<undefined>;
3317
+ }, undefined>], undefined>]>, {
3318
+ readonly end: true;
3319
+ }>, undefined>;
3320
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3321
+ documentId: string;
3322
+ position?: {
3323
+ before: string;
3324
+ } | {
3325
+ after: string;
3326
+ } | {
3327
+ start: boolean;
3328
+ } | {
3329
+ end: boolean;
3330
+ } | undefined;
3331
+ })[], 1, undefined>]>;
3332
+ }, undefined>], undefined>;
3333
+ declare const VRelationOne: () => v.UnionSchema<[v.ObjectSchema<{
3334
+ readonly connect: v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3335
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3336
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3337
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3338
+ }, undefined>, v.ObjectSchema<{
3339
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3340
+ }, undefined>, v.ObjectSchema<{
3341
+ readonly start: v.BooleanSchema<undefined>;
3342
+ }, undefined>, v.ObjectSchema<{
3343
+ readonly end: v.BooleanSchema<undefined>;
3344
+ }, undefined>], undefined>]>, {
3345
+ readonly end: true;
3346
+ }>, undefined>;
3347
+ }, undefined>], undefined>], undefined>;
3348
+ }, undefined>, v.ObjectSchema<{
3349
+ readonly disconnect: v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3350
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3351
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3352
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3353
+ }, undefined>, v.ObjectSchema<{
3354
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3355
+ }, undefined>, v.ObjectSchema<{
3356
+ readonly start: v.BooleanSchema<undefined>;
3357
+ }, undefined>, v.ObjectSchema<{
3358
+ readonly end: v.BooleanSchema<undefined>;
3359
+ }, undefined>], undefined>]>, {
3360
+ readonly end: true;
3361
+ }>, undefined>;
3362
+ }, undefined>], undefined>], undefined>;
3363
+ }, undefined>, v.ObjectSchema<{
3364
+ readonly set: v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3365
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3366
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3367
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3368
+ }, undefined>, v.ObjectSchema<{
3369
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3370
+ }, undefined>, v.ObjectSchema<{
3371
+ readonly start: v.BooleanSchema<undefined>;
3372
+ }, undefined>, v.ObjectSchema<{
3373
+ readonly end: v.BooleanSchema<undefined>;
3374
+ }, undefined>], undefined>]>, {
3375
+ readonly end: true;
3376
+ }>, undefined>;
3377
+ }, undefined>], undefined>], undefined>;
3378
+ }, undefined>], undefined>;
3379
+ declare const VRelationManyQuery: () => v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
3380
+ //#endregion
3381
+ //#region src/schemas/core-validators.schemas.d.ts
3382
+ /**
3383
+ * Basic number validator
3384
+ */
3385
+ declare const VNumberNullable: () => v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
3386
+ declare const VIntegerNullable: () => v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>, undefined>;
3387
+ /**
3388
+ * Basic string validator with trim and min length
3389
+ */
3390
+ declare const VString: (minLength?: number) => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>]>;
3391
+ /**
3392
+ * String validator with trim, min length, and max length (Short)
3393
+ */
3394
+ declare const VStringShort: (minLength?: number) => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3395
+ /**
3396
+ * String validator with trim, min length, and max length (Long)
3397
+ */
3398
+ declare const VStringLong: (minLength?: number) => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 5000, undefined>]>;
3399
+ /**
3400
+ * String validator with trim, and max length
3401
+ */
3402
+ declare const VStringMax: (maxLength?: number) => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
3403
+ /**
3404
+ * String validator with trim, and max length
3405
+ */
3406
+ declare const VStringMaxRegex: (maxLength: number | undefined, pattern: RegExp, message: string) => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>;
3407
+ /**
3408
+ * String validator with trim, min length, and max length
3409
+ */
3410
+ declare const VStringMinMax: (minLength?: number, maxLength?: number) => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3411
+ /**
3412
+ * String validator with trim, min length, max length, and regex pattern
3413
+ */
3414
+ declare const VStringMinMaxRegex: (minLength: number | undefined, maxLength: number | undefined, pattern: RegExp, message: string) => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>;
3415
+ /**
3416
+ * Optional Nullable String validator (Long)
3417
+ */
3418
+ declare const VStringLongNullable: (minLength?: number) => v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 5000, undefined>]>, undefined>, undefined>;
3419
+ /**
3420
+ * Optional Nullable String validator
3421
+ * Commonly used for optional fields that might be null in the database or API
3422
+ */
3423
+ declare const VStringShortNullable: (minLength?: number) => v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
3424
+ /**
3425
+ * URL Validator
3426
+ * Checks for http/https prefix and valid URL format
3427
+ */
3428
+ declare const VStringUrl: () => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.StartsWithAction<string, "http", "Please enter a valid URL starting with http or https.">, v.UrlAction<string, "Please enter a valid URL.">]>;
3429
+ /**
3430
+ * UTM URL Validator
3431
+ * Checks for valid URL format that does contain utm params
3432
+ */
3433
+ declare const VStringUrlUtm: () => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.UrlAction<string, "Please enter a valid URL.">, v.CheckAction<string, "Please enter a valid URL with UTM parameters.">]>;
3434
+ /**
3435
+ * URL no utm params Validator
3436
+ * Checks for valid URL format that does not contain utm params
3437
+ */
3438
+ declare const VStringUrlNoUtm: () => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.UrlAction<string, "Please enter a valid URL.">, v.CheckAction<string, "Please remove any query parameters from the URL.">]>;
3439
+ /**
3440
+ * Optional Nullable URL Validator
3441
+ */
3442
+ declare const VStringUrlNullable: () => v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.StartsWithAction<string, "http", "Please enter a valid URL starting with http or https.">, v.UrlAction<string, "Please enter a valid URL.">]>, undefined>, undefined>;
3443
+ /**
3444
+ * Slug Validator
3445
+ */
3446
+ declare const VStringSlug: () => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>, v.RegexAction<string, "can only contain letters, numbers, and the special characters: - _ .">]>;
3447
+ /**
3448
+ * Email Validator
3449
+ */
3450
+ declare const VStringEmail: () => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 5, undefined>, v.MaxLengthAction<string, 255, undefined>, v.EmailAction<string, undefined>]>;
3451
+ /**
3452
+ * Phone Validator (NANP)
3453
+ */
3454
+ declare const VStringPhone: () => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 7, undefined>, v.MaxLengthAction<string, 24, undefined>, v.RegexAction<string, "Please provide a valid phone number.">]>;
3455
+ /**
3456
+ * Optional Nullable Phone Validator
3457
+ */
3458
+ declare const VStringPhoneNullable: () => v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 7, undefined>, v.MaxLengthAction<string, 24, undefined>, v.RegexAction<string, "Please provide a valid phone number.">]>, undefined>, undefined>;
3459
+ /**
3460
+ * Pagination Page Validator
3461
+ */
3462
+ declare const VPage: () => v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
3463
+ /**
3464
+ * Pagination Size Validator
3465
+ */
3466
+ declare const VSize: (maxSize: number) => v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
3467
+ //#endregion
3468
+ //#region src/schemas/gcflytour-snap.schemas.d.ts
3469
+ declare const GCFlyTourSnapSortKeys: readonly ["id", "title", "slug", "is_active", "is_hidden", "createdAt", "updatedAt"];
3470
+ declare const QuerySortGCFlyTourSnaps: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], 7, undefined>]>, undefined>;
3471
+ type QuerySortGCFlyTourSnaps = v.InferOutput<typeof QuerySortGCFlyTourSnaps>;
3472
+ declare const QueryStrapiSearchGCFlyTourSnaps: v.ObjectSchema<{
3473
+ readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
3474
+ readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
3475
+ readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3476
+ readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3477
+ readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3478
+ readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3479
+ readonly gcflytour: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3480
+ readonly gcflytours: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
3481
+ readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], 7, undefined>]>, undefined>;
3482
+ }, undefined>;
3483
+ type QueryStrapiSearchGCFlyTourSnaps = v.InferOutput<typeof QueryStrapiSearchGCFlyTourSnaps>;
3484
+ declare const SCreateGCFlyTourSnapDocument: v.ObjectSchema<{
3485
+ readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3486
+ readonly slug: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>]>;
3487
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
3488
+ readonly is_active: v.BooleanSchema<undefined>;
3489
+ readonly is_hidden: v.BooleanSchema<undefined>;
3490
+ readonly gcflytour: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3491
+ }, undefined>;
3492
+ type SCreateGCFlyTourSnapDocument = v.InferOutput<typeof SCreateGCFlyTourSnapDocument>;
3493
+ declare const SUpdateGCFlyTourSnapDocument: v.ObjectSchema<{
3494
+ readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3495
+ readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
3496
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
3497
+ readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3498
+ readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3499
+ readonly gcflytour: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3500
+ }, undefined>;
3501
+ type SUpdateGCFlyTourSnapDocument = v.InferOutput<typeof SUpdateGCFlyTourSnapDocument>;
3502
+ declare const SUpdateGCFlyTourSnapDocumentRequest: v.ObjectSchema<{
3503
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3504
+ readonly data: v.ObjectSchema<{
3505
+ readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3506
+ readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
3507
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
3508
+ readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3509
+ readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3510
+ readonly gcflytour: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3511
+ }, undefined>;
3512
+ }, undefined>;
3513
+ type SUpdateGCFlyTourSnapDocumentRequest = v.InferOutput<typeof SUpdateGCFlyTourSnapDocumentRequest>;
3514
+ //#endregion
3515
+ //#region src/schemas/gcflytour.schemas.d.ts
3516
+ declare const GCFlyTourSortKeys: readonly ["id", "title", "slug", "is_active", "is_hidden", "createdAt", "updatedAt"];
3517
+ declare const QuerySortGCFlyTours: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], 7, undefined>]>, undefined>;
3518
+ type QuerySortGCFlyTours = v.InferOutput<typeof QuerySortGCFlyTours>;
3519
+ declare const QueryStrapiSearchGCFlyTours: v.ObjectSchema<{
3520
+ readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
3521
+ readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
3522
+ readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3523
+ readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3524
+ readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3525
+ readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3526
+ readonly clients: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
3527
+ readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "is_active:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "is_active:DESC" | "title:ASC" | "slug:ASC" | "title:DESC" | "slug:DESC" | "is_hidden:ASC" | "is_hidden:DESC")[], 7, undefined>]>, undefined>;
3528
+ }, undefined>;
3529
+ type QueryStrapiSearchGCFlyTours = v.InferOutput<typeof QueryStrapiSearchGCFlyTours>;
3530
+ declare const SCreateGCFlyTourDocument: v.ObjectSchema<{
3531
+ readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3532
+ readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>;
3533
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
3534
+ readonly is_active: v.BooleanSchema<undefined>;
3535
+ readonly is_hidden: v.BooleanSchema<undefined>;
3536
+ readonly clients: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
3537
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3538
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3539
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3540
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3541
+ }, undefined>, v.ObjectSchema<{
3542
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3543
+ }, undefined>, v.ObjectSchema<{
3544
+ readonly start: v.BooleanSchema<undefined>;
3545
+ }, undefined>, v.ObjectSchema<{
3546
+ readonly end: v.BooleanSchema<undefined>;
3547
+ }, undefined>], undefined>]>, {
3548
+ readonly end: true;
3549
+ }>, undefined>;
3550
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3551
+ documentId: string;
3552
+ position?: {
3553
+ before: string;
3554
+ } | {
3555
+ after: string;
3556
+ } | {
3557
+ start: boolean;
3558
+ } | {
3559
+ end: boolean;
3560
+ } | undefined;
3561
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
3562
+ documentId: string;
3563
+ position?: {
3564
+ before: string;
3565
+ } | {
3566
+ after: string;
3567
+ } | {
3568
+ start: boolean;
3569
+ } | {
3570
+ end: boolean;
3571
+ } | undefined;
3572
+ })[], 100, undefined>]>;
3573
+ }, undefined>, v.ObjectSchema<{
3574
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3575
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3576
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3577
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3578
+ }, undefined>, v.ObjectSchema<{
3579
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3580
+ }, undefined>, v.ObjectSchema<{
3581
+ readonly start: v.BooleanSchema<undefined>;
3582
+ }, undefined>, v.ObjectSchema<{
3583
+ readonly end: v.BooleanSchema<undefined>;
3584
+ }, undefined>], undefined>]>, {
3585
+ readonly end: true;
3586
+ }>, undefined>;
3587
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3588
+ documentId: string;
3589
+ position?: {
3590
+ before: string;
3591
+ } | {
3592
+ after: string;
3593
+ } | {
3594
+ start: boolean;
3595
+ } | {
3596
+ end: boolean;
3597
+ } | undefined;
3598
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
3599
+ documentId: string;
3600
+ position?: {
3601
+ before: string;
3602
+ } | {
3603
+ after: string;
3604
+ } | {
3605
+ start: boolean;
3606
+ } | {
3607
+ end: boolean;
3608
+ } | undefined;
3609
+ })[], 100, undefined>]>;
3610
+ }, undefined>, v.ObjectSchema<{
3611
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3612
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3613
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3614
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3615
+ }, undefined>, v.ObjectSchema<{
3616
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3617
+ }, undefined>, v.ObjectSchema<{
3618
+ readonly start: v.BooleanSchema<undefined>;
3619
+ }, undefined>, v.ObjectSchema<{
3620
+ readonly end: v.BooleanSchema<undefined>;
3621
+ }, undefined>], undefined>]>, {
3622
+ readonly end: true;
3623
+ }>, undefined>;
3624
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3625
+ documentId: string;
3626
+ position?: {
3627
+ before: string;
3628
+ } | {
3629
+ after: string;
3630
+ } | {
3631
+ start: boolean;
3632
+ } | {
3633
+ end: boolean;
3634
+ } | undefined;
3635
+ })[], 1, undefined>]>;
3636
+ }, undefined>], undefined>, undefined>;
3637
+ }, undefined>;
3638
+ type SCreateGCFlyTourDocument = v.InferOutput<typeof SCreateGCFlyTourDocument>;
3639
+ declare const SUpdateGCFlyTourDocument: v.ObjectSchema<{
3640
+ readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3641
+ readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
3642
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
3643
+ readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3644
+ readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3645
+ readonly clients: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
3646
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3647
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3648
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3649
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3650
+ }, undefined>, v.ObjectSchema<{
3651
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3652
+ }, undefined>, v.ObjectSchema<{
3653
+ readonly start: v.BooleanSchema<undefined>;
3654
+ }, undefined>, v.ObjectSchema<{
3655
+ readonly end: v.BooleanSchema<undefined>;
3656
+ }, undefined>], undefined>]>, {
3657
+ readonly end: true;
3658
+ }>, undefined>;
3659
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3660
+ documentId: string;
3661
+ position?: {
3662
+ before: string;
3663
+ } | {
3664
+ after: string;
3665
+ } | {
3666
+ start: boolean;
3667
+ } | {
3668
+ end: boolean;
3669
+ } | undefined;
3670
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
3671
+ documentId: string;
3672
+ position?: {
3673
+ before: string;
3674
+ } | {
3675
+ after: string;
3676
+ } | {
3677
+ start: boolean;
3678
+ } | {
3679
+ end: boolean;
3680
+ } | undefined;
3681
+ })[], 100, undefined>]>;
3682
+ }, undefined>, v.ObjectSchema<{
3683
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3684
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3685
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3686
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3687
+ }, undefined>, v.ObjectSchema<{
3688
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3689
+ }, undefined>, v.ObjectSchema<{
3690
+ readonly start: v.BooleanSchema<undefined>;
3691
+ }, undefined>, v.ObjectSchema<{
3692
+ readonly end: v.BooleanSchema<undefined>;
3693
+ }, undefined>], undefined>]>, {
3694
+ readonly end: true;
3695
+ }>, undefined>;
3696
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3697
+ documentId: string;
3698
+ position?: {
3699
+ before: string;
3700
+ } | {
3701
+ after: string;
3702
+ } | {
3703
+ start: boolean;
3704
+ } | {
3705
+ end: boolean;
3706
+ } | undefined;
3707
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
3708
+ documentId: string;
3709
+ position?: {
3710
+ before: string;
3711
+ } | {
3712
+ after: string;
3713
+ } | {
3714
+ start: boolean;
3715
+ } | {
3716
+ end: boolean;
3717
+ } | undefined;
3718
+ })[], 100, undefined>]>;
3719
+ }, undefined>, v.ObjectSchema<{
3720
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3721
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3722
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3723
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3724
+ }, undefined>, v.ObjectSchema<{
3725
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3726
+ }, undefined>, v.ObjectSchema<{
3727
+ readonly start: v.BooleanSchema<undefined>;
3728
+ }, undefined>, v.ObjectSchema<{
3729
+ readonly end: v.BooleanSchema<undefined>;
3730
+ }, undefined>], undefined>]>, {
3731
+ readonly end: true;
3732
+ }>, undefined>;
3733
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3734
+ documentId: string;
3735
+ position?: {
3736
+ before: string;
3737
+ } | {
3738
+ after: string;
3739
+ } | {
3740
+ start: boolean;
3741
+ } | {
3742
+ end: boolean;
3743
+ } | undefined;
3744
+ })[], 1, undefined>]>;
3745
+ }, undefined>], undefined>, undefined>;
3746
+ }, undefined>;
3747
+ type SUpdateGCFlyTourDocument = v.InferOutput<typeof SUpdateGCFlyTourDocument>;
3748
+ declare const SUpdateGCFlyTourDocumentRequest: v.ObjectSchema<{
3749
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3750
+ readonly data: v.ObjectSchema<{
3751
+ readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3752
+ readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
3753
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
3754
+ readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3755
+ readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3756
+ readonly clients: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
3757
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3758
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3759
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3760
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3761
+ }, undefined>, v.ObjectSchema<{
3762
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3763
+ }, undefined>, v.ObjectSchema<{
3764
+ readonly start: v.BooleanSchema<undefined>;
3765
+ }, undefined>, v.ObjectSchema<{
3766
+ readonly end: v.BooleanSchema<undefined>;
3767
+ }, undefined>], undefined>]>, {
3768
+ readonly end: true;
3769
+ }>, undefined>;
3770
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3771
+ documentId: string;
3772
+ position?: {
3773
+ before: string;
3774
+ } | {
3775
+ after: string;
3776
+ } | {
3777
+ start: boolean;
3778
+ } | {
3779
+ end: boolean;
3780
+ } | undefined;
3781
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
3782
+ documentId: string;
3783
+ position?: {
3784
+ before: string;
3785
+ } | {
3786
+ after: string;
3787
+ } | {
3788
+ start: boolean;
3789
+ } | {
3790
+ end: boolean;
3791
+ } | undefined;
3792
+ })[], 100, undefined>]>;
3793
+ }, undefined>, v.ObjectSchema<{
3794
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3795
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3796
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3797
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3798
+ }, undefined>, v.ObjectSchema<{
3799
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3800
+ }, undefined>, v.ObjectSchema<{
3801
+ readonly start: v.BooleanSchema<undefined>;
3802
+ }, undefined>, v.ObjectSchema<{
3803
+ readonly end: v.BooleanSchema<undefined>;
3804
+ }, undefined>], undefined>]>, {
3805
+ readonly end: true;
3806
+ }>, undefined>;
3807
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3808
+ documentId: string;
3809
+ position?: {
3810
+ before: string;
3811
+ } | {
3812
+ after: string;
3813
+ } | {
3814
+ start: boolean;
3815
+ } | {
3816
+ end: boolean;
3817
+ } | undefined;
3818
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
3819
+ documentId: string;
3820
+ position?: {
3821
+ before: string;
3822
+ } | {
3823
+ after: string;
3824
+ } | {
3825
+ start: boolean;
3826
+ } | {
3827
+ end: boolean;
3828
+ } | undefined;
3829
+ })[], 100, undefined>]>;
3830
+ }, undefined>, v.ObjectSchema<{
3831
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3832
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3833
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3834
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3835
+ }, undefined>, v.ObjectSchema<{
3836
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3837
+ }, undefined>, v.ObjectSchema<{
3838
+ readonly start: v.BooleanSchema<undefined>;
3839
+ }, undefined>, v.ObjectSchema<{
3840
+ readonly end: v.BooleanSchema<undefined>;
3841
+ }, undefined>], undefined>]>, {
3842
+ readonly end: true;
3843
+ }>, undefined>;
3844
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3845
+ documentId: string;
3846
+ position?: {
3847
+ before: string;
3848
+ } | {
3849
+ after: string;
3850
+ } | {
3851
+ start: boolean;
3852
+ } | {
3853
+ end: boolean;
3854
+ } | undefined;
3855
+ })[], 1, undefined>]>;
3856
+ }, undefined>], undefined>, undefined>;
3857
+ }, undefined>;
3858
+ }, undefined>;
3859
+ type SUpdateGCFlyTourDocumentRequest = v.InferOutput<typeof SUpdateGCFlyTourDocumentRequest>;
3860
+ //#endregion
3861
+ //#region src/schemas/generic.schemas.d.ts
3862
+ declare const EntitySortKeys: readonly ["id", "createdAt", "updatedAt"];
3863
+ declare const QuerySortEntities: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], 3, undefined>]>, undefined>;
3864
+ type QuerySortEntities = v.InferOutput<typeof QuerySortEntities>;
3865
+ declare const QueryStrapiPaginated: v.ObjectSchema<{
3866
+ readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
3867
+ readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
3868
+ readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], 3, undefined>]>, undefined>;
3869
+ }, undefined>;
3870
+ type QueryStrapiPaginated = v.InferOutput<typeof QueryStrapiPaginated>;
3871
+ declare const QueryStrapiById: v.ObjectSchema<{
3872
+ readonly id: v.NumberSchema<undefined>;
3873
+ }, undefined>;
3874
+ type QueryStrapiById = v.InferOutput<typeof QueryStrapiById>;
3875
+ declare const QueryStrapiByDocumentId: v.ObjectSchema<{
3876
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3877
+ }, undefined>;
3878
+ type QueryStrapiByDocumentId = v.InferOutput<typeof QueryStrapiByDocumentId>;
3879
+ declare const QueryStrapiBySlug: v.ObjectSchema<{
3880
+ readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
2871
3881
  readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], 3, undefined>]>, undefined>;
2872
3882
  }, undefined>;
2873
3883
  type QueryStrapiBySlug = v.InferOutput<typeof QueryStrapiBySlug>;
@@ -2961,8 +3971,208 @@ declare const SCreateMediaContentTypeDocument: v.ObjectSchema<{
2961
3971
  readonly is_organic_social: v.BooleanSchema<undefined>;
2962
3972
  readonly is_paid_media: v.BooleanSchema<undefined>;
2963
3973
  readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
2964
- readonly media_platforms: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
2965
- readonly media_creative_formats: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
3974
+ readonly media_platforms: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
3975
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3976
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3977
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3978
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3979
+ }, undefined>, v.ObjectSchema<{
3980
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3981
+ }, undefined>, v.ObjectSchema<{
3982
+ readonly start: v.BooleanSchema<undefined>;
3983
+ }, undefined>, v.ObjectSchema<{
3984
+ readonly end: v.BooleanSchema<undefined>;
3985
+ }, undefined>], undefined>]>, {
3986
+ readonly end: true;
3987
+ }>, undefined>;
3988
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3989
+ documentId: string;
3990
+ position?: {
3991
+ before: string;
3992
+ } | {
3993
+ after: string;
3994
+ } | {
3995
+ start: boolean;
3996
+ } | {
3997
+ end: boolean;
3998
+ } | undefined;
3999
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4000
+ documentId: string;
4001
+ position?: {
4002
+ before: string;
4003
+ } | {
4004
+ after: string;
4005
+ } | {
4006
+ start: boolean;
4007
+ } | {
4008
+ end: boolean;
4009
+ } | undefined;
4010
+ })[], 100, undefined>]>;
4011
+ }, undefined>, v.ObjectSchema<{
4012
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4013
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4014
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4015
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4016
+ }, undefined>, v.ObjectSchema<{
4017
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4018
+ }, undefined>, v.ObjectSchema<{
4019
+ readonly start: v.BooleanSchema<undefined>;
4020
+ }, undefined>, v.ObjectSchema<{
4021
+ readonly end: v.BooleanSchema<undefined>;
4022
+ }, undefined>], undefined>]>, {
4023
+ readonly end: true;
4024
+ }>, undefined>;
4025
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4026
+ documentId: string;
4027
+ position?: {
4028
+ before: string;
4029
+ } | {
4030
+ after: string;
4031
+ } | {
4032
+ start: boolean;
4033
+ } | {
4034
+ end: boolean;
4035
+ } | undefined;
4036
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4037
+ documentId: string;
4038
+ position?: {
4039
+ before: string;
4040
+ } | {
4041
+ after: string;
4042
+ } | {
4043
+ start: boolean;
4044
+ } | {
4045
+ end: boolean;
4046
+ } | undefined;
4047
+ })[], 100, undefined>]>;
4048
+ }, undefined>, v.ObjectSchema<{
4049
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4050
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4051
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4052
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4053
+ }, undefined>, v.ObjectSchema<{
4054
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4055
+ }, undefined>, v.ObjectSchema<{
4056
+ readonly start: v.BooleanSchema<undefined>;
4057
+ }, undefined>, v.ObjectSchema<{
4058
+ readonly end: v.BooleanSchema<undefined>;
4059
+ }, undefined>], undefined>]>, {
4060
+ readonly end: true;
4061
+ }>, undefined>;
4062
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4063
+ documentId: string;
4064
+ position?: {
4065
+ before: string;
4066
+ } | {
4067
+ after: string;
4068
+ } | {
4069
+ start: boolean;
4070
+ } | {
4071
+ end: boolean;
4072
+ } | undefined;
4073
+ })[], 1, undefined>]>;
4074
+ }, undefined>], undefined>, undefined>;
4075
+ readonly media_creative_formats: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
4076
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4077
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4078
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4079
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4080
+ }, undefined>, v.ObjectSchema<{
4081
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4082
+ }, undefined>, v.ObjectSchema<{
4083
+ readonly start: v.BooleanSchema<undefined>;
4084
+ }, undefined>, v.ObjectSchema<{
4085
+ readonly end: v.BooleanSchema<undefined>;
4086
+ }, undefined>], undefined>]>, {
4087
+ readonly end: true;
4088
+ }>, undefined>;
4089
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4090
+ documentId: string;
4091
+ position?: {
4092
+ before: string;
4093
+ } | {
4094
+ after: string;
4095
+ } | {
4096
+ start: boolean;
4097
+ } | {
4098
+ end: boolean;
4099
+ } | undefined;
4100
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4101
+ documentId: string;
4102
+ position?: {
4103
+ before: string;
4104
+ } | {
4105
+ after: string;
4106
+ } | {
4107
+ start: boolean;
4108
+ } | {
4109
+ end: boolean;
4110
+ } | undefined;
4111
+ })[], 100, undefined>]>;
4112
+ }, undefined>, v.ObjectSchema<{
4113
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4114
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4115
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4116
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4117
+ }, undefined>, v.ObjectSchema<{
4118
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4119
+ }, undefined>, v.ObjectSchema<{
4120
+ readonly start: v.BooleanSchema<undefined>;
4121
+ }, undefined>, v.ObjectSchema<{
4122
+ readonly end: v.BooleanSchema<undefined>;
4123
+ }, undefined>], undefined>]>, {
4124
+ readonly end: true;
4125
+ }>, undefined>;
4126
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4127
+ documentId: string;
4128
+ position?: {
4129
+ before: string;
4130
+ } | {
4131
+ after: string;
4132
+ } | {
4133
+ start: boolean;
4134
+ } | {
4135
+ end: boolean;
4136
+ } | undefined;
4137
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4138
+ documentId: string;
4139
+ position?: {
4140
+ before: string;
4141
+ } | {
4142
+ after: string;
4143
+ } | {
4144
+ start: boolean;
4145
+ } | {
4146
+ end: boolean;
4147
+ } | undefined;
4148
+ })[], 100, undefined>]>;
4149
+ }, undefined>, v.ObjectSchema<{
4150
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4151
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4152
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4153
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4154
+ }, undefined>, v.ObjectSchema<{
4155
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4156
+ }, undefined>, v.ObjectSchema<{
4157
+ readonly start: v.BooleanSchema<undefined>;
4158
+ }, undefined>, v.ObjectSchema<{
4159
+ readonly end: v.BooleanSchema<undefined>;
4160
+ }, undefined>], undefined>]>, {
4161
+ readonly end: true;
4162
+ }>, undefined>;
4163
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4164
+ documentId: string;
4165
+ position?: {
4166
+ before: string;
4167
+ } | {
4168
+ after: string;
4169
+ } | {
4170
+ start: boolean;
4171
+ } | {
4172
+ end: boolean;
4173
+ } | undefined;
4174
+ })[], 1, undefined>]>;
4175
+ }, undefined>], undefined>, undefined>;
2966
4176
  }, undefined>;
2967
4177
  type SCreateMediaContentTypeDocument = v.InferOutput<typeof SCreateMediaContentTypeDocument>;
2968
4178
  declare const SUpdateMediaContentTypeDocument: v.ObjectSchema<{
@@ -2972,8 +4182,208 @@ declare const SUpdateMediaContentTypeDocument: v.ObjectSchema<{
2972
4182
  readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2973
4183
  readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2974
4184
  readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
2975
- readonly media_platforms: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
2976
- readonly media_creative_formats: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
4185
+ readonly media_platforms: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
4186
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4187
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4188
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4189
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4190
+ }, undefined>, v.ObjectSchema<{
4191
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4192
+ }, undefined>, v.ObjectSchema<{
4193
+ readonly start: v.BooleanSchema<undefined>;
4194
+ }, undefined>, v.ObjectSchema<{
4195
+ readonly end: v.BooleanSchema<undefined>;
4196
+ }, undefined>], undefined>]>, {
4197
+ readonly end: true;
4198
+ }>, undefined>;
4199
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4200
+ documentId: string;
4201
+ position?: {
4202
+ before: string;
4203
+ } | {
4204
+ after: string;
4205
+ } | {
4206
+ start: boolean;
4207
+ } | {
4208
+ end: boolean;
4209
+ } | undefined;
4210
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4211
+ documentId: string;
4212
+ position?: {
4213
+ before: string;
4214
+ } | {
4215
+ after: string;
4216
+ } | {
4217
+ start: boolean;
4218
+ } | {
4219
+ end: boolean;
4220
+ } | undefined;
4221
+ })[], 100, undefined>]>;
4222
+ }, undefined>, v.ObjectSchema<{
4223
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4224
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4225
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4226
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4227
+ }, undefined>, v.ObjectSchema<{
4228
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4229
+ }, undefined>, v.ObjectSchema<{
4230
+ readonly start: v.BooleanSchema<undefined>;
4231
+ }, undefined>, v.ObjectSchema<{
4232
+ readonly end: v.BooleanSchema<undefined>;
4233
+ }, undefined>], undefined>]>, {
4234
+ readonly end: true;
4235
+ }>, undefined>;
4236
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4237
+ documentId: string;
4238
+ position?: {
4239
+ before: string;
4240
+ } | {
4241
+ after: string;
4242
+ } | {
4243
+ start: boolean;
4244
+ } | {
4245
+ end: boolean;
4246
+ } | undefined;
4247
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4248
+ documentId: string;
4249
+ position?: {
4250
+ before: string;
4251
+ } | {
4252
+ after: string;
4253
+ } | {
4254
+ start: boolean;
4255
+ } | {
4256
+ end: boolean;
4257
+ } | undefined;
4258
+ })[], 100, undefined>]>;
4259
+ }, undefined>, v.ObjectSchema<{
4260
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4261
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4262
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4263
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4264
+ }, undefined>, v.ObjectSchema<{
4265
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4266
+ }, undefined>, v.ObjectSchema<{
4267
+ readonly start: v.BooleanSchema<undefined>;
4268
+ }, undefined>, v.ObjectSchema<{
4269
+ readonly end: v.BooleanSchema<undefined>;
4270
+ }, undefined>], undefined>]>, {
4271
+ readonly end: true;
4272
+ }>, undefined>;
4273
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4274
+ documentId: string;
4275
+ position?: {
4276
+ before: string;
4277
+ } | {
4278
+ after: string;
4279
+ } | {
4280
+ start: boolean;
4281
+ } | {
4282
+ end: boolean;
4283
+ } | undefined;
4284
+ })[], 1, undefined>]>;
4285
+ }, undefined>], undefined>, undefined>;
4286
+ readonly media_creative_formats: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
4287
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4288
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4289
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4290
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4291
+ }, undefined>, v.ObjectSchema<{
4292
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4293
+ }, undefined>, v.ObjectSchema<{
4294
+ readonly start: v.BooleanSchema<undefined>;
4295
+ }, undefined>, v.ObjectSchema<{
4296
+ readonly end: v.BooleanSchema<undefined>;
4297
+ }, undefined>], undefined>]>, {
4298
+ readonly end: true;
4299
+ }>, undefined>;
4300
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4301
+ documentId: string;
4302
+ position?: {
4303
+ before: string;
4304
+ } | {
4305
+ after: string;
4306
+ } | {
4307
+ start: boolean;
4308
+ } | {
4309
+ end: boolean;
4310
+ } | undefined;
4311
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4312
+ documentId: string;
4313
+ position?: {
4314
+ before: string;
4315
+ } | {
4316
+ after: string;
4317
+ } | {
4318
+ start: boolean;
4319
+ } | {
4320
+ end: boolean;
4321
+ } | undefined;
4322
+ })[], 100, undefined>]>;
4323
+ }, undefined>, v.ObjectSchema<{
4324
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4325
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4326
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4327
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4328
+ }, undefined>, v.ObjectSchema<{
4329
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4330
+ }, undefined>, v.ObjectSchema<{
4331
+ readonly start: v.BooleanSchema<undefined>;
4332
+ }, undefined>, v.ObjectSchema<{
4333
+ readonly end: v.BooleanSchema<undefined>;
4334
+ }, undefined>], undefined>]>, {
4335
+ readonly end: true;
4336
+ }>, undefined>;
4337
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4338
+ documentId: string;
4339
+ position?: {
4340
+ before: string;
4341
+ } | {
4342
+ after: string;
4343
+ } | {
4344
+ start: boolean;
4345
+ } | {
4346
+ end: boolean;
4347
+ } | undefined;
4348
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4349
+ documentId: string;
4350
+ position?: {
4351
+ before: string;
4352
+ } | {
4353
+ after: string;
4354
+ } | {
4355
+ start: boolean;
4356
+ } | {
4357
+ end: boolean;
4358
+ } | undefined;
4359
+ })[], 100, undefined>]>;
4360
+ }, undefined>, v.ObjectSchema<{
4361
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4362
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4363
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4364
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4365
+ }, undefined>, v.ObjectSchema<{
4366
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4367
+ }, undefined>, v.ObjectSchema<{
4368
+ readonly start: v.BooleanSchema<undefined>;
4369
+ }, undefined>, v.ObjectSchema<{
4370
+ readonly end: v.BooleanSchema<undefined>;
4371
+ }, undefined>], undefined>]>, {
4372
+ readonly end: true;
4373
+ }>, undefined>;
4374
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4375
+ documentId: string;
4376
+ position?: {
4377
+ before: string;
4378
+ } | {
4379
+ after: string;
4380
+ } | {
4381
+ start: boolean;
4382
+ } | {
4383
+ end: boolean;
4384
+ } | undefined;
4385
+ })[], 1, undefined>]>;
4386
+ }, undefined>], undefined>, undefined>;
2977
4387
  }, undefined>;
2978
4388
  type SUpdateMediaContentTypeDocument = v.InferOutput<typeof SUpdateMediaContentTypeDocument>;
2979
4389
  declare const SUpdateMediaContentTypeDocumentRequest: v.ObjectSchema<{
@@ -2985,8 +4395,208 @@ declare const SUpdateMediaContentTypeDocumentRequest: v.ObjectSchema<{
2985
4395
  readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2986
4396
  readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2987
4397
  readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
2988
- readonly media_platforms: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
2989
- readonly media_creative_formats: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
4398
+ readonly media_platforms: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
4399
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4400
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4401
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4402
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4403
+ }, undefined>, v.ObjectSchema<{
4404
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4405
+ }, undefined>, v.ObjectSchema<{
4406
+ readonly start: v.BooleanSchema<undefined>;
4407
+ }, undefined>, v.ObjectSchema<{
4408
+ readonly end: v.BooleanSchema<undefined>;
4409
+ }, undefined>], undefined>]>, {
4410
+ readonly end: true;
4411
+ }>, undefined>;
4412
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4413
+ documentId: string;
4414
+ position?: {
4415
+ before: string;
4416
+ } | {
4417
+ after: string;
4418
+ } | {
4419
+ start: boolean;
4420
+ } | {
4421
+ end: boolean;
4422
+ } | undefined;
4423
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4424
+ documentId: string;
4425
+ position?: {
4426
+ before: string;
4427
+ } | {
4428
+ after: string;
4429
+ } | {
4430
+ start: boolean;
4431
+ } | {
4432
+ end: boolean;
4433
+ } | undefined;
4434
+ })[], 100, undefined>]>;
4435
+ }, undefined>, v.ObjectSchema<{
4436
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4437
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4438
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4439
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4440
+ }, undefined>, v.ObjectSchema<{
4441
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4442
+ }, undefined>, v.ObjectSchema<{
4443
+ readonly start: v.BooleanSchema<undefined>;
4444
+ }, undefined>, v.ObjectSchema<{
4445
+ readonly end: v.BooleanSchema<undefined>;
4446
+ }, undefined>], undefined>]>, {
4447
+ readonly end: true;
4448
+ }>, undefined>;
4449
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4450
+ documentId: string;
4451
+ position?: {
4452
+ before: string;
4453
+ } | {
4454
+ after: string;
4455
+ } | {
4456
+ start: boolean;
4457
+ } | {
4458
+ end: boolean;
4459
+ } | undefined;
4460
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4461
+ documentId: string;
4462
+ position?: {
4463
+ before: string;
4464
+ } | {
4465
+ after: string;
4466
+ } | {
4467
+ start: boolean;
4468
+ } | {
4469
+ end: boolean;
4470
+ } | undefined;
4471
+ })[], 100, undefined>]>;
4472
+ }, undefined>, v.ObjectSchema<{
4473
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4474
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4475
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4476
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4477
+ }, undefined>, v.ObjectSchema<{
4478
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4479
+ }, undefined>, v.ObjectSchema<{
4480
+ readonly start: v.BooleanSchema<undefined>;
4481
+ }, undefined>, v.ObjectSchema<{
4482
+ readonly end: v.BooleanSchema<undefined>;
4483
+ }, undefined>], undefined>]>, {
4484
+ readonly end: true;
4485
+ }>, undefined>;
4486
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4487
+ documentId: string;
4488
+ position?: {
4489
+ before: string;
4490
+ } | {
4491
+ after: string;
4492
+ } | {
4493
+ start: boolean;
4494
+ } | {
4495
+ end: boolean;
4496
+ } | undefined;
4497
+ })[], 1, undefined>]>;
4498
+ }, undefined>], undefined>, undefined>;
4499
+ readonly media_creative_formats: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
4500
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4501
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4502
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4503
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4504
+ }, undefined>, v.ObjectSchema<{
4505
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4506
+ }, undefined>, v.ObjectSchema<{
4507
+ readonly start: v.BooleanSchema<undefined>;
4508
+ }, undefined>, v.ObjectSchema<{
4509
+ readonly end: v.BooleanSchema<undefined>;
4510
+ }, undefined>], undefined>]>, {
4511
+ readonly end: true;
4512
+ }>, undefined>;
4513
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4514
+ documentId: string;
4515
+ position?: {
4516
+ before: string;
4517
+ } | {
4518
+ after: string;
4519
+ } | {
4520
+ start: boolean;
4521
+ } | {
4522
+ end: boolean;
4523
+ } | undefined;
4524
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4525
+ documentId: string;
4526
+ position?: {
4527
+ before: string;
4528
+ } | {
4529
+ after: string;
4530
+ } | {
4531
+ start: boolean;
4532
+ } | {
4533
+ end: boolean;
4534
+ } | undefined;
4535
+ })[], 100, undefined>]>;
4536
+ }, undefined>, v.ObjectSchema<{
4537
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4538
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4539
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4540
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4541
+ }, undefined>, v.ObjectSchema<{
4542
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4543
+ }, undefined>, v.ObjectSchema<{
4544
+ readonly start: v.BooleanSchema<undefined>;
4545
+ }, undefined>, v.ObjectSchema<{
4546
+ readonly end: v.BooleanSchema<undefined>;
4547
+ }, undefined>], undefined>]>, {
4548
+ readonly end: true;
4549
+ }>, undefined>;
4550
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4551
+ documentId: string;
4552
+ position?: {
4553
+ before: string;
4554
+ } | {
4555
+ after: string;
4556
+ } | {
4557
+ start: boolean;
4558
+ } | {
4559
+ end: boolean;
4560
+ } | undefined;
4561
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4562
+ documentId: string;
4563
+ position?: {
4564
+ before: string;
4565
+ } | {
4566
+ after: string;
4567
+ } | {
4568
+ start: boolean;
4569
+ } | {
4570
+ end: boolean;
4571
+ } | undefined;
4572
+ })[], 100, undefined>]>;
4573
+ }, undefined>, v.ObjectSchema<{
4574
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4575
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4576
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4577
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4578
+ }, undefined>, v.ObjectSchema<{
4579
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4580
+ }, undefined>, v.ObjectSchema<{
4581
+ readonly start: v.BooleanSchema<undefined>;
4582
+ }, undefined>, v.ObjectSchema<{
4583
+ readonly end: v.BooleanSchema<undefined>;
4584
+ }, undefined>], undefined>]>, {
4585
+ readonly end: true;
4586
+ }>, undefined>;
4587
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4588
+ documentId: string;
4589
+ position?: {
4590
+ before: string;
4591
+ } | {
4592
+ after: string;
4593
+ } | {
4594
+ start: boolean;
4595
+ } | {
4596
+ end: boolean;
4597
+ } | undefined;
4598
+ })[], 1, undefined>]>;
4599
+ }, undefined>], undefined>, undefined>;
2990
4600
  }, undefined>;
2991
4601
  }, undefined>;
2992
4602
  type SUpdateMediaContentTypeDocumentRequest = v.InferOutput<typeof SUpdateMediaContentTypeDocumentRequest>;
@@ -3010,7 +4620,107 @@ declare const SCreateMediaCreativeFormatDocument: v.ObjectSchema<{
3010
4620
  readonly slug: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>]>;
3011
4621
  readonly is_active: v.BooleanSchema<undefined>;
3012
4622
  readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
3013
- readonly media_content_types: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
4623
+ readonly media_content_types: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
4624
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4625
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4626
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4627
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4628
+ }, undefined>, v.ObjectSchema<{
4629
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4630
+ }, undefined>, v.ObjectSchema<{
4631
+ readonly start: v.BooleanSchema<undefined>;
4632
+ }, undefined>, v.ObjectSchema<{
4633
+ readonly end: v.BooleanSchema<undefined>;
4634
+ }, undefined>], undefined>]>, {
4635
+ readonly end: true;
4636
+ }>, undefined>;
4637
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4638
+ documentId: string;
4639
+ position?: {
4640
+ before: string;
4641
+ } | {
4642
+ after: string;
4643
+ } | {
4644
+ start: boolean;
4645
+ } | {
4646
+ end: boolean;
4647
+ } | undefined;
4648
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4649
+ documentId: string;
4650
+ position?: {
4651
+ before: string;
4652
+ } | {
4653
+ after: string;
4654
+ } | {
4655
+ start: boolean;
4656
+ } | {
4657
+ end: boolean;
4658
+ } | undefined;
4659
+ })[], 100, undefined>]>;
4660
+ }, undefined>, v.ObjectSchema<{
4661
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4662
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4663
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4664
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4665
+ }, undefined>, v.ObjectSchema<{
4666
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4667
+ }, undefined>, v.ObjectSchema<{
4668
+ readonly start: v.BooleanSchema<undefined>;
4669
+ }, undefined>, v.ObjectSchema<{
4670
+ readonly end: v.BooleanSchema<undefined>;
4671
+ }, undefined>], undefined>]>, {
4672
+ readonly end: true;
4673
+ }>, undefined>;
4674
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4675
+ documentId: string;
4676
+ position?: {
4677
+ before: string;
4678
+ } | {
4679
+ after: string;
4680
+ } | {
4681
+ start: boolean;
4682
+ } | {
4683
+ end: boolean;
4684
+ } | undefined;
4685
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4686
+ documentId: string;
4687
+ position?: {
4688
+ before: string;
4689
+ } | {
4690
+ after: string;
4691
+ } | {
4692
+ start: boolean;
4693
+ } | {
4694
+ end: boolean;
4695
+ } | undefined;
4696
+ })[], 100, undefined>]>;
4697
+ }, undefined>, v.ObjectSchema<{
4698
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4699
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4700
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4701
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4702
+ }, undefined>, v.ObjectSchema<{
4703
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4704
+ }, undefined>, v.ObjectSchema<{
4705
+ readonly start: v.BooleanSchema<undefined>;
4706
+ }, undefined>, v.ObjectSchema<{
4707
+ readonly end: v.BooleanSchema<undefined>;
4708
+ }, undefined>], undefined>]>, {
4709
+ readonly end: true;
4710
+ }>, undefined>;
4711
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4712
+ documentId: string;
4713
+ position?: {
4714
+ before: string;
4715
+ } | {
4716
+ after: string;
4717
+ } | {
4718
+ start: boolean;
4719
+ } | {
4720
+ end: boolean;
4721
+ } | undefined;
4722
+ })[], 1, undefined>]>;
4723
+ }, undefined>], undefined>, undefined>;
3014
4724
  }, undefined>;
3015
4725
  type SCreateMediaCreativeFormatDocument = v.InferOutput<typeof SCreateMediaCreativeFormatDocument>;
3016
4726
  declare const SUpdateMediaCreativeFormatDocument: v.ObjectSchema<{
@@ -3018,7 +4728,107 @@ declare const SUpdateMediaCreativeFormatDocument: v.ObjectSchema<{
3018
4728
  readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
3019
4729
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3020
4730
  readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
3021
- readonly media_content_types: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
4731
+ readonly media_content_types: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
4732
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4733
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4734
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4735
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4736
+ }, undefined>, v.ObjectSchema<{
4737
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4738
+ }, undefined>, v.ObjectSchema<{
4739
+ readonly start: v.BooleanSchema<undefined>;
4740
+ }, undefined>, v.ObjectSchema<{
4741
+ readonly end: v.BooleanSchema<undefined>;
4742
+ }, undefined>], undefined>]>, {
4743
+ readonly end: true;
4744
+ }>, undefined>;
4745
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4746
+ documentId: string;
4747
+ position?: {
4748
+ before: string;
4749
+ } | {
4750
+ after: string;
4751
+ } | {
4752
+ start: boolean;
4753
+ } | {
4754
+ end: boolean;
4755
+ } | undefined;
4756
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4757
+ documentId: string;
4758
+ position?: {
4759
+ before: string;
4760
+ } | {
4761
+ after: string;
4762
+ } | {
4763
+ start: boolean;
4764
+ } | {
4765
+ end: boolean;
4766
+ } | undefined;
4767
+ })[], 100, undefined>]>;
4768
+ }, undefined>, v.ObjectSchema<{
4769
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4770
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4771
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4772
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4773
+ }, undefined>, v.ObjectSchema<{
4774
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4775
+ }, undefined>, v.ObjectSchema<{
4776
+ readonly start: v.BooleanSchema<undefined>;
4777
+ }, undefined>, v.ObjectSchema<{
4778
+ readonly end: v.BooleanSchema<undefined>;
4779
+ }, undefined>], undefined>]>, {
4780
+ readonly end: true;
4781
+ }>, undefined>;
4782
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4783
+ documentId: string;
4784
+ position?: {
4785
+ before: string;
4786
+ } | {
4787
+ after: string;
4788
+ } | {
4789
+ start: boolean;
4790
+ } | {
4791
+ end: boolean;
4792
+ } | undefined;
4793
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4794
+ documentId: string;
4795
+ position?: {
4796
+ before: string;
4797
+ } | {
4798
+ after: string;
4799
+ } | {
4800
+ start: boolean;
4801
+ } | {
4802
+ end: boolean;
4803
+ } | undefined;
4804
+ })[], 100, undefined>]>;
4805
+ }, undefined>, v.ObjectSchema<{
4806
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4807
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4808
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4809
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4810
+ }, undefined>, v.ObjectSchema<{
4811
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4812
+ }, undefined>, v.ObjectSchema<{
4813
+ readonly start: v.BooleanSchema<undefined>;
4814
+ }, undefined>, v.ObjectSchema<{
4815
+ readonly end: v.BooleanSchema<undefined>;
4816
+ }, undefined>], undefined>]>, {
4817
+ readonly end: true;
4818
+ }>, undefined>;
4819
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4820
+ documentId: string;
4821
+ position?: {
4822
+ before: string;
4823
+ } | {
4824
+ after: string;
4825
+ } | {
4826
+ start: boolean;
4827
+ } | {
4828
+ end: boolean;
4829
+ } | undefined;
4830
+ })[], 1, undefined>]>;
4831
+ }, undefined>], undefined>, undefined>;
3022
4832
  }, undefined>;
3023
4833
  type SUpdateMediaCreativeFormatDocument = v.InferOutput<typeof SUpdateMediaCreativeFormatDocument>;
3024
4834
  declare const SUpdateMediaCreativeFormatDocumentRequest: v.ObjectSchema<{
@@ -3028,7 +4838,107 @@ declare const SUpdateMediaCreativeFormatDocumentRequest: v.ObjectSchema<{
3028
4838
  readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
3029
4839
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3030
4840
  readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
3031
- readonly media_content_types: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
4841
+ readonly media_content_types: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
4842
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4843
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4844
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4845
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4846
+ }, undefined>, v.ObjectSchema<{
4847
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4848
+ }, undefined>, v.ObjectSchema<{
4849
+ readonly start: v.BooleanSchema<undefined>;
4850
+ }, undefined>, v.ObjectSchema<{
4851
+ readonly end: v.BooleanSchema<undefined>;
4852
+ }, undefined>], undefined>]>, {
4853
+ readonly end: true;
4854
+ }>, undefined>;
4855
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4856
+ documentId: string;
4857
+ position?: {
4858
+ before: string;
4859
+ } | {
4860
+ after: string;
4861
+ } | {
4862
+ start: boolean;
4863
+ } | {
4864
+ end: boolean;
4865
+ } | undefined;
4866
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4867
+ documentId: string;
4868
+ position?: {
4869
+ before: string;
4870
+ } | {
4871
+ after: string;
4872
+ } | {
4873
+ start: boolean;
4874
+ } | {
4875
+ end: boolean;
4876
+ } | undefined;
4877
+ })[], 100, undefined>]>;
4878
+ }, undefined>, v.ObjectSchema<{
4879
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4880
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4881
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4882
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4883
+ }, undefined>, v.ObjectSchema<{
4884
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4885
+ }, undefined>, v.ObjectSchema<{
4886
+ readonly start: v.BooleanSchema<undefined>;
4887
+ }, undefined>, v.ObjectSchema<{
4888
+ readonly end: v.BooleanSchema<undefined>;
4889
+ }, undefined>], undefined>]>, {
4890
+ readonly end: true;
4891
+ }>, undefined>;
4892
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4893
+ documentId: string;
4894
+ position?: {
4895
+ before: string;
4896
+ } | {
4897
+ after: string;
4898
+ } | {
4899
+ start: boolean;
4900
+ } | {
4901
+ end: boolean;
4902
+ } | undefined;
4903
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4904
+ documentId: string;
4905
+ position?: {
4906
+ before: string;
4907
+ } | {
4908
+ after: string;
4909
+ } | {
4910
+ start: boolean;
4911
+ } | {
4912
+ end: boolean;
4913
+ } | undefined;
4914
+ })[], 100, undefined>]>;
4915
+ }, undefined>, v.ObjectSchema<{
4916
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4917
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4918
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4919
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4920
+ }, undefined>, v.ObjectSchema<{
4921
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4922
+ }, undefined>, v.ObjectSchema<{
4923
+ readonly start: v.BooleanSchema<undefined>;
4924
+ }, undefined>, v.ObjectSchema<{
4925
+ readonly end: v.BooleanSchema<undefined>;
4926
+ }, undefined>], undefined>]>, {
4927
+ readonly end: true;
4928
+ }>, undefined>;
4929
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4930
+ documentId: string;
4931
+ position?: {
4932
+ before: string;
4933
+ } | {
4934
+ after: string;
4935
+ } | {
4936
+ start: boolean;
4937
+ } | {
4938
+ end: boolean;
4939
+ } | undefined;
4940
+ })[], 1, undefined>]>;
4941
+ }, undefined>], undefined>, undefined>;
3032
4942
  }, undefined>;
3033
4943
  }, undefined>;
3034
4944
  type SUpdateMediaCreativeFormatDocumentRequest = v.InferOutput<typeof SUpdateMediaCreativeFormatDocumentRequest>;
@@ -3057,8 +4967,208 @@ declare const SCreateMediaPlatformDocument: v.ObjectSchema<{
3057
4967
  readonly is_organic_social: v.BooleanSchema<undefined>;
3058
4968
  readonly is_paid_media: v.BooleanSchema<undefined>;
3059
4969
  readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
3060
- readonly clients: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
3061
- readonly media_content_types: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
4970
+ readonly clients: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
4971
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
4972
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4973
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
4974
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4975
+ }, undefined>, v.ObjectSchema<{
4976
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
4977
+ }, undefined>, v.ObjectSchema<{
4978
+ readonly start: v.BooleanSchema<undefined>;
4979
+ }, undefined>, v.ObjectSchema<{
4980
+ readonly end: v.BooleanSchema<undefined>;
4981
+ }, undefined>], undefined>]>, {
4982
+ readonly end: true;
4983
+ }>, undefined>;
4984
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
4985
+ documentId: string;
4986
+ position?: {
4987
+ before: string;
4988
+ } | {
4989
+ after: string;
4990
+ } | {
4991
+ start: boolean;
4992
+ } | {
4993
+ end: boolean;
4994
+ } | undefined;
4995
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
4996
+ documentId: string;
4997
+ position?: {
4998
+ before: string;
4999
+ } | {
5000
+ after: string;
5001
+ } | {
5002
+ start: boolean;
5003
+ } | {
5004
+ end: boolean;
5005
+ } | undefined;
5006
+ })[], 100, undefined>]>;
5007
+ }, undefined>, v.ObjectSchema<{
5008
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5009
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5010
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5011
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5012
+ }, undefined>, v.ObjectSchema<{
5013
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5014
+ }, undefined>, v.ObjectSchema<{
5015
+ readonly start: v.BooleanSchema<undefined>;
5016
+ }, undefined>, v.ObjectSchema<{
5017
+ readonly end: v.BooleanSchema<undefined>;
5018
+ }, undefined>], undefined>]>, {
5019
+ readonly end: true;
5020
+ }>, undefined>;
5021
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5022
+ documentId: string;
5023
+ position?: {
5024
+ before: string;
5025
+ } | {
5026
+ after: string;
5027
+ } | {
5028
+ start: boolean;
5029
+ } | {
5030
+ end: boolean;
5031
+ } | undefined;
5032
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
5033
+ documentId: string;
5034
+ position?: {
5035
+ before: string;
5036
+ } | {
5037
+ after: string;
5038
+ } | {
5039
+ start: boolean;
5040
+ } | {
5041
+ end: boolean;
5042
+ } | undefined;
5043
+ })[], 100, undefined>]>;
5044
+ }, undefined>, v.ObjectSchema<{
5045
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5046
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5047
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5048
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5049
+ }, undefined>, v.ObjectSchema<{
5050
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5051
+ }, undefined>, v.ObjectSchema<{
5052
+ readonly start: v.BooleanSchema<undefined>;
5053
+ }, undefined>, v.ObjectSchema<{
5054
+ readonly end: v.BooleanSchema<undefined>;
5055
+ }, undefined>], undefined>]>, {
5056
+ readonly end: true;
5057
+ }>, undefined>;
5058
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5059
+ documentId: string;
5060
+ position?: {
5061
+ before: string;
5062
+ } | {
5063
+ after: string;
5064
+ } | {
5065
+ start: boolean;
5066
+ } | {
5067
+ end: boolean;
5068
+ } | undefined;
5069
+ })[], 1, undefined>]>;
5070
+ }, undefined>], undefined>, undefined>;
5071
+ readonly media_content_types: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
5072
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5073
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5074
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5075
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5076
+ }, undefined>, v.ObjectSchema<{
5077
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5078
+ }, undefined>, v.ObjectSchema<{
5079
+ readonly start: v.BooleanSchema<undefined>;
5080
+ }, undefined>, v.ObjectSchema<{
5081
+ readonly end: v.BooleanSchema<undefined>;
5082
+ }, undefined>], undefined>]>, {
5083
+ readonly end: true;
5084
+ }>, undefined>;
5085
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5086
+ documentId: string;
5087
+ position?: {
5088
+ before: string;
5089
+ } | {
5090
+ after: string;
5091
+ } | {
5092
+ start: boolean;
5093
+ } | {
5094
+ end: boolean;
5095
+ } | undefined;
5096
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
5097
+ documentId: string;
5098
+ position?: {
5099
+ before: string;
5100
+ } | {
5101
+ after: string;
5102
+ } | {
5103
+ start: boolean;
5104
+ } | {
5105
+ end: boolean;
5106
+ } | undefined;
5107
+ })[], 100, undefined>]>;
5108
+ }, undefined>, v.ObjectSchema<{
5109
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5110
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5111
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5112
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5113
+ }, undefined>, v.ObjectSchema<{
5114
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5115
+ }, undefined>, v.ObjectSchema<{
5116
+ readonly start: v.BooleanSchema<undefined>;
5117
+ }, undefined>, v.ObjectSchema<{
5118
+ readonly end: v.BooleanSchema<undefined>;
5119
+ }, undefined>], undefined>]>, {
5120
+ readonly end: true;
5121
+ }>, undefined>;
5122
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5123
+ documentId: string;
5124
+ position?: {
5125
+ before: string;
5126
+ } | {
5127
+ after: string;
5128
+ } | {
5129
+ start: boolean;
5130
+ } | {
5131
+ end: boolean;
5132
+ } | undefined;
5133
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
5134
+ documentId: string;
5135
+ position?: {
5136
+ before: string;
5137
+ } | {
5138
+ after: string;
5139
+ } | {
5140
+ start: boolean;
5141
+ } | {
5142
+ end: boolean;
5143
+ } | undefined;
5144
+ })[], 100, undefined>]>;
5145
+ }, undefined>, v.ObjectSchema<{
5146
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5147
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5148
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5149
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5150
+ }, undefined>, v.ObjectSchema<{
5151
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5152
+ }, undefined>, v.ObjectSchema<{
5153
+ readonly start: v.BooleanSchema<undefined>;
5154
+ }, undefined>, v.ObjectSchema<{
5155
+ readonly end: v.BooleanSchema<undefined>;
5156
+ }, undefined>], undefined>]>, {
5157
+ readonly end: true;
5158
+ }>, undefined>;
5159
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5160
+ documentId: string;
5161
+ position?: {
5162
+ before: string;
5163
+ } | {
5164
+ after: string;
5165
+ } | {
5166
+ start: boolean;
5167
+ } | {
5168
+ end: boolean;
5169
+ } | undefined;
5170
+ })[], 1, undefined>]>;
5171
+ }, undefined>], undefined>, undefined>;
3062
5172
  }, undefined>;
3063
5173
  type SCreateMediaPlatformDocument = v.InferOutput<typeof SCreateMediaPlatformDocument>;
3064
5174
  declare const SUpdateMediaPlatformDocument: v.ObjectSchema<{
@@ -3068,8 +5178,208 @@ declare const SUpdateMediaPlatformDocument: v.ObjectSchema<{
3068
5178
  readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3069
5179
  readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3070
5180
  readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
3071
- readonly clients: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
3072
- readonly media_content_types: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
5181
+ readonly clients: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
5182
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5183
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5184
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5185
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5186
+ }, undefined>, v.ObjectSchema<{
5187
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5188
+ }, undefined>, v.ObjectSchema<{
5189
+ readonly start: v.BooleanSchema<undefined>;
5190
+ }, undefined>, v.ObjectSchema<{
5191
+ readonly end: v.BooleanSchema<undefined>;
5192
+ }, undefined>], undefined>]>, {
5193
+ readonly end: true;
5194
+ }>, undefined>;
5195
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5196
+ documentId: string;
5197
+ position?: {
5198
+ before: string;
5199
+ } | {
5200
+ after: string;
5201
+ } | {
5202
+ start: boolean;
5203
+ } | {
5204
+ end: boolean;
5205
+ } | undefined;
5206
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
5207
+ documentId: string;
5208
+ position?: {
5209
+ before: string;
5210
+ } | {
5211
+ after: string;
5212
+ } | {
5213
+ start: boolean;
5214
+ } | {
5215
+ end: boolean;
5216
+ } | undefined;
5217
+ })[], 100, undefined>]>;
5218
+ }, undefined>, v.ObjectSchema<{
5219
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5220
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5221
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5222
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5223
+ }, undefined>, v.ObjectSchema<{
5224
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5225
+ }, undefined>, v.ObjectSchema<{
5226
+ readonly start: v.BooleanSchema<undefined>;
5227
+ }, undefined>, v.ObjectSchema<{
5228
+ readonly end: v.BooleanSchema<undefined>;
5229
+ }, undefined>], undefined>]>, {
5230
+ readonly end: true;
5231
+ }>, undefined>;
5232
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5233
+ documentId: string;
5234
+ position?: {
5235
+ before: string;
5236
+ } | {
5237
+ after: string;
5238
+ } | {
5239
+ start: boolean;
5240
+ } | {
5241
+ end: boolean;
5242
+ } | undefined;
5243
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
5244
+ documentId: string;
5245
+ position?: {
5246
+ before: string;
5247
+ } | {
5248
+ after: string;
5249
+ } | {
5250
+ start: boolean;
5251
+ } | {
5252
+ end: boolean;
5253
+ } | undefined;
5254
+ })[], 100, undefined>]>;
5255
+ }, undefined>, v.ObjectSchema<{
5256
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5257
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5258
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5259
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5260
+ }, undefined>, v.ObjectSchema<{
5261
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5262
+ }, undefined>, v.ObjectSchema<{
5263
+ readonly start: v.BooleanSchema<undefined>;
5264
+ }, undefined>, v.ObjectSchema<{
5265
+ readonly end: v.BooleanSchema<undefined>;
5266
+ }, undefined>], undefined>]>, {
5267
+ readonly end: true;
5268
+ }>, undefined>;
5269
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5270
+ documentId: string;
5271
+ position?: {
5272
+ before: string;
5273
+ } | {
5274
+ after: string;
5275
+ } | {
5276
+ start: boolean;
5277
+ } | {
5278
+ end: boolean;
5279
+ } | undefined;
5280
+ })[], 1, undefined>]>;
5281
+ }, undefined>], undefined>, undefined>;
5282
+ readonly media_content_types: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
5283
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5284
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5285
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5286
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5287
+ }, undefined>, v.ObjectSchema<{
5288
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5289
+ }, undefined>, v.ObjectSchema<{
5290
+ readonly start: v.BooleanSchema<undefined>;
5291
+ }, undefined>, v.ObjectSchema<{
5292
+ readonly end: v.BooleanSchema<undefined>;
5293
+ }, undefined>], undefined>]>, {
5294
+ readonly end: true;
5295
+ }>, undefined>;
5296
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5297
+ documentId: string;
5298
+ position?: {
5299
+ before: string;
5300
+ } | {
5301
+ after: string;
5302
+ } | {
5303
+ start: boolean;
5304
+ } | {
5305
+ end: boolean;
5306
+ } | undefined;
5307
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
5308
+ documentId: string;
5309
+ position?: {
5310
+ before: string;
5311
+ } | {
5312
+ after: string;
5313
+ } | {
5314
+ start: boolean;
5315
+ } | {
5316
+ end: boolean;
5317
+ } | undefined;
5318
+ })[], 100, undefined>]>;
5319
+ }, undefined>, v.ObjectSchema<{
5320
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5321
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5322
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5323
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5324
+ }, undefined>, v.ObjectSchema<{
5325
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5326
+ }, undefined>, v.ObjectSchema<{
5327
+ readonly start: v.BooleanSchema<undefined>;
5328
+ }, undefined>, v.ObjectSchema<{
5329
+ readonly end: v.BooleanSchema<undefined>;
5330
+ }, undefined>], undefined>]>, {
5331
+ readonly end: true;
5332
+ }>, undefined>;
5333
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5334
+ documentId: string;
5335
+ position?: {
5336
+ before: string;
5337
+ } | {
5338
+ after: string;
5339
+ } | {
5340
+ start: boolean;
5341
+ } | {
5342
+ end: boolean;
5343
+ } | undefined;
5344
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
5345
+ documentId: string;
5346
+ position?: {
5347
+ before: string;
5348
+ } | {
5349
+ after: string;
5350
+ } | {
5351
+ start: boolean;
5352
+ } | {
5353
+ end: boolean;
5354
+ } | undefined;
5355
+ })[], 100, undefined>]>;
5356
+ }, undefined>, v.ObjectSchema<{
5357
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5358
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5359
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5360
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5361
+ }, undefined>, v.ObjectSchema<{
5362
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5363
+ }, undefined>, v.ObjectSchema<{
5364
+ readonly start: v.BooleanSchema<undefined>;
5365
+ }, undefined>, v.ObjectSchema<{
5366
+ readonly end: v.BooleanSchema<undefined>;
5367
+ }, undefined>], undefined>]>, {
5368
+ readonly end: true;
5369
+ }>, undefined>;
5370
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5371
+ documentId: string;
5372
+ position?: {
5373
+ before: string;
5374
+ } | {
5375
+ after: string;
5376
+ } | {
5377
+ start: boolean;
5378
+ } | {
5379
+ end: boolean;
5380
+ } | undefined;
5381
+ })[], 1, undefined>]>;
5382
+ }, undefined>], undefined>, undefined>;
3073
5383
  }, undefined>;
3074
5384
  type SUpdateMediaPlatformDocument = v.InferOutput<typeof SUpdateMediaPlatformDocument>;
3075
5385
  declare const SUpdateMediaPlatformDocumentRequest: v.ObjectSchema<{
@@ -3081,8 +5391,208 @@ declare const SUpdateMediaPlatformDocumentRequest: v.ObjectSchema<{
3081
5391
  readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3082
5392
  readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3083
5393
  readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
3084
- readonly clients: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
3085
- readonly media_content_types: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
5394
+ readonly clients: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
5395
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5396
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5397
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5398
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5399
+ }, undefined>, v.ObjectSchema<{
5400
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5401
+ }, undefined>, v.ObjectSchema<{
5402
+ readonly start: v.BooleanSchema<undefined>;
5403
+ }, undefined>, v.ObjectSchema<{
5404
+ readonly end: v.BooleanSchema<undefined>;
5405
+ }, undefined>], undefined>]>, {
5406
+ readonly end: true;
5407
+ }>, undefined>;
5408
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5409
+ documentId: string;
5410
+ position?: {
5411
+ before: string;
5412
+ } | {
5413
+ after: string;
5414
+ } | {
5415
+ start: boolean;
5416
+ } | {
5417
+ end: boolean;
5418
+ } | undefined;
5419
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
5420
+ documentId: string;
5421
+ position?: {
5422
+ before: string;
5423
+ } | {
5424
+ after: string;
5425
+ } | {
5426
+ start: boolean;
5427
+ } | {
5428
+ end: boolean;
5429
+ } | undefined;
5430
+ })[], 100, undefined>]>;
5431
+ }, undefined>, v.ObjectSchema<{
5432
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5433
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5434
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5435
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5436
+ }, undefined>, v.ObjectSchema<{
5437
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5438
+ }, undefined>, v.ObjectSchema<{
5439
+ readonly start: v.BooleanSchema<undefined>;
5440
+ }, undefined>, v.ObjectSchema<{
5441
+ readonly end: v.BooleanSchema<undefined>;
5442
+ }, undefined>], undefined>]>, {
5443
+ readonly end: true;
5444
+ }>, undefined>;
5445
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5446
+ documentId: string;
5447
+ position?: {
5448
+ before: string;
5449
+ } | {
5450
+ after: string;
5451
+ } | {
5452
+ start: boolean;
5453
+ } | {
5454
+ end: boolean;
5455
+ } | undefined;
5456
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
5457
+ documentId: string;
5458
+ position?: {
5459
+ before: string;
5460
+ } | {
5461
+ after: string;
5462
+ } | {
5463
+ start: boolean;
5464
+ } | {
5465
+ end: boolean;
5466
+ } | undefined;
5467
+ })[], 100, undefined>]>;
5468
+ }, undefined>, v.ObjectSchema<{
5469
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5470
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5471
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5472
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5473
+ }, undefined>, v.ObjectSchema<{
5474
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5475
+ }, undefined>, v.ObjectSchema<{
5476
+ readonly start: v.BooleanSchema<undefined>;
5477
+ }, undefined>, v.ObjectSchema<{
5478
+ readonly end: v.BooleanSchema<undefined>;
5479
+ }, undefined>], undefined>]>, {
5480
+ readonly end: true;
5481
+ }>, undefined>;
5482
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5483
+ documentId: string;
5484
+ position?: {
5485
+ before: string;
5486
+ } | {
5487
+ after: string;
5488
+ } | {
5489
+ start: boolean;
5490
+ } | {
5491
+ end: boolean;
5492
+ } | undefined;
5493
+ })[], 1, undefined>]>;
5494
+ }, undefined>], undefined>, undefined>;
5495
+ readonly media_content_types: v.OptionalSchema<v.UnionSchema<[v.ObjectSchema<{
5496
+ readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5497
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5498
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5499
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5500
+ }, undefined>, v.ObjectSchema<{
5501
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5502
+ }, undefined>, v.ObjectSchema<{
5503
+ readonly start: v.BooleanSchema<undefined>;
5504
+ }, undefined>, v.ObjectSchema<{
5505
+ readonly end: v.BooleanSchema<undefined>;
5506
+ }, undefined>], undefined>]>, {
5507
+ readonly end: true;
5508
+ }>, undefined>;
5509
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5510
+ documentId: string;
5511
+ position?: {
5512
+ before: string;
5513
+ } | {
5514
+ after: string;
5515
+ } | {
5516
+ start: boolean;
5517
+ } | {
5518
+ end: boolean;
5519
+ } | undefined;
5520
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
5521
+ documentId: string;
5522
+ position?: {
5523
+ before: string;
5524
+ } | {
5525
+ after: string;
5526
+ } | {
5527
+ start: boolean;
5528
+ } | {
5529
+ end: boolean;
5530
+ } | undefined;
5531
+ })[], 100, undefined>]>;
5532
+ }, undefined>, v.ObjectSchema<{
5533
+ readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5534
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5535
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5536
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5537
+ }, undefined>, v.ObjectSchema<{
5538
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5539
+ }, undefined>, v.ObjectSchema<{
5540
+ readonly start: v.BooleanSchema<undefined>;
5541
+ }, undefined>, v.ObjectSchema<{
5542
+ readonly end: v.BooleanSchema<undefined>;
5543
+ }, undefined>], undefined>]>, {
5544
+ readonly end: true;
5545
+ }>, undefined>;
5546
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5547
+ documentId: string;
5548
+ position?: {
5549
+ before: string;
5550
+ } | {
5551
+ after: string;
5552
+ } | {
5553
+ start: boolean;
5554
+ } | {
5555
+ end: boolean;
5556
+ } | undefined;
5557
+ })[], 1, undefined>, v.MaxLengthAction<(string | {
5558
+ documentId: string;
5559
+ position?: {
5560
+ before: string;
5561
+ } | {
5562
+ after: string;
5563
+ } | {
5564
+ start: boolean;
5565
+ } | {
5566
+ end: boolean;
5567
+ } | undefined;
5568
+ })[], 100, undefined>]>;
5569
+ }, undefined>, v.ObjectSchema<{
5570
+ readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
5571
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5572
+ readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
5573
+ readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5574
+ }, undefined>, v.ObjectSchema<{
5575
+ readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5576
+ }, undefined>, v.ObjectSchema<{
5577
+ readonly start: v.BooleanSchema<undefined>;
5578
+ }, undefined>, v.ObjectSchema<{
5579
+ readonly end: v.BooleanSchema<undefined>;
5580
+ }, undefined>], undefined>]>, {
5581
+ readonly end: true;
5582
+ }>, undefined>;
5583
+ }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
5584
+ documentId: string;
5585
+ position?: {
5586
+ before: string;
5587
+ } | {
5588
+ after: string;
5589
+ } | {
5590
+ start: boolean;
5591
+ } | {
5592
+ end: boolean;
5593
+ } | undefined;
5594
+ })[], 1, undefined>]>;
5595
+ }, undefined>], undefined>, undefined>;
3086
5596
  }, undefined>;
3087
5597
  }, undefined>;
3088
5598
  type SUpdateMediaPlatformDocumentRequest = v.InferOutput<typeof SUpdateMediaPlatformDocumentRequest>;
@@ -3197,176 +5707,89 @@ declare const SCreateResumeInfo: v.ObjectSchema<{
3197
5707
  readonly last_name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3198
5708
  readonly email: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 5, undefined>, v.MaxLengthAction<string, 255, undefined>, v.EmailAction<string, undefined>]>;
3199
5709
  readonly phone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 7, undefined>, v.MaxLengthAction<string, 24, undefined>, v.RegexAction<string, "Please provide a valid phone number.">]>, undefined>;
3200
- readonly message: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
3201
- readonly social_profiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, undefined>, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>;
3202
- readonly file: v.ObjectSchema<{
3203
- readonly id: v.NumberSchema<undefined>;
3204
- readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3205
- }, undefined>;
3206
- readonly email_consent: v.BooleanSchema<undefined>;
3207
- readonly sms_consent: v.BooleanSchema<undefined>;
3208
- readonly on_page: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
3209
- readonly captcha: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
3210
- }, undefined>;
3211
- type SCreateResumeInfo = v.InferOutput<typeof SCreateResumeInfo>;
3212
- declare const SCreateResumeInfoDocument: v.ObjectSchema<{
3213
- readonly first_name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3214
- readonly last_name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3215
- readonly email: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 5, undefined>, v.MaxLengthAction<string, 255, undefined>, v.EmailAction<string, undefined>]>;
3216
- readonly phone: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 7, undefined>, v.MaxLengthAction<string, 24, undefined>, v.RegexAction<string, "Please provide a valid phone number.">]>, undefined>, undefined>;
3217
- readonly message: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
3218
- readonly social_profiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, undefined>, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>;
3219
- readonly file: v.ObjectSchema<{
3220
- readonly id: v.NumberSchema<undefined>;
3221
- readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3222
- }, undefined>;
3223
- readonly email_consent: v.BooleanSchema<undefined>;
3224
- readonly sms_consent: v.BooleanSchema<undefined>;
3225
- readonly on_page: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
3226
- readonly captcha: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
3227
- }, undefined>;
3228
- type SCreateResumeInfoDocument = v.InferOutput<typeof SCreateResumeInfoDocument>;
3229
- declare const SUpdateResumeInfo: v.ObjectSchema<{
3230
- readonly first_name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3231
- readonly last_name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3232
- readonly email: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 5, undefined>, v.MaxLengthAction<string, 255, undefined>, v.EmailAction<string, undefined>]>, undefined>;
3233
- readonly phone: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 7, undefined>, v.MaxLengthAction<string, 24, undefined>, v.RegexAction<string, "Please provide a valid phone number.">]>, undefined>, undefined>;
3234
- readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3235
- readonly social_profiles: v.OptionalSchema<v.NullableSchema<v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, undefined>, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>, undefined>, undefined>;
3236
- readonly file: v.OptionalSchema<v.ObjectSchema<{
3237
- readonly id: v.NumberSchema<undefined>;
3238
- readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3239
- }, undefined>, undefined>;
3240
- readonly email_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3241
- readonly sms_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3242
- readonly on_page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3243
- readonly captcha: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
3244
- }, undefined>;
3245
- type SUpdateResumeInfo = v.InferOutput<typeof SUpdateResumeInfo>;
3246
- declare const SUpdateResumeInfoDocument: v.ObjectSchema<{
3247
- readonly first_name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3248
- readonly last_name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3249
- readonly email: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 5, undefined>, v.MaxLengthAction<string, 255, undefined>, v.EmailAction<string, undefined>]>, undefined>;
3250
- readonly phone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 7, undefined>, v.MaxLengthAction<string, 24, undefined>, v.RegexAction<string, "Please provide a valid phone number.">]>, undefined>;
3251
- readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3252
- readonly social_profiles: v.OptionalSchema<v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, undefined>, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>, undefined>;
3253
- readonly file: v.OptionalSchema<v.ObjectSchema<{
3254
- readonly id: v.NumberSchema<undefined>;
3255
- readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3256
- }, undefined>, undefined>;
3257
- readonly email_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3258
- readonly sms_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3259
- readonly on_page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3260
- readonly captcha: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
3261
- }, undefined>;
3262
- type SUpdateResumeInfoDocument = v.InferOutput<typeof SUpdateResumeInfoDocument>;
3263
- declare const SUpdateResumeInfoRequest: v.ObjectSchema<{
3264
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3265
- readonly data: v.ObjectSchema<{
3266
- readonly first_name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3267
- readonly last_name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3268
- readonly email: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 5, undefined>, v.MaxLengthAction<string, 255, undefined>, v.EmailAction<string, undefined>]>, undefined>;
3269
- readonly phone: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 7, undefined>, v.MaxLengthAction<string, 24, undefined>, v.RegexAction<string, "Please provide a valid phone number.">]>, undefined>, undefined>;
3270
- readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3271
- readonly social_profiles: v.OptionalSchema<v.NullableSchema<v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, undefined>, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>, undefined>, undefined>;
3272
- readonly file: v.OptionalSchema<v.ObjectSchema<{
3273
- readonly id: v.NumberSchema<undefined>;
3274
- readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3275
- }, undefined>, undefined>;
3276
- readonly email_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3277
- readonly sms_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3278
- readonly on_page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
3279
- readonly captcha: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
3280
- }, undefined>;
3281
- }, undefined>;
3282
- type SUpdateResumeInfoRequest = v.InferOutput<typeof SUpdateResumeInfoRequest>;
3283
- //#endregion
3284
- //#region src/schemas/shared.validators.d.ts
3285
- /**
3286
- * Basic number validator
3287
- */
3288
- declare const VNumberNullable: () => v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
3289
- declare const VIntegerNullable: () => v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>, undefined>;
3290
- /**
3291
- * Basic string validator with trim and min length
3292
- */
3293
- declare const VString: (minLength?: number) => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>]>;
3294
- /**
3295
- * String validator with trim, min length, and max length (Short)
3296
- */
3297
- declare const VStringShort: (minLength?: number) => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3298
- /**
3299
- * String validator with trim, min length, and max length (Long)
3300
- */
3301
- declare const VStringLong: (minLength?: number) => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 5000, undefined>]>;
3302
- /**
3303
- * String validator with trim, and max length
3304
- */
3305
- declare const VStringMax: (maxLength?: number) => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
3306
- /**
3307
- * String validator with trim, and max length
3308
- */
3309
- declare const VStringMaxRegex: (maxLength: number | undefined, pattern: RegExp, message: string) => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>;
3310
- /**
3311
- * String validator with trim, min length, and max length
3312
- */
3313
- declare const VStringMinMax: (minLength?: number, maxLength?: number) => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3314
- /**
3315
- * String validator with trim, min length, max length, and regex pattern
3316
- */
3317
- declare const VStringMinMaxRegex: (minLength: number | undefined, maxLength: number | undefined, pattern: RegExp, message: string) => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>;
3318
- /**
3319
- * Optional Nullable String validator (Long)
3320
- */
3321
- declare const VStringLongNullable: (minLength?: number) => v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 5000, undefined>]>, undefined>, undefined>;
3322
- /**
3323
- * Optional Nullable String validator
3324
- * Commonly used for optional fields that might be null in the database or API
3325
- */
3326
- declare const VStringShortNullable: (minLength?: number) => v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
3327
- /**
3328
- * URL Validator
3329
- * Checks for http/https prefix and valid URL format
3330
- */
3331
- declare const VStringUrl: () => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.StartsWithAction<string, "http", "Please enter a valid URL starting with http or https.">, v.UrlAction<string, "Please enter a valid URL.">]>;
3332
- /**
3333
- * UTM URL Validator
3334
- * Checks for valid URL format that does contain utm params
3335
- */
3336
- declare const VStringUrlUtm: () => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.UrlAction<string, "Please enter a valid URL.">, v.CheckAction<string, "Please enter a valid URL with UTM parameters.">]>;
3337
- /**
3338
- * URL no utm params Validator
3339
- * Checks for valid URL format that does not contain utm params
3340
- */
3341
- declare const VStringUrlNoUtm: () => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.UrlAction<string, "Please enter a valid URL.">, v.CheckAction<string, "Please remove any query parameters from the URL.">]>;
3342
- /**
3343
- * Optional Nullable URL Validator
3344
- */
3345
- declare const VStringUrlNullable: () => v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.StartsWithAction<string, "http", "Please enter a valid URL starting with http or https.">, v.UrlAction<string, "Please enter a valid URL.">]>, undefined>, undefined>;
3346
- /**
3347
- * Slug Validator
3348
- */
3349
- declare const VStringSlug: () => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>, v.RegexAction<string, "can only contain letters, numbers, and the special characters: - _ .">]>;
3350
- /**
3351
- * Email Validator
3352
- */
3353
- declare const VStringEmail: () => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 5, undefined>, v.MaxLengthAction<string, 255, undefined>, v.EmailAction<string, undefined>]>;
3354
- /**
3355
- * Phone Validator (NANP)
3356
- */
3357
- declare const VStringPhone: () => v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 7, undefined>, v.MaxLengthAction<string, 24, undefined>, v.RegexAction<string, "Please provide a valid phone number.">]>;
3358
- /**
3359
- * Optional Nullable Phone Validator
3360
- */
3361
- declare const VStringPhoneNullable: () => v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 7, undefined>, v.MaxLengthAction<string, 24, undefined>, v.RegexAction<string, "Please provide a valid phone number.">]>, undefined>, undefined>;
3362
- /**
3363
- * Pagination Page Validator
3364
- */
3365
- declare const VPage: () => v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
3366
- /**
3367
- * Pagination Size Validator
3368
- */
3369
- declare const VSize: (maxSize: number) => v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
5710
+ readonly message: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
5711
+ readonly social_profiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, undefined>, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>;
5712
+ readonly file: v.ObjectSchema<{
5713
+ readonly id: v.NumberSchema<undefined>;
5714
+ readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5715
+ }, undefined>;
5716
+ readonly email_consent: v.BooleanSchema<undefined>;
5717
+ readonly sms_consent: v.BooleanSchema<undefined>;
5718
+ readonly on_page: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
5719
+ readonly captcha: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
5720
+ }, undefined>;
5721
+ type SCreateResumeInfo = v.InferOutput<typeof SCreateResumeInfo>;
5722
+ declare const SCreateResumeInfoDocument: v.ObjectSchema<{
5723
+ readonly first_name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5724
+ readonly last_name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5725
+ readonly email: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 5, undefined>, v.MaxLengthAction<string, 255, undefined>, v.EmailAction<string, undefined>]>;
5726
+ readonly phone: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 7, undefined>, v.MaxLengthAction<string, 24, undefined>, v.RegexAction<string, "Please provide a valid phone number.">]>, undefined>, undefined>;
5727
+ readonly message: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
5728
+ readonly social_profiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, undefined>, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>;
5729
+ readonly file: v.ObjectSchema<{
5730
+ readonly id: v.NumberSchema<undefined>;
5731
+ readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5732
+ }, undefined>;
5733
+ readonly email_consent: v.BooleanSchema<undefined>;
5734
+ readonly sms_consent: v.BooleanSchema<undefined>;
5735
+ readonly on_page: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
5736
+ readonly captcha: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
5737
+ }, undefined>;
5738
+ type SCreateResumeInfoDocument = v.InferOutput<typeof SCreateResumeInfoDocument>;
5739
+ declare const SUpdateResumeInfo: v.ObjectSchema<{
5740
+ readonly first_name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
5741
+ readonly last_name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
5742
+ readonly email: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 5, undefined>, v.MaxLengthAction<string, 255, undefined>, v.EmailAction<string, undefined>]>, undefined>;
5743
+ readonly phone: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 7, undefined>, v.MaxLengthAction<string, 24, undefined>, v.RegexAction<string, "Please provide a valid phone number.">]>, undefined>, undefined>;
5744
+ readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
5745
+ readonly social_profiles: v.OptionalSchema<v.NullableSchema<v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, undefined>, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>, undefined>, undefined>;
5746
+ readonly file: v.OptionalSchema<v.ObjectSchema<{
5747
+ readonly id: v.NumberSchema<undefined>;
5748
+ readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5749
+ }, undefined>, undefined>;
5750
+ readonly email_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
5751
+ readonly sms_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
5752
+ readonly on_page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
5753
+ readonly captcha: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
5754
+ }, undefined>;
5755
+ type SUpdateResumeInfo = v.InferOutput<typeof SUpdateResumeInfo>;
5756
+ declare const SUpdateResumeInfoDocument: v.ObjectSchema<{
5757
+ readonly first_name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
5758
+ readonly last_name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
5759
+ readonly email: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 5, undefined>, v.MaxLengthAction<string, 255, undefined>, v.EmailAction<string, undefined>]>, undefined>;
5760
+ readonly phone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 7, undefined>, v.MaxLengthAction<string, 24, undefined>, v.RegexAction<string, "Please provide a valid phone number.">]>, undefined>;
5761
+ readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
5762
+ readonly social_profiles: v.OptionalSchema<v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, undefined>, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>, undefined>;
5763
+ readonly file: v.OptionalSchema<v.ObjectSchema<{
5764
+ readonly id: v.NumberSchema<undefined>;
5765
+ readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5766
+ }, undefined>, undefined>;
5767
+ readonly email_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
5768
+ readonly sms_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
5769
+ readonly on_page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
5770
+ readonly captcha: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
5771
+ }, undefined>;
5772
+ type SUpdateResumeInfoDocument = v.InferOutput<typeof SUpdateResumeInfoDocument>;
5773
+ declare const SUpdateResumeInfoRequest: v.ObjectSchema<{
5774
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
5775
+ readonly data: v.ObjectSchema<{
5776
+ readonly first_name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
5777
+ readonly last_name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
5778
+ readonly email: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 5, undefined>, v.MaxLengthAction<string, 255, undefined>, v.EmailAction<string, undefined>]>, undefined>;
5779
+ readonly phone: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 7, undefined>, v.MaxLengthAction<string, 24, undefined>, v.RegexAction<string, "Please provide a valid phone number.">]>, undefined>, undefined>;
5780
+ readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
5781
+ readonly social_profiles: v.OptionalSchema<v.NullableSchema<v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, undefined>, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>, undefined>, undefined>;
5782
+ readonly file: v.OptionalSchema<v.ObjectSchema<{
5783
+ readonly id: v.NumberSchema<undefined>;
5784
+ readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5785
+ }, undefined>, undefined>;
5786
+ readonly email_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
5787
+ readonly sms_consent: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
5788
+ readonly on_page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
5789
+ readonly captcha: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>;
5790
+ }, undefined>;
5791
+ }, undefined>;
5792
+ type SUpdateResumeInfoRequest = v.InferOutput<typeof SUpdateResumeInfoRequest>;
3370
5793
  //#endregion
3371
5794
  //#region src/schemas/sharpspring.schemas.d.ts
3372
5795
  declare const SharpSpringSignUpToDownload: v.ObjectSchema<{
@@ -3381,216 +5804,6 @@ declare const SharpSpringSignUpToDownload: v.ObjectSchema<{
3381
5804
  }, undefined>;
3382
5805
  type SharpSpringSignUpToDownload = v.InferOutput<typeof SharpSpringSignUpToDownload>;
3383
5806
  //#endregion
3384
- //#region src/schemas/strapi-associate-relations.schemas.d.ts
3385
- declare const SEntityRelationPositionBefore: v.ObjectSchema<{
3386
- readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3387
- }, undefined>;
3388
- type SEntityRelationPositionBefore = v.InferInput<typeof SEntityRelationPositionBefore>;
3389
- declare const SEntityRelationPositionAfter: v.ObjectSchema<{
3390
- readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3391
- }, undefined>;
3392
- type SEntityRelationPositionAfter = v.InferInput<typeof SEntityRelationPositionBefore>;
3393
- declare const SEntityRelationPositionStart: v.ObjectSchema<{
3394
- readonly start: v.BooleanSchema<undefined>;
3395
- }, undefined>;
3396
- type SEntityRelationPositionStart = v.InferInput<typeof SEntityRelationPositionBefore>;
3397
- declare const SEntityRelationPositionEnd: v.ObjectSchema<{
3398
- readonly end: v.BooleanSchema<undefined>;
3399
- }, undefined>;
3400
- type SEntityRelationPositionEnd = v.InferInput<typeof SEntityRelationPositionBefore>;
3401
- declare const SEntityRelationPosition: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3402
- readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3403
- }, undefined>, v.ObjectSchema<{
3404
- readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3405
- }, undefined>, v.ObjectSchema<{
3406
- readonly start: v.BooleanSchema<undefined>;
3407
- }, undefined>, v.ObjectSchema<{
3408
- readonly end: v.BooleanSchema<undefined>;
3409
- }, undefined>], undefined>]>, {
3410
- readonly end: true;
3411
- }>;
3412
- type SEntityRelationPositionIn = v.InferInput<typeof SEntityRelationPosition>;
3413
- type SEntityRelationPosition = v.InferOutput<typeof SEntityRelationPosition>;
3414
- declare const SEntityRelation: v.ObjectSchema<{
3415
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3416
- readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3417
- readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3418
- }, undefined>, v.ObjectSchema<{
3419
- readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3420
- }, undefined>, v.ObjectSchema<{
3421
- readonly start: v.BooleanSchema<undefined>;
3422
- }, undefined>, v.ObjectSchema<{
3423
- readonly end: v.BooleanSchema<undefined>;
3424
- }, undefined>], undefined>]>, {
3425
- readonly end: true;
3426
- }>, undefined>;
3427
- }, undefined>;
3428
- type SEntityRelationIn = v.InferInput<typeof SEntityRelation>;
3429
- type SEntityRelation = v.InferOutput<typeof SEntityRelation>;
3430
- declare const SConnectManyEntityRelation: v.ObjectSchema<{
3431
- readonly connect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3432
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3433
- readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3434
- readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3435
- }, undefined>, v.ObjectSchema<{
3436
- readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3437
- }, undefined>, v.ObjectSchema<{
3438
- readonly start: v.BooleanSchema<undefined>;
3439
- }, undefined>, v.ObjectSchema<{
3440
- readonly end: v.BooleanSchema<undefined>;
3441
- }, undefined>], undefined>]>, {
3442
- readonly end: true;
3443
- }>, undefined>;
3444
- }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3445
- documentId: string;
3446
- position?: {
3447
- before: string;
3448
- } | {
3449
- after: string;
3450
- } | {
3451
- start: boolean;
3452
- } | {
3453
- end: boolean;
3454
- } | undefined;
3455
- })[], 1, undefined>, v.MaxLengthAction<(string | {
3456
- documentId: string;
3457
- position?: {
3458
- before: string;
3459
- } | {
3460
- after: string;
3461
- } | {
3462
- start: boolean;
3463
- } | {
3464
- end: boolean;
3465
- } | undefined;
3466
- })[], 100, undefined>]>;
3467
- }, undefined>;
3468
- type SConnectManyEntityRelationIn = v.InferInput<typeof SConnectManyEntityRelation>;
3469
- type SConnectManyEntityRelation = v.InferOutput<typeof SConnectManyEntityRelation>;
3470
- declare const SDisconnectManyEntityRelation: v.ObjectSchema<{
3471
- readonly disconnect: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3472
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3473
- readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3474
- readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3475
- }, undefined>, v.ObjectSchema<{
3476
- readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3477
- }, undefined>, v.ObjectSchema<{
3478
- readonly start: v.BooleanSchema<undefined>;
3479
- }, undefined>, v.ObjectSchema<{
3480
- readonly end: v.BooleanSchema<undefined>;
3481
- }, undefined>], undefined>]>, {
3482
- readonly end: true;
3483
- }>, undefined>;
3484
- }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3485
- documentId: string;
3486
- position?: {
3487
- before: string;
3488
- } | {
3489
- after: string;
3490
- } | {
3491
- start: boolean;
3492
- } | {
3493
- end: boolean;
3494
- } | undefined;
3495
- })[], 1, undefined>, v.MaxLengthAction<(string | {
3496
- documentId: string;
3497
- position?: {
3498
- before: string;
3499
- } | {
3500
- after: string;
3501
- } | {
3502
- start: boolean;
3503
- } | {
3504
- end: boolean;
3505
- } | undefined;
3506
- })[], 100, undefined>]>;
3507
- }, undefined>;
3508
- type SDisconnectManyEntityRelationIn = v.InferInput<typeof SDisconnectManyEntityRelation>;
3509
- type SDisconnectManyEntityRelation = v.InferOutput<typeof SDisconnectManyEntityRelation>;
3510
- declare const SSetManyEntityRelation: v.ObjectSchema<{
3511
- readonly set: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3512
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3513
- readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3514
- readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3515
- }, undefined>, v.ObjectSchema<{
3516
- readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3517
- }, undefined>, v.ObjectSchema<{
3518
- readonly start: v.BooleanSchema<undefined>;
3519
- }, undefined>, v.ObjectSchema<{
3520
- readonly end: v.BooleanSchema<undefined>;
3521
- }, undefined>], undefined>]>, {
3522
- readonly end: true;
3523
- }>, undefined>;
3524
- }, undefined>], undefined>, undefined>, v.MinLengthAction<(string | {
3525
- documentId: string;
3526
- position?: {
3527
- before: string;
3528
- } | {
3529
- after: string;
3530
- } | {
3531
- start: boolean;
3532
- } | {
3533
- end: boolean;
3534
- } | undefined;
3535
- })[], 1, undefined>]>;
3536
- }, undefined>;
3537
- type SSetManyEntityRelationIn = v.InferInput<typeof SSetManyEntityRelation>;
3538
- type SSetManyEntityRelation = v.InferOutput<typeof SSetManyEntityRelation>;
3539
- declare const SConnectOneEntityRelation: v.ObjectSchema<{
3540
- readonly connect: v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3541
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3542
- readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3543
- readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3544
- }, undefined>, v.ObjectSchema<{
3545
- readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3546
- }, undefined>, v.ObjectSchema<{
3547
- readonly start: v.BooleanSchema<undefined>;
3548
- }, undefined>, v.ObjectSchema<{
3549
- readonly end: v.BooleanSchema<undefined>;
3550
- }, undefined>], undefined>]>, {
3551
- readonly end: true;
3552
- }>, undefined>;
3553
- }, undefined>], undefined>;
3554
- }, undefined>;
3555
- type SConnectOneEntityRelationIn = v.InferInput<typeof SConnectOneEntityRelation>;
3556
- type SConnectOneEntityRelation = v.InferOutput<typeof SConnectOneEntityRelation>;
3557
- declare const SDisconnectOneEntityRelation: v.ObjectSchema<{
3558
- readonly disconnect: v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3559
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3560
- readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3561
- readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3562
- }, undefined>, v.ObjectSchema<{
3563
- readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3564
- }, undefined>, v.ObjectSchema<{
3565
- readonly start: v.BooleanSchema<undefined>;
3566
- }, undefined>, v.ObjectSchema<{
3567
- readonly end: v.BooleanSchema<undefined>;
3568
- }, undefined>], undefined>]>, {
3569
- readonly end: true;
3570
- }>, undefined>;
3571
- }, undefined>], undefined>;
3572
- }, undefined>;
3573
- type SDisconnectOneEntityRelationIn = v.InferInput<typeof SDisconnectOneEntityRelation>;
3574
- type SDisconnectOneEntityRelation = v.InferOutput<typeof SDisconnectOneEntityRelation>;
3575
- declare const SSetOneEntityRelation: v.ObjectSchema<{
3576
- readonly set: v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, v.ObjectSchema<{
3577
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3578
- readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
3579
- readonly before: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3580
- }, undefined>, v.ObjectSchema<{
3581
- readonly after: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
3582
- }, undefined>, v.ObjectSchema<{
3583
- readonly start: v.BooleanSchema<undefined>;
3584
- }, undefined>, v.ObjectSchema<{
3585
- readonly end: v.BooleanSchema<undefined>;
3586
- }, undefined>], undefined>]>, {
3587
- readonly end: true;
3588
- }>, undefined>;
3589
- }, undefined>], undefined>;
3590
- }, undefined>;
3591
- type SSetOneEntityRelationIn = v.InferInput<typeof SSetOneEntityRelation>;
3592
- type SSetOneEntityRelation = v.InferOutput<typeof SSetOneEntityRelation>;
3593
- //#endregion
3594
5807
  //#region src/schemas/strapi-media-upload.schemas.d.ts
3595
5808
  declare const SCreateStrapiMediaUploadDocument: v.ObjectSchema<{
3596
5809
  readonly files: v.SchemaWithPipe<readonly [v.FileSchema<undefined>, v.MinSizeAction<any, 1, undefined>, v.MaxSizeAction<any, 10485760, "File size cannot exceed 10MB.">]>;
@@ -4151,5 +6364,5 @@ declare function isValidationSuccess<T>(result: ValidateAndCleanResult<T>): resu
4151
6364
  declare function isValidationFailure<T>(result: ValidateAndCleanResult<T>): result is ValidateAndCleanFailure;
4152
6365
  declare function omitUndefined<T extends Record<string, any>>(obj: T): Partial<T>;
4153
6366
  //#endregion
4154
- export { TeamworkProjectHealthSelectSortOptions as $, ComponentUtmOption as $a, TeamworkActivePages as $i, SUpdateGCFlyTourDocumentRequest as $n, ComponentMetaSocial as $o, ClientMediaPlatformSortKeys as $r, VStringUrlNullable as $t, SAuthRawAccessToken as A, UserAuthorizationLoginResponse as Aa, TeamworkTask as Ai, MediaContentTypeSortKeys as An, BlockSectionTitle as Ao, SQueryListClientUserDocuments as Ar, FormSelectInputOption as As, SSetManyEntityRelationIn as At, SUpdateUserAccount as B, ClientProjectDocument as Ba, TeamworkResponseMetaProjectStats as Bi, QuerySortEntities as Bn, ComponentBlockVideo as Bo, ClientReportSortKeys as Br, StrapiTextColorOptions as Bs, VStringLong as Bt, QuerySortUsers as C, ProductDocument as Ca, LCRUDActions as Ci, SUpdateMediaPlatformDocumentRequest as Cn, FormDownloadKeys as Co, QueryStrapiSearchClients as Cr, StrapiPagination as Cs, SEntityRelationPosition as Ct, UserSortKeys as D, ClientUserDocument as Da, TeamworkTasklistResponse as Di, SCreateMediaCreativeFormatDocument as Dn, ComponentBrandStyleguideColor as Do, ClientUserSortKeys as Dr, MediaFormat as Ds, SEntityRelationPositionIn as Dt, SCreateUserDocument as E, GCFlyTourSnapDocument as Ea, TeamworkTasklist as Ei, QueryStrapiSearchMediaCreativeFormats as En, BrandStyleguideColor as Eo, SUpdateClientDocumentRequest as Er, StrapiSingleResponse as Es, SEntityRelationPositionEnd as Et, SRequestConfirmEmail as F, RoleDocument as Fa, TeamworkTasksResponse as Fi, SUpdateMediaContentTypeDocumentRequest as Fn, ComponentBlockGraphicImage as Fo, QuerySortClientStyleguides as Fr, StrapiIconPosition as Fs, VNumberNullable as Ft, QueryStrapiPaginatedUrlRedirects as G, BlogPostBlock as Ga, TeamworkTagsResponse as Gi, QueryStrapiByPhone as Gn, BlockContact as Go, SUpdateClientReportDocumentRequest as Gr, CLIENT_ENTITY_SCOPES as Gs, VStringMinMaxRegex as Gt, SUpdateUserAccountLastName as H, MediaPlatformDocument as Ha, TeamworkTag as Hi, QueryStrapiByEmail as Hn, ComponentBlockFaq as Ho, QueryStrapiSearchClientReports as Hr, BaseDocument as Hs, VStringMax as Ht, SResetUserPassword as I, RoleType as Ia, TeamworkProject as Ii, SCreateLeadDocument as In, BlockFullscreenContent as Io, QueryStrapiSearchClientStyleguide as Ir, StrapiLinkReferrerPolicy as Is, VPage as It, SUpdateTrendsLikes as J, TeamMemberGroup as Ja, TeamworkProjectCustomField as Ji, GCFlyTourSortKeys as Jn, ComponentBlockButtonGroup as Jo, QueryStrapiSearchClientProjects as Jr, ClientEntityScope as Js, VStringShort as Jt, QueryStrapiUrlRedirectsByFrom as K, BlogPostDocument as Ka, TeamworkProjectUpdate as Ki, QueryStrapiBySlug as Kn, ComponentBlockContact as Ko, ClientProjectSortKeys as Kr, ClientEntityActions as Ks, VStringPhone as Kt, SUserToken as L, PermissionDocument as La, TeamworkProjectResponse as Li, SUpdateLeadDocument as Ln, BlockFullscreenContentType as Lo, SCreateClientStyleguideDocument as Lr, StrapiLinkRel as Ls, VSize as Lt, SForgotUserPassword as M, UserDocument as Ma, TeamworkTaskResponse as Mi, QueryStrapiSearchMediaContentTypes as Mn, BlockPullQuote as Mo, SUpdateClientUserDocumentRequest as Mr, StrapiDirection as Ms, SSetOneEntityRelationIn as Mt, SLoginUser as N, UtmTrackingLinkDocument as Na, TeamworkTaskResponseMeta as Ni, SCreateMediaContentTypeDocument as Nn, ComponentBlockPullQuote as No, SVerifyClientUserDocument as Nr, StrapiGapSizes as Ns, SharpSpringSignUpToDownload as Nt, SAuthConnectProviderConfirmation as O, ClientUserDocumentStatus as Oa, TeamworkTasklistResponseMeta as Oi, SUpdateMediaCreativeFormatDocument as On, BlockTextDetails as Oo, QuerySortClientUsers as Or, MediaFormats as Os, SEntityRelationPositionStart as Ot, SRegisterUser as P, UserAccountDocument as Pa, TeamworkTaskUserPermissions as Pi, SUpdateMediaContentTypeDocument as Pn, BlockGraphicImage as Po, ClientStyleguideSortKeys as Pr, StrapiIconName as Ps, VIntegerNullable as Pt, TeamworkProjectHealthProjectStatusOptions as Q, CategoryDocument as Qa, TeamworkCompany as Qi, SUpdateGCFlyTourDocument as Qn, ComponentBlockAnnouncementBar as Qo, SUpdateClientProjectDocumentRequest as Qr, VStringUrlNoUtm as Qt, SReadUserAccountByDocumentId as R, ClientStyleguideDocument as Ra, TeamworkProjectResponseMeta as Ri, SUpdateLeadRequest as Rn, ComponentBlockFullscreenContent as Ro, SUpdateClientStyleguideDocument as Rr, StrapiLinkTarget as Rs, VString as Rt, SUtmLinkBuilderTableFormInput as S, ProductHighlightDocument as Sa, hasPermission as Si, SUpdateMediaPlatformDocument as Sn, FormDownload as So, QuerySortClients as Sr, StrapiListResponse as Ss, SEntityRelationIn as St, QueryStrapiUsersByIdentifier as T, GCFlyTourDocument as Ta, RolesWithPermissions as Ti, QuerySortMediaCreativeFormat as Tn, ComponentBrandStyleguideFont as To, SUpdateClientDocument as Tr, StrapiResponseMetaWithPagination as Ts, SEntityRelationPositionBefore as Tt, SUpdateUserAccountPreferredName as U, MediaContentTypeDocument as Ua, TeamworkTagResponse as Ui, QueryStrapiById as Un, BlockCtaLink as Uo, SCreateClientReportDocument as Ur, CLIENT_ENTITY_KEYS as Us, VStringMaxRegex as Ut, SUpdateUserAccountFirstName as V, ClientMediaPlatformDocument as Va, TeamworkUserAccount as Vi, QueryStrapiByDocumentId as Vn, BlockFaq as Vo, QuerySortClientReports as Vr, StrapiThemeOptions as Vs, VStringLongNullable as Vt, QuerySortUrlRedirects as W, MediaCreativeFormatDocument as Wa, TeamworkTagResponseMeta as Wi, QueryStrapiByName as Wn, ComponentBlockCtaLink as Wo, SUpdateClientReportDocument as Wr, CLIENT_ENTITY_PERMISSIONS as Ws, VStringMinMax as Wt, QueryStrapiSearchTeamworkProjectHealth as X, TrendDocument as Xa, TeamworkCustomField as Xi, QueryStrapiSearchGCFlyTours as Xn, ComponentBlockBrandLogos as Xo, SCreateClientProjectDocument as Xr, VStringSlug as Xt, QuerySortTeamworkProjectHealth as Y, TeamMemberTier as Ya, TeamworkProjectCategory as Yi, QuerySortGCFlyTours as Yn, BlockBrandLogos as Yo, SAssociateClientToClientProjectDocument as Yr, ROLE_PERMISSIONS as Ys, VStringShortNullable as Yt, TeamworkProjectHealthProjectStatus as Z, TagDocument as Za, TeamworkCurrency as Zi, SCreateGCFlyTourDocument as Zn, BlockAnnouncementBar as Zo, SUpdateClientProjectDocument as Zr, VStringUrl as Zt, SUpdateUtmTrackingLinkDocumentRequest as _, CommentDocument as _a, BlogPostSortKeys as _i, SUpdateMondayWorkspaceDocumentRequest as _n, SliderSpacing as _o, SDeleteCommentDocument as _r, StrapiAttributeErrorKey as _s, SDisconnectManyEntityRelation as _t, isStrapiAttributeError as a, TeamPageDocument as aa, ClientContentPillarSortKeys as ai, SUpdateResumeInfoDocument as an, ComponentSlideContent as ao, SUpdateGCFlyTourSnapDocumentRequest as ar, SeoMeta as as, QueryStrapiSearchTags as at, SUtmLinkBuilderPartCampaignDateValue as b, ContentPillarDocument as ba, QueryStrapiSearchBlogPostsBySlug as bi, QueryStrapiSearchMediaPlatforms as bn, FormUID as bo, StrapiCommentSortKeys as br, StrapiErrorResponse as bs, SDisconnectOneEntityRelationIn as bt, dateToday as c, FAQPageDocument as ca, SCreateClientContentPillarDocument as ci, SCreateNewsletterSignup as cn, SlideshowComponentProps as co, QueryStrapiSearchContentPillars as cr, ComponentSharedRichTextBlock as cs, SUpdateTagDocumentRequest as ct, SCreateUtmTrackingLinkDocument as d, UrlRedirectDocument as da, CategorySortKeys as di, SUpdateNewsletterSignupRequest as dn, SlideshowMode as do, SUpdateContentPillarDocumentRequest as dr, SharedRichTextBlock as ds, SCreateStrapiMediaUploadDocument as dt, TeamworkLockdown as ea, QuerySortClientMediaPlatforms as ei, VStringUrlUtm as en, UtmClassificationKey as eo, GCFlyTourSnapSortKeys as er, ComponentOpenGraph as es, TeamworkProjectHealthSortKey as et, SCreateUtmTrackingLinkDocumentRequest as f, UrlRedirectQueryParams as fa, QuerySortCategories as fi, MondayWorkspaceSortKeys as fn, SlideshowSettings as fo, QueryFilterStrapiComments as fr, ComponentSharedButton as fs, SUpdateStrapiMediaFileInfo as ft, SUpdateUtmTrackingLinkDocument as g, LeadDocument as ga, SUpdateCategoryDocumentRequest as gi, SUpdateMondayWorkspaceDocument as gn, SliderSettings as go, SCreateCommentDocument as gr, StrapiAttributeErrorDetail as gs, SConnectOneEntityRelationIn as gt, SReadUtmTrackingLinkDocumentByUrl as h, NewsletterSignupDocument as ha, SUpdateCategoryDocument as hi, SCreateMondayWorkspaceDocument as hn, SliderOrigin as ho, QueryStrapiCommentsInHeirarchy as hr, SharedLink as hs, SConnectOneEntityRelation as ht, validateAndClean as i, UtmMetaPageDocument as ia, SUpdateClientMediaPlatformDocumentRequest as ii, SUpdateResumeInfo as in, Slideshow as io, SUpdateGCFlyTourSnapDocument as ir, OpenGraph as is, QuerySortTags as it, SChangePassword as j, UserAuthorizationSuccessResponse as ja, TeamworkTaskCard as ji, QuerySortMediaContentType as jn, ComponentBlockSectionTitle as jo, SUpdateClientUserDocument as jr, StrapiBgColorOptions as js, SSetOneEntityRelation as jt, SAuthConnectProviderRedirectSearch as k, AuthorizedUserDocument as ka, TeamworkTasklistsResponse as ki, SUpdateMediaCreativeFormatDocumentRequest as kn, ComponentBlockTextDetails as ko, SCreateClientUserDocument as kr, MediaUploadDocument as ks, SSetManyEntityRelation as kt, QuerySortUtmTrackingLinks as l, CareersPageDocument as la, SUpdateClientContentPillarDocument as li, SCreateNewsletterSignupDocument as ln, SlideshowComponentSlideSettings as lo, SCreateContentPillarDocument as lr, RichTextBlock as ls, TagSortKeys as lt, SFormCreateMultipleUtmTrackingLinkDocuments as m, ResumeDocument as ma, SCreateCategoryDocument as mi, QueryStrapiSearchMondayWorkspaces as mn, SliderBreakpoint as mo, QueryStrapiCommentsFlat as mr, ComponentSharedLink as ms, SConnectManyEntityRelationIn as mt, isValidationSuccess as n, TeamworkResponseMeta as na, SCreateClientMediaPlatformDocument as ni, SCreateResumeInfo as nn, UtmSourceKey as no, QueryStrapiSearchGCFlyTourSnaps as nr, MetaSocial as ns, QueryStrapiSearchTeamMembers as nt, isStrapiStandardError as o, PolicyPageDocument as oa, QuerySortClientContentPillars as oi, SUpdateResumeInfoRequest as on, SlideContent as oo, ContentPillarSortKeys as or, ComponentSharedQuestionAnswer as os, SCreateTagDocument as ot, SCreateUtmTrackingLinkParts as p, UrlRedirectStatusCode as pa, QueryStrapiSearchCategories as pi, QuerySortMondayWorkspaces as pn, ComponentSliderSettings as po, QuerySortStrapiComments as pr, SharedButton as ps, SConnectManyEntityRelation as pt, UrlRedirectSortKeys as q, TeamMemberDocument as qa, TeamworkProjectTaskStat as qi, QueryStrapiPaginated as qn, BlockButtonGroup as qo, QuerySortClientProjects as qr, ClientEntityKey as qs, VStringPhoneNullable as qt, omitUndefined as r, TeamworkResponseMetaPagination as ra, SUpdateClientMediaPlatformDocument as ri, SCreateResumeInfoDocument as rn, ComponentSlideshow as ro, SCreateGCFlyTourSnapDocument as rr, MetaSocialNetwork as rs, TeamMemberSortKeys as rt, datePlusDays as s, LandingPageDocument as sa, QueryStrapiSearchClientContentPillars as si, checkIsValidUrlList as sn, SlideType as so, QuerySortContentPillars as sr, SharedQuestionAnswer as ss, SUpdateTagDocument as st, isValidationFailure as t, TeamworkRelatedMeta as ta, QueryStrapiSearchClientMediaPlatforms as ti, SCreateResume as tn, UtmOption as to, QuerySortGCFlyTourSnaps as tr, ComponentSeoMeta as ts, QuerySortTeamMembers as tt, QueryStrapiSearchUtmTrackingLinks as u, BlogPageDocument as ua, SUpdateClientContentPillarDocumentRequest as ui, SUpdateNewsletterSignupDocument as un, ComponentSlideshowSettings as uo, SUpdateContentPillarDocument as ur, RichTextBlockChildren as us, SCreateMultipleStrapiMediaUploadDocument as ut, UtmTrackingLinkSortKeys as v, CommentReportDocument as va, QuerySortBlogPosts as vi, MediaPlatformSortKeys as vn, ComponentFormSelect as vo, SReportCommentDocument as vr, StrapiAttributeErrorResponse as vs, SDisconnectManyEntityRelationIn as vt, QueryStrapiUsers as w, MondayWorkspaceDocument as wa, Permissions as wi, MediaCreativeFormatSortKeys as wn, BrandStyleguideFont as wo, SCreateClientDocument as wr, StrapiResponseMeta as ws, SEntityRelationPositionAfter as wt, SUtmLinkBuilderTableForm as x, ClientDocument as xa, canAssignPermission as xi, SCreateMediaPlatformDocument as xn, ComponentFormDownload as xo, ClientSortKeys as xr, StrapiErrorResult as xs, SEntityRelation as xt, SUtmLinkBuilderPartCampaignDateOptions as y, ClientContentPillarDocument as ya, QueryStrapiSearchBlogPosts as yi, QuerySortMediaPlatforms as yn, FormSelect as yo, SUpdateCommentDocument as yr, StrapiErrorDetail as ys, SDisconnectOneEntityRelation as yt, SReadUserAccountById as z, ClientReportDocument as za, TeamworkProjectsResponse as zi, EntitySortKeys as zn, BlockVideoEmbed as zo, SUpdateClientStyleguideDocumentRequest as zr, StrapiLinkType as zs, VStringEmail as zt };
4155
- //# sourceMappingURL=index-DOvLpG51.d.mts.map
6367
+ export { TeamworkProjectHealthSelectSortOptions as $, SlideshowComponentSlideSettings as $a, CareersPageDocument as $i, SCreateContentPillarDocument as $n, RichTextBlock as $o, SUpdateClientContentPillarDocument as $r, QuerySortEntities as $t, SAuthRawAccessToken as A, ClientProjectDocument as Aa, TeamworkResponseMetaProjectStats as Ai, VStringMinMaxRegex as An, ComponentBlockVideo as Ao, ClientReportSortKeys as Ar, StrapiTextColorOptions as As, SUpdateMondayWorkspaceDocumentRequest as At, SUpdateUserAccount as B, TrendDocument as Ba, TeamworkCustomField as Bi, SConnectManyEntityRelation as Bn, ComponentBlockBrandLogos as Bo, SCreateClientProjectDocument as Br, SCreateMediaCreativeFormatDocument as Bt, QuerySortUsers as C, UtmTrackingLinkDocument as Ca, TeamworkTaskResponseMeta as Ci, VString as Cn, ComponentBlockPullQuote as Co, SVerifyClientUserDocument as Cr, StrapiGapSizes as Cs, SUpdateNewsletterSignupDocument as Ct, UserSortKeys as D, PermissionDocument as Da, TeamworkProjectResponse as Di, VStringMax as Dn, BlockFullscreenContentType as Do, SCreateClientStyleguideDocument as Dr, StrapiLinkRel as Ds, QueryStrapiSearchMondayWorkspaces as Dt, SCreateUserDocument as E, RoleType as Ea, TeamworkProject as Ei, VStringLongNullable as En, BlockFullscreenContent as Eo, QueryStrapiSearchClientStyleguide as Er, StrapiLinkReferrerPolicy as Es, QuerySortMondayWorkspaces as Et, SRequestConfirmEmail as F, BlogPostBlock as Fa, TeamworkTagsResponse as Fi, VStringSlug as Fn, BlockContact as Fo, SUpdateClientReportDocumentRequest as Fr, CLIENT_ENTITY_SCOPES as Fs, SUpdateMediaPlatformDocument as Ft, QueryStrapiPaginatedUrlRedirects as G, UtmOption as Ga, TeamworkRelatedMeta as Gi, SSetManyEntityRelation as Gn, ComponentSeoMeta as Go, QueryStrapiSearchClientMediaPlatforms as Gr, QueryStrapiSearchMediaContentTypes as Gt, SUpdateUserAccountLastName as H, CategoryDocument as Ha, TeamworkCompany as Hi, SDisconnectManyEntityRelation as Hn, ComponentBlockAnnouncementBar as Ho, SUpdateClientProjectDocumentRequest as Hr, SUpdateMediaCreativeFormatDocumentRequest as Ht, SResetUserPassword as I, BlogPostDocument as Ia, TeamworkProjectUpdate as Ii, VStringUrl as In, ComponentBlockContact as Io, ClientProjectSortKeys as Ir, ClientEntityActions as Is, SUpdateMediaPlatformDocumentRequest as It, SUpdateTrendsLikes as J, Slideshow as Ja, UtmMetaPageDocument as Ji, VRelationManyQuery as Jn, OpenGraph as Jo, SUpdateClientMediaPlatformDocumentRequest as Jr, SUpdateMediaContentTypeDocumentRequest as Jt, QueryStrapiUrlRedirectsByFrom as K, UtmSourceKey as Ka, TeamworkResponseMeta as Ki, SSetOneEntityRelation as Kn, MetaSocial as Ko, SCreateClientMediaPlatformDocument as Kr, SCreateMediaContentTypeDocument as Kt, SUserToken as L, TeamMemberDocument as La, TeamworkProjectTaskStat as Li, VStringUrlNoUtm as Ln, BlockButtonGroup as Lo, QuerySortClientProjects as Lr, ClientEntityKey as Ls, MediaCreativeFormatSortKeys as Lt, SForgotUserPassword as M, MediaPlatformDocument as Ma, TeamworkTag as Mi, VStringPhoneNullable as Mn, ComponentBlockFaq as Mo, QueryStrapiSearchClientReports as Mr, BaseDocument as Ms, QuerySortMediaPlatforms as Mt, SLoginUser as N, MediaContentTypeDocument as Na, TeamworkTagResponse as Ni, VStringShort as Nn, BlockCtaLink as No, SCreateClientReportDocument as Nr, CLIENT_ENTITY_KEYS as Ns, QueryStrapiSearchMediaPlatforms as Nt, SAuthConnectProviderConfirmation as O, ClientStyleguideDocument as Oa, TeamworkProjectResponseMeta as Oi, VStringMaxRegex as On, ComponentBlockFullscreenContent as Oo, SUpdateClientStyleguideDocument as Or, StrapiLinkTarget as Os, SCreateMondayWorkspaceDocument as Ot, SRegisterUser as P, MediaCreativeFormatDocument as Pa, TeamworkTagResponseMeta as Pi, VStringShortNullable as Pn, ComponentBlockCtaLink as Po, SUpdateClientReportDocument as Pr, CLIENT_ENTITY_PERMISSIONS as Ps, SCreateMediaPlatformDocument as Pt, TeamworkProjectHealthProjectStatusOptions as Q, SlideshowComponentProps as Qa, FAQPageDocument as Qi, QueryStrapiSearchContentPillars as Qn, ComponentSharedRichTextBlock as Qo, SCreateClientContentPillarDocument as Qr, EntitySortKeys as Qt, SReadUserAccountByDocumentId as R, TeamMemberGroup as Ra, TeamworkProjectCustomField as Ri, VStringUrlNullable as Rn, ComponentBlockButtonGroup as Ro, QueryStrapiSearchClientProjects as Rr, ClientEntityScope as Rs, QuerySortMediaCreativeFormat as Rt, SUtmLinkBuilderTableFormInput as S, UserDocument as Sa, TeamworkTaskResponse as Si, VSize as Sn, BlockPullQuote as So, SUpdateClientUserDocumentRequest as Sr, StrapiDirection as Ss, SCreateNewsletterSignupDocument as St, QueryStrapiUsersByIdentifier as T, RoleDocument as Ta, TeamworkTasksResponse as Ti, VStringLong as Tn, ComponentBlockGraphicImage as To, QuerySortClientStyleguides as Tr, StrapiIconPosition as Ts, MondayWorkspaceSortKeys as Tt, SUpdateUserAccountPreferredName as U, ComponentUtmOption as Ua, TeamworkActivePages as Ui, SDisconnectOneEntityRelation as Un, ComponentMetaSocial as Uo, ClientMediaPlatformSortKeys as Ur, MediaContentTypeSortKeys as Ut, SUpdateUserAccountFirstName as V, TagDocument as Va, TeamworkCurrency as Vi, SConnectOneEntityRelation as Vn, BlockAnnouncementBar as Vo, SUpdateClientProjectDocument as Vr, SUpdateMediaCreativeFormatDocument as Vt, QuerySortUrlRedirects as W, UtmClassificationKey as Wa, TeamworkLockdown as Wi, SEntityRelation as Wn, ComponentOpenGraph as Wo, QuerySortClientMediaPlatforms as Wr, QuerySortMediaContentType as Wt, QueryStrapiSearchTeamworkProjectHealth as X, SlideContent as Xa, PolicyPageDocument as Xi, ContentPillarSortKeys as Xn, ComponentSharedQuestionAnswer as Xo, QuerySortClientContentPillars as Xr, SUpdateLeadDocument as Xt, QuerySortTeamworkProjectHealth as Y, ComponentSlideContent as Ya, TeamPageDocument as Yi, VRelationOne as Yn, SeoMeta as Yo, ClientContentPillarSortKeys as Yr, SCreateLeadDocument as Yt, TeamworkProjectHealthProjectStatus as Z, SlideType as Za, LandingPageDocument as Zi, QuerySortContentPillars as Zn, SharedQuestionAnswer as Zo, QueryStrapiSearchClientContentPillars as Zr, SUpdateLeadRequest as Zt, SUpdateUtmTrackingLinkDocumentRequest as _, ClientUserDocument as _a, TeamworkTasklistResponse as _i, SUpdateGCFlyTourSnapDocument as _n, ComponentBrandStyleguideColor as _o, ClientUserSortKeys as _r, MediaFormat as _s, SUpdateResumeInfo as _t, isStrapiAttributeError as a, NewsletterSignupDocument as aa, SUpdateCategoryDocument as ai, QueryStrapiBySlug as an, SliderOrigin as ao, QueryStrapiCommentsInHeirarchy as ar, SharedLink as as, QueryStrapiSearchTags as at, SUtmLinkBuilderPartCampaignDateValue as b, UserAuthorizationLoginResponse as ba, TeamworkTask as bi, VNumberNullable as bn, BlockSectionTitle as bo, SQueryListClientUserDocuments as br, FormSelectInputOption as bs, checkIsValidUrlList as bt, dateToday as c, CommentReportDocument as ca, QuerySortBlogPosts as ci, QuerySortGCFlyTours as cn, ComponentFormSelect as co, SReportCommentDocument as cr, StrapiAttributeErrorResponse as cs, SUpdateTagDocumentRequest as ct, SCreateUtmTrackingLinkDocument as d, ClientDocument as da, canAssignPermission as di, SUpdateGCFlyTourDocument as dn, ComponentFormDownload as do, ClientSortKeys as dr, StrapiErrorResult as ds, SCreateStrapiMediaUploadDocument as dt, BlogPageDocument as ea, SUpdateClientContentPillarDocumentRequest as ei, QueryStrapiByDocumentId as en, ComponentSlideshowSettings as eo, SUpdateContentPillarDocument as er, RichTextBlockChildren as es, TeamworkProjectHealthSortKey as et, SCreateUtmTrackingLinkDocumentRequest as f, ProductHighlightDocument as fa, hasPermission as fi, SUpdateGCFlyTourDocumentRequest as fn, FormDownload as fo, QuerySortClients as fr, StrapiListResponse as fs, SUpdateStrapiMediaFileInfo as ft, SUpdateUtmTrackingLinkDocument as g, GCFlyTourSnapDocument as ga, TeamworkTasklist as gi, SCreateGCFlyTourSnapDocument as gn, BrandStyleguideColor as go, SUpdateClientDocumentRequest as gr, StrapiSingleResponse as gs, SCreateResumeInfoDocument as gt, SReadUtmTrackingLinkDocumentByUrl as h, GCFlyTourDocument as ha, RolesWithPermissions as hi, QueryStrapiSearchGCFlyTourSnaps as hn, ComponentBrandStyleguideFont as ho, SUpdateClientDocument as hr, StrapiResponseMetaWithPagination as hs, SCreateResumeInfo as ht, validateAndClean as i, ResumeDocument as ia, SCreateCategoryDocument as ii, QueryStrapiByPhone as in, SliderBreakpoint as io, QueryStrapiCommentsFlat as ir, ComponentSharedLink as is, QuerySortTags as it, SChangePassword as j, ClientMediaPlatformDocument as ja, TeamworkUserAccount as ji, VStringPhone as jn, BlockFaq as jo, QuerySortClientReports as jr, StrapiThemeOptions as js, MediaPlatformSortKeys as jt, SAuthConnectProviderRedirectSearch as k, ClientReportDocument as ka, TeamworkProjectsResponse as ki, VStringMinMax as kn, BlockVideoEmbed as ko, SUpdateClientStyleguideDocumentRequest as kr, StrapiLinkType as ks, SUpdateMondayWorkspaceDocument as kt, QuerySortUtmTrackingLinks as l, ClientContentPillarDocument as la, QueryStrapiSearchBlogPosts as li, QueryStrapiSearchGCFlyTours as ln, FormSelect as lo, SUpdateCommentDocument as lr, StrapiErrorDetail as ls, TagSortKeys as lt, SFormCreateMultipleUtmTrackingLinkDocuments as m, MondayWorkspaceDocument as ma, Permissions as mi, QuerySortGCFlyTourSnaps as mn, BrandStyleguideFont as mo, SCreateClientDocument as mr, StrapiResponseMeta as ms, SCreateResume as mt, isValidationSuccess as n, UrlRedirectQueryParams as na, QuerySortCategories as ni, QueryStrapiById as nn, SlideshowSettings as no, QueryFilterStrapiComments as nr, ComponentSharedButton as ns, QueryStrapiSearchTeamMembers as nt, isStrapiStandardError as o, LeadDocument as oa, SUpdateCategoryDocumentRequest as oi, QueryStrapiPaginated as on, SliderSettings as oo, SCreateCommentDocument as or, StrapiAttributeErrorDetail as os, SCreateTagDocument as ot, SCreateUtmTrackingLinkParts as p, ProductDocument as pa, LCRUDActions as pi, GCFlyTourSnapSortKeys as pn, FormDownloadKeys as po, QueryStrapiSearchClients as pr, StrapiPagination as ps, SharpSpringSignUpToDownload as pt, UrlRedirectSortKeys as q, ComponentSlideshow as qa, TeamworkResponseMetaPagination as qi, VRelationMany as qn, MetaSocialNetwork as qo, SUpdateClientMediaPlatformDocument as qr, SUpdateMediaContentTypeDocument as qt, omitUndefined as r, UrlRedirectStatusCode as ra, QueryStrapiSearchCategories as ri, QueryStrapiByName as rn, ComponentSliderSettings as ro, QuerySortStrapiComments as rr, SharedButton as rs, TeamMemberSortKeys as rt, datePlusDays as s, CommentDocument as sa, BlogPostSortKeys as si, GCFlyTourSortKeys as sn, SliderSpacing as so, SDeleteCommentDocument as sr, StrapiAttributeErrorKey as ss, SUpdateTagDocument as st, isValidationFailure as t, UrlRedirectDocument as ta, CategorySortKeys as ti, QueryStrapiByEmail as tn, SlideshowMode as to, SUpdateContentPillarDocumentRequest as tr, SharedRichTextBlock as ts, QuerySortTeamMembers as tt, QueryStrapiSearchUtmTrackingLinks as u, ContentPillarDocument as ua, QueryStrapiSearchBlogPostsBySlug as ui, SCreateGCFlyTourDocument as un, FormUID as uo, StrapiCommentSortKeys as ur, StrapiErrorResponse as us, SCreateMultipleStrapiMediaUploadDocument as ut, UtmTrackingLinkSortKeys as v, ClientUserDocumentStatus as va, TeamworkTasklistResponseMeta as vi, SUpdateGCFlyTourSnapDocumentRequest as vn, BlockTextDetails as vo, QuerySortClientUsers as vr, MediaFormats as vs, SUpdateResumeInfoDocument as vt, QueryStrapiUsers as w, UserAccountDocument as wa, TeamworkTaskUserPermissions as wi, VStringEmail as wn, BlockGraphicImage as wo, ClientStyleguideSortKeys as wr, StrapiIconName as ws, SUpdateNewsletterSignupRequest as wt, SUtmLinkBuilderTableForm as x, UserAuthorizationSuccessResponse as xa, TeamworkTaskCard as xi, VPage as xn, ComponentBlockSectionTitle as xo, SUpdateClientUserDocument as xr, StrapiBgColorOptions as xs, SCreateNewsletterSignup as xt, SUtmLinkBuilderPartCampaignDateOptions as y, AuthorizedUserDocument as ya, TeamworkTasklistsResponse as yi, VIntegerNullable as yn, ComponentBlockTextDetails as yo, SCreateClientUserDocument as yr, MediaUploadDocument as ys, SUpdateResumeInfoRequest as yt, SReadUserAccountById as z, TeamMemberTier as za, TeamworkProjectCategory as zi, VStringUrlUtm as zn, BlockBrandLogos as zo, SAssociateClientToClientProjectDocument as zr, ROLE_PERMISSIONS as zs, QueryStrapiSearchMediaCreativeFormats as zt };
6368
+ //# sourceMappingURL=index-CFwPiPyQ.d.mts.map