@dub/utils 0.0.55 → 0.0.57

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.
Files changed (70) hide show
  1. package/dist/chunk-35NWNSTL.mjs +1 -0
  2. package/dist/chunk-3KJ5I4QF.mjs +1 -0
  3. package/dist/chunk-4FMZVUIO.mjs +1 -0
  4. package/dist/chunk-4GPIEIFY.mjs +1 -0
  5. package/dist/chunk-4MJX7IOB.mjs +1 -0
  6. package/dist/chunk-4TUX6MK6.mjs +1 -0
  7. package/dist/chunk-5E2HITKT.mjs +1 -0
  8. package/dist/chunk-5V7YLKIH.mjs +1 -0
  9. package/dist/chunk-6KV3ZVLY.mjs +1 -0
  10. package/dist/chunk-6LYVCDDA.mjs +1 -0
  11. package/dist/chunk-7G5JACWK.mjs +1 -0
  12. package/dist/chunk-AEBQG7VC.mjs +1 -0
  13. package/dist/chunk-B6ZWD34T.mjs +1 -0
  14. package/dist/chunk-BIAOSXOV.mjs +1 -0
  15. package/dist/chunk-C7PDZAH5.mjs +1 -0
  16. package/dist/chunk-DPAABCZN.mjs +1 -0
  17. package/dist/chunk-DVBSGX2A.mjs +1 -0
  18. package/dist/chunk-E4DJH5GI.mjs +1 -0
  19. package/dist/chunk-EMVAHV6G.mjs +1 -0
  20. package/dist/chunk-EMVHFBPS.mjs +1 -0
  21. package/dist/chunk-FLUSGC64.mjs +1 -0
  22. package/dist/chunk-FSVB2TLD.mjs +1 -0
  23. package/dist/chunk-HJD7AJT4.mjs +1 -0
  24. package/dist/chunk-IFII45NU.mjs +1 -0
  25. package/dist/chunk-JEI3GLN5.mjs +1 -0
  26. package/dist/chunk-JHZRPO2H.mjs +1 -0
  27. package/dist/chunk-JPZ34YOA.mjs +1 -0
  28. package/dist/chunk-KF2VKRCV.mjs +1 -0
  29. package/dist/chunk-KXB73SGH.mjs +1 -0
  30. package/dist/chunk-LESW6Q7W.mjs +1 -0
  31. package/dist/chunk-M4W5JKE7.mjs +1 -0
  32. package/dist/chunk-MOIMYJIR.mjs +1 -0
  33. package/dist/chunk-QG3NE5R7.mjs +1 -0
  34. package/dist/chunk-QY7YSEM3.mjs +1 -0
  35. package/dist/chunk-SAADXQ7J.mjs +1 -0
  36. package/dist/chunk-SMGTYYEE.mjs +1 -0
  37. package/dist/chunk-UNFNF34U.mjs +1 -0
  38. package/dist/chunk-V3KOEHBP.mjs +1 -0
  39. package/dist/chunk-VILV3TRG.mjs +1 -0
  40. package/dist/chunk-VLXTUOBN.mjs +1 -0
  41. package/dist/chunk-VVJBZVWF.mjs +1 -0
  42. package/dist/chunk-WRUSDWOK.mjs +1 -0
  43. package/dist/chunk-Y62KI7FV.mjs +1 -0
  44. package/dist/chunk-Z2FYRYAY.mjs +1 -0
  45. package/dist/chunk-ZCRSVKUE.mjs +1 -0
  46. package/dist/chunk-ZQYT2BIU.mjs +1 -0
  47. package/dist/combine-words-86574189.d.ts +3 -0
  48. package/dist/constants/dub-domains.d.ts +29 -0
  49. package/dist/constants/dub-domains.mjs +1 -0
  50. package/dist/constants/index.d.ts +4 -1214
  51. package/dist/constants/index.mjs +1 -1
  52. package/dist/constants/layout.mjs +1 -1
  53. package/dist/constants/main.d.ts +17 -0
  54. package/dist/constants/main.mjs +1 -0
  55. package/dist/constants/misc.d.ts +2 -1
  56. package/dist/constants/misc.mjs +1 -1
  57. package/dist/functions/combine-words.d.ts +3 -0
  58. package/dist/functions/combine-words.mjs +1 -0
  59. package/dist/functions/construct-metadata.mjs +1 -1
  60. package/dist/functions/domains.mjs +1 -1
  61. package/dist/functions/index.d.ts +1 -0
  62. package/dist/functions/index.mjs +1 -1
  63. package/dist/functions/link-constructor.mjs +1 -1
  64. package/dist/index.d.ts +13 -10
  65. package/dist/index.mjs +1 -1
  66. package/dist/pricing-8f8e416e.d.ts +1364 -0
  67. package/dist/pricing-ad2f41cb.d.ts +1279 -0
  68. package/dist/pricing-d6093c7b.d.ts +1312 -0
  69. package/dist/pricing-fa9a3919.d.ts +1364 -0
  70. package/package.json +3 -3
@@ -0,0 +1,1312 @@
1
+ declare const PLANS: ({
2
+ name: string;
3
+ tagline: string;
4
+ price: {
5
+ monthly: number;
6
+ yearly: number;
7
+ ids?: undefined;
8
+ };
9
+ limits: {
10
+ links: number;
11
+ clicks: number;
12
+ domains: number;
13
+ tags: number;
14
+ users: number;
15
+ ai: number;
16
+ api: number;
17
+ };
18
+ colors: {
19
+ bg: string;
20
+ text: string;
21
+ };
22
+ cta: {
23
+ text: string;
24
+ href: string;
25
+ color: string;
26
+ shortText?: undefined;
27
+ };
28
+ featureTitle: string;
29
+ features: ({
30
+ text: string;
31
+ footnote?: undefined;
32
+ } | {
33
+ text: string;
34
+ footnote: string;
35
+ } | {
36
+ text: string;
37
+ footnote: {
38
+ title: string;
39
+ cta: string;
40
+ href: string;
41
+ };
42
+ })[];
43
+ link?: undefined;
44
+ } | {
45
+ name: string;
46
+ tagline: string;
47
+ link: string;
48
+ price: {
49
+ monthly: number;
50
+ yearly: number;
51
+ ids: string[];
52
+ };
53
+ limits: {
54
+ links: number;
55
+ clicks: number;
56
+ domains: number;
57
+ tags: number;
58
+ users: number;
59
+ ai: number;
60
+ api: number;
61
+ };
62
+ colors: {
63
+ bg: string;
64
+ text: string;
65
+ };
66
+ cta: {
67
+ text: string;
68
+ shortText: string;
69
+ href: string;
70
+ color: string;
71
+ };
72
+ featureTitle: string;
73
+ features: ({
74
+ text: string;
75
+ footnote?: undefined;
76
+ } | {
77
+ text: string;
78
+ footnote: {
79
+ title: string;
80
+ cta: string;
81
+ href: string;
82
+ };
83
+ } | {
84
+ text: string;
85
+ footnote: string;
86
+ })[];
87
+ } | {
88
+ name: string;
89
+ tagline: string;
90
+ link: string;
91
+ price: {
92
+ monthly: null;
93
+ yearly: null;
94
+ ids?: undefined;
95
+ };
96
+ limits: {
97
+ links: number;
98
+ clicks: number;
99
+ domains: number;
100
+ tags: number;
101
+ users: number;
102
+ ai: number;
103
+ api: number;
104
+ };
105
+ colors: {
106
+ bg: string;
107
+ text: string;
108
+ };
109
+ cta: {
110
+ text: string;
111
+ href: string;
112
+ color: string;
113
+ shortText?: undefined;
114
+ };
115
+ featureTitle: string;
116
+ features: {
117
+ text: string;
118
+ }[];
119
+ })[];
120
+ declare const FREE_PLAN: {
121
+ name: string;
122
+ tagline: string;
123
+ price: {
124
+ monthly: number;
125
+ yearly: number;
126
+ ids?: undefined;
127
+ };
128
+ limits: {
129
+ links: number;
130
+ clicks: number;
131
+ domains: number;
132
+ tags: number;
133
+ users: number;
134
+ ai: number;
135
+ api: number;
136
+ };
137
+ colors: {
138
+ bg: string;
139
+ text: string;
140
+ };
141
+ cta: {
142
+ text: string;
143
+ href: string;
144
+ color: string;
145
+ shortText?: undefined;
146
+ };
147
+ featureTitle: string;
148
+ features: ({
149
+ text: string;
150
+ footnote?: undefined;
151
+ } | {
152
+ text: string;
153
+ footnote: string;
154
+ } | {
155
+ text: string;
156
+ footnote: {
157
+ title: string;
158
+ cta: string;
159
+ href: string;
160
+ };
161
+ })[];
162
+ link?: undefined;
163
+ } | {
164
+ name: string;
165
+ tagline: string;
166
+ link: string;
167
+ price: {
168
+ monthly: number;
169
+ yearly: number;
170
+ ids: string[];
171
+ };
172
+ limits: {
173
+ links: number;
174
+ clicks: number;
175
+ domains: number;
176
+ tags: number;
177
+ users: number;
178
+ ai: number;
179
+ api: number;
180
+ };
181
+ colors: {
182
+ bg: string;
183
+ text: string;
184
+ };
185
+ cta: {
186
+ text: string;
187
+ shortText: string;
188
+ href: string;
189
+ color: string;
190
+ };
191
+ featureTitle: string;
192
+ features: ({
193
+ text: string;
194
+ footnote?: undefined;
195
+ } | {
196
+ text: string;
197
+ footnote: {
198
+ title: string;
199
+ cta: string;
200
+ href: string;
201
+ };
202
+ } | {
203
+ text: string;
204
+ footnote: string;
205
+ })[];
206
+ } | {
207
+ name: string;
208
+ tagline: string;
209
+ link: string;
210
+ price: {
211
+ monthly: null;
212
+ yearly: null;
213
+ ids?: undefined;
214
+ };
215
+ limits: {
216
+ links: number;
217
+ clicks: number;
218
+ domains: number;
219
+ tags: number;
220
+ users: number;
221
+ ai: number;
222
+ api: number;
223
+ };
224
+ colors: {
225
+ bg: string;
226
+ text: string;
227
+ };
228
+ cta: {
229
+ text: string;
230
+ href: string;
231
+ color: string;
232
+ shortText?: undefined;
233
+ };
234
+ featureTitle: string;
235
+ features: {
236
+ text: string;
237
+ }[];
238
+ };
239
+ declare const PRO_PLAN: {
240
+ name: string;
241
+ tagline: string;
242
+ price: {
243
+ monthly: number;
244
+ yearly: number;
245
+ ids?: undefined;
246
+ };
247
+ limits: {
248
+ links: number;
249
+ clicks: number;
250
+ domains: number;
251
+ tags: number;
252
+ users: number;
253
+ ai: number;
254
+ api: number;
255
+ };
256
+ colors: {
257
+ bg: string;
258
+ text: string;
259
+ };
260
+ cta: {
261
+ text: string;
262
+ href: string;
263
+ color: string;
264
+ shortText?: undefined;
265
+ };
266
+ featureTitle: string;
267
+ features: ({
268
+ text: string;
269
+ footnote?: undefined;
270
+ } | {
271
+ text: string;
272
+ footnote: string;
273
+ } | {
274
+ text: string;
275
+ footnote: {
276
+ title: string;
277
+ cta: string;
278
+ href: string;
279
+ };
280
+ })[];
281
+ link?: undefined;
282
+ } | {
283
+ name: string;
284
+ tagline: string;
285
+ link: string;
286
+ price: {
287
+ monthly: number;
288
+ yearly: number;
289
+ ids: string[];
290
+ };
291
+ limits: {
292
+ links: number;
293
+ clicks: number;
294
+ domains: number;
295
+ tags: number;
296
+ users: number;
297
+ ai: number;
298
+ api: number;
299
+ };
300
+ colors: {
301
+ bg: string;
302
+ text: string;
303
+ };
304
+ cta: {
305
+ text: string;
306
+ shortText: string;
307
+ href: string;
308
+ color: string;
309
+ };
310
+ featureTitle: string;
311
+ features: ({
312
+ text: string;
313
+ footnote?: undefined;
314
+ } | {
315
+ text: string;
316
+ footnote: {
317
+ title: string;
318
+ cta: string;
319
+ href: string;
320
+ };
321
+ } | {
322
+ text: string;
323
+ footnote: string;
324
+ })[];
325
+ } | {
326
+ name: string;
327
+ tagline: string;
328
+ link: string;
329
+ price: {
330
+ monthly: null;
331
+ yearly: null;
332
+ ids?: undefined;
333
+ };
334
+ limits: {
335
+ links: number;
336
+ clicks: number;
337
+ domains: number;
338
+ tags: number;
339
+ users: number;
340
+ ai: number;
341
+ api: number;
342
+ };
343
+ colors: {
344
+ bg: string;
345
+ text: string;
346
+ };
347
+ cta: {
348
+ text: string;
349
+ href: string;
350
+ color: string;
351
+ shortText?: undefined;
352
+ };
353
+ featureTitle: string;
354
+ features: {
355
+ text: string;
356
+ }[];
357
+ };
358
+ declare const BUSINESS_PLAN: {
359
+ name: string;
360
+ tagline: string;
361
+ price: {
362
+ monthly: number;
363
+ yearly: number;
364
+ ids?: undefined;
365
+ };
366
+ limits: {
367
+ links: number;
368
+ clicks: number;
369
+ domains: number;
370
+ tags: number;
371
+ users: number;
372
+ ai: number;
373
+ api: number;
374
+ };
375
+ colors: {
376
+ bg: string;
377
+ text: string;
378
+ };
379
+ cta: {
380
+ text: string;
381
+ href: string;
382
+ color: string;
383
+ shortText?: undefined;
384
+ };
385
+ featureTitle: string;
386
+ features: ({
387
+ text: string;
388
+ footnote?: undefined;
389
+ } | {
390
+ text: string;
391
+ footnote: string;
392
+ } | {
393
+ text: string;
394
+ footnote: {
395
+ title: string;
396
+ cta: string;
397
+ href: string;
398
+ };
399
+ })[];
400
+ link?: undefined;
401
+ } | {
402
+ name: string;
403
+ tagline: string;
404
+ link: string;
405
+ price: {
406
+ monthly: number;
407
+ yearly: number;
408
+ ids: string[];
409
+ };
410
+ limits: {
411
+ links: number;
412
+ clicks: number;
413
+ domains: number;
414
+ tags: number;
415
+ users: number;
416
+ ai: number;
417
+ api: number;
418
+ };
419
+ colors: {
420
+ bg: string;
421
+ text: string;
422
+ };
423
+ cta: {
424
+ text: string;
425
+ shortText: string;
426
+ href: string;
427
+ color: string;
428
+ };
429
+ featureTitle: string;
430
+ features: ({
431
+ text: string;
432
+ footnote?: undefined;
433
+ } | {
434
+ text: string;
435
+ footnote: {
436
+ title: string;
437
+ cta: string;
438
+ href: string;
439
+ };
440
+ } | {
441
+ text: string;
442
+ footnote: string;
443
+ })[];
444
+ } | {
445
+ name: string;
446
+ tagline: string;
447
+ link: string;
448
+ price: {
449
+ monthly: null;
450
+ yearly: null;
451
+ ids?: undefined;
452
+ };
453
+ limits: {
454
+ links: number;
455
+ clicks: number;
456
+ domains: number;
457
+ tags: number;
458
+ users: number;
459
+ ai: number;
460
+ api: number;
461
+ };
462
+ colors: {
463
+ bg: string;
464
+ text: string;
465
+ };
466
+ cta: {
467
+ text: string;
468
+ href: string;
469
+ color: string;
470
+ shortText?: undefined;
471
+ };
472
+ featureTitle: string;
473
+ features: {
474
+ text: string;
475
+ }[];
476
+ };
477
+ declare const ENTERPRISE_PLAN: {
478
+ name: string;
479
+ tagline: string;
480
+ price: {
481
+ monthly: number;
482
+ yearly: number;
483
+ ids?: undefined;
484
+ };
485
+ limits: {
486
+ links: number;
487
+ clicks: number;
488
+ domains: number;
489
+ tags: number;
490
+ users: number;
491
+ ai: number;
492
+ api: number;
493
+ };
494
+ colors: {
495
+ bg: string;
496
+ text: string;
497
+ };
498
+ cta: {
499
+ text: string;
500
+ href: string;
501
+ color: string;
502
+ shortText?: undefined;
503
+ };
504
+ featureTitle: string;
505
+ features: ({
506
+ text: string;
507
+ footnote?: undefined;
508
+ } | {
509
+ text: string;
510
+ footnote: string;
511
+ } | {
512
+ text: string;
513
+ footnote: {
514
+ title: string;
515
+ cta: string;
516
+ href: string;
517
+ };
518
+ })[];
519
+ link?: undefined;
520
+ } | {
521
+ name: string;
522
+ tagline: string;
523
+ link: string;
524
+ price: {
525
+ monthly: number;
526
+ yearly: number;
527
+ ids: string[];
528
+ };
529
+ limits: {
530
+ links: number;
531
+ clicks: number;
532
+ domains: number;
533
+ tags: number;
534
+ users: number;
535
+ ai: number;
536
+ api: number;
537
+ };
538
+ colors: {
539
+ bg: string;
540
+ text: string;
541
+ };
542
+ cta: {
543
+ text: string;
544
+ shortText: string;
545
+ href: string;
546
+ color: string;
547
+ };
548
+ featureTitle: string;
549
+ features: ({
550
+ text: string;
551
+ footnote?: undefined;
552
+ } | {
553
+ text: string;
554
+ footnote: {
555
+ title: string;
556
+ cta: string;
557
+ href: string;
558
+ };
559
+ } | {
560
+ text: string;
561
+ footnote: string;
562
+ })[];
563
+ } | {
564
+ name: string;
565
+ tagline: string;
566
+ link: string;
567
+ price: {
568
+ monthly: null;
569
+ yearly: null;
570
+ ids?: undefined;
571
+ };
572
+ limits: {
573
+ links: number;
574
+ clicks: number;
575
+ domains: number;
576
+ tags: number;
577
+ users: number;
578
+ ai: number;
579
+ api: number;
580
+ };
581
+ colors: {
582
+ bg: string;
583
+ text: string;
584
+ };
585
+ cta: {
586
+ text: string;
587
+ href: string;
588
+ color: string;
589
+ shortText?: undefined;
590
+ };
591
+ featureTitle: string;
592
+ features: {
593
+ text: string;
594
+ }[];
595
+ };
596
+ declare const PUBLIC_PLANS: ({
597
+ name: string;
598
+ tagline: string;
599
+ price: {
600
+ monthly: number;
601
+ yearly: number;
602
+ ids?: undefined;
603
+ };
604
+ limits: {
605
+ links: number;
606
+ clicks: number;
607
+ domains: number;
608
+ tags: number;
609
+ users: number;
610
+ ai: number;
611
+ api: number;
612
+ };
613
+ colors: {
614
+ bg: string;
615
+ text: string;
616
+ };
617
+ cta: {
618
+ text: string;
619
+ href: string;
620
+ color: string;
621
+ shortText?: undefined;
622
+ };
623
+ featureTitle: string;
624
+ features: ({
625
+ text: string;
626
+ footnote?: undefined;
627
+ } | {
628
+ text: string;
629
+ footnote: string;
630
+ } | {
631
+ text: string;
632
+ footnote: {
633
+ title: string;
634
+ cta: string;
635
+ href: string;
636
+ };
637
+ })[];
638
+ link?: undefined;
639
+ } | {
640
+ name: string;
641
+ tagline: string;
642
+ link: string;
643
+ price: {
644
+ monthly: number;
645
+ yearly: number;
646
+ ids: string[];
647
+ };
648
+ limits: {
649
+ links: number;
650
+ clicks: number;
651
+ domains: number;
652
+ tags: number;
653
+ users: number;
654
+ ai: number;
655
+ api: number;
656
+ };
657
+ colors: {
658
+ bg: string;
659
+ text: string;
660
+ };
661
+ cta: {
662
+ text: string;
663
+ shortText: string;
664
+ href: string;
665
+ color: string;
666
+ };
667
+ featureTitle: string;
668
+ features: ({
669
+ text: string;
670
+ footnote?: undefined;
671
+ } | {
672
+ text: string;
673
+ footnote: {
674
+ title: string;
675
+ cta: string;
676
+ href: string;
677
+ };
678
+ } | {
679
+ text: string;
680
+ footnote: string;
681
+ })[];
682
+ } | {
683
+ name: string;
684
+ tagline: string;
685
+ link: string;
686
+ price: {
687
+ monthly: null;
688
+ yearly: null;
689
+ ids?: undefined;
690
+ };
691
+ limits: {
692
+ links: number;
693
+ clicks: number;
694
+ domains: number;
695
+ tags: number;
696
+ users: number;
697
+ ai: number;
698
+ api: number;
699
+ };
700
+ colors: {
701
+ bg: string;
702
+ text: string;
703
+ };
704
+ cta: {
705
+ text: string;
706
+ href: string;
707
+ color: string;
708
+ shortText?: undefined;
709
+ };
710
+ featureTitle: string;
711
+ features: {
712
+ text: string;
713
+ }[];
714
+ })[];
715
+ declare const SELF_SERVE_PAID_PLANS: ({
716
+ name: string;
717
+ tagline: string;
718
+ price: {
719
+ monthly: number;
720
+ yearly: number;
721
+ ids?: undefined;
722
+ };
723
+ limits: {
724
+ links: number;
725
+ clicks: number;
726
+ domains: number;
727
+ tags: number;
728
+ users: number;
729
+ ai: number;
730
+ api: number;
731
+ };
732
+ colors: {
733
+ bg: string;
734
+ text: string;
735
+ };
736
+ cta: {
737
+ text: string;
738
+ href: string;
739
+ color: string;
740
+ shortText?: undefined;
741
+ };
742
+ featureTitle: string;
743
+ features: ({
744
+ text: string;
745
+ footnote?: undefined;
746
+ } | {
747
+ text: string;
748
+ footnote: string;
749
+ } | {
750
+ text: string;
751
+ footnote: {
752
+ title: string;
753
+ cta: string;
754
+ href: string;
755
+ };
756
+ })[];
757
+ link?: undefined;
758
+ } | {
759
+ name: string;
760
+ tagline: string;
761
+ link: string;
762
+ price: {
763
+ monthly: number;
764
+ yearly: number;
765
+ ids: string[];
766
+ };
767
+ limits: {
768
+ links: number;
769
+ clicks: number;
770
+ domains: number;
771
+ tags: number;
772
+ users: number;
773
+ ai: number;
774
+ api: number;
775
+ };
776
+ colors: {
777
+ bg: string;
778
+ text: string;
779
+ };
780
+ cta: {
781
+ text: string;
782
+ shortText: string;
783
+ href: string;
784
+ color: string;
785
+ };
786
+ featureTitle: string;
787
+ features: ({
788
+ text: string;
789
+ footnote?: undefined;
790
+ } | {
791
+ text: string;
792
+ footnote: {
793
+ title: string;
794
+ cta: string;
795
+ href: string;
796
+ };
797
+ } | {
798
+ text: string;
799
+ footnote: string;
800
+ })[];
801
+ } | {
802
+ name: string;
803
+ tagline: string;
804
+ link: string;
805
+ price: {
806
+ monthly: null;
807
+ yearly: null;
808
+ ids?: undefined;
809
+ };
810
+ limits: {
811
+ links: number;
812
+ clicks: number;
813
+ domains: number;
814
+ tags: number;
815
+ users: number;
816
+ ai: number;
817
+ api: number;
818
+ };
819
+ colors: {
820
+ bg: string;
821
+ text: string;
822
+ };
823
+ cta: {
824
+ text: string;
825
+ href: string;
826
+ color: string;
827
+ shortText?: undefined;
828
+ };
829
+ featureTitle: string;
830
+ features: {
831
+ text: string;
832
+ }[];
833
+ })[];
834
+ declare const FREE_WORKSPACES_LIMIT = 2;
835
+ declare const getPlanFromPriceId: (priceId: string) => {
836
+ name: string;
837
+ tagline: string;
838
+ price: {
839
+ monthly: number;
840
+ yearly: number;
841
+ ids?: undefined;
842
+ };
843
+ limits: {
844
+ links: number;
845
+ clicks: number;
846
+ domains: number;
847
+ tags: number;
848
+ users: number;
849
+ ai: number;
850
+ api: number;
851
+ };
852
+ colors: {
853
+ bg: string;
854
+ text: string;
855
+ };
856
+ cta: {
857
+ text: string;
858
+ href: string;
859
+ color: string;
860
+ shortText?: undefined;
861
+ };
862
+ featureTitle: string;
863
+ features: ({
864
+ text: string;
865
+ footnote?: undefined;
866
+ } | {
867
+ text: string;
868
+ footnote: string;
869
+ } | {
870
+ text: string;
871
+ footnote: {
872
+ title: string;
873
+ cta: string;
874
+ href: string;
875
+ };
876
+ })[];
877
+ link?: undefined;
878
+ } | {
879
+ name: string;
880
+ tagline: string;
881
+ link: string;
882
+ price: {
883
+ monthly: number;
884
+ yearly: number;
885
+ ids: string[];
886
+ };
887
+ limits: {
888
+ links: number;
889
+ clicks: number;
890
+ domains: number;
891
+ tags: number;
892
+ users: number;
893
+ ai: number;
894
+ api: number;
895
+ };
896
+ colors: {
897
+ bg: string;
898
+ text: string;
899
+ };
900
+ cta: {
901
+ text: string;
902
+ shortText: string;
903
+ href: string;
904
+ color: string;
905
+ };
906
+ featureTitle: string;
907
+ features: ({
908
+ text: string;
909
+ footnote?: undefined;
910
+ } | {
911
+ text: string;
912
+ footnote: {
913
+ title: string;
914
+ cta: string;
915
+ href: string;
916
+ };
917
+ } | {
918
+ text: string;
919
+ footnote: string;
920
+ })[];
921
+ } | {
922
+ name: string;
923
+ tagline: string;
924
+ link: string;
925
+ price: {
926
+ monthly: null;
927
+ yearly: null;
928
+ ids?: undefined;
929
+ };
930
+ limits: {
931
+ links: number;
932
+ clicks: number;
933
+ domains: number;
934
+ tags: number;
935
+ users: number;
936
+ ai: number;
937
+ api: number;
938
+ };
939
+ colors: {
940
+ bg: string;
941
+ text: string;
942
+ };
943
+ cta: {
944
+ text: string;
945
+ href: string;
946
+ color: string;
947
+ shortText?: undefined;
948
+ };
949
+ featureTitle: string;
950
+ features: {
951
+ text: string;
952
+ }[];
953
+ } | null;
954
+ declare const getPlanDetails: (plan: string) => {
955
+ name: string;
956
+ tagline: string;
957
+ price: {
958
+ monthly: number;
959
+ yearly: number;
960
+ ids?: undefined;
961
+ };
962
+ limits: {
963
+ links: number;
964
+ clicks: number;
965
+ domains: number;
966
+ tags: number;
967
+ users: number;
968
+ ai: number;
969
+ api: number;
970
+ };
971
+ colors: {
972
+ bg: string;
973
+ text: string;
974
+ };
975
+ cta: {
976
+ text: string;
977
+ href: string;
978
+ color: string;
979
+ shortText?: undefined;
980
+ };
981
+ featureTitle: string;
982
+ features: ({
983
+ text: string;
984
+ footnote?: undefined;
985
+ } | {
986
+ text: string;
987
+ footnote: string;
988
+ } | {
989
+ text: string;
990
+ footnote: {
991
+ title: string;
992
+ cta: string;
993
+ href: string;
994
+ };
995
+ })[];
996
+ link?: undefined;
997
+ } | {
998
+ name: string;
999
+ tagline: string;
1000
+ link: string;
1001
+ price: {
1002
+ monthly: number;
1003
+ yearly: number;
1004
+ ids: string[];
1005
+ };
1006
+ limits: {
1007
+ links: number;
1008
+ clicks: number;
1009
+ domains: number;
1010
+ tags: number;
1011
+ users: number;
1012
+ ai: number;
1013
+ api: number;
1014
+ };
1015
+ colors: {
1016
+ bg: string;
1017
+ text: string;
1018
+ };
1019
+ cta: {
1020
+ text: string;
1021
+ shortText: string;
1022
+ href: string;
1023
+ color: string;
1024
+ };
1025
+ featureTitle: string;
1026
+ features: ({
1027
+ text: string;
1028
+ footnote?: undefined;
1029
+ } | {
1030
+ text: string;
1031
+ footnote: {
1032
+ title: string;
1033
+ cta: string;
1034
+ href: string;
1035
+ };
1036
+ } | {
1037
+ text: string;
1038
+ footnote: string;
1039
+ })[];
1040
+ } | {
1041
+ name: string;
1042
+ tagline: string;
1043
+ link: string;
1044
+ price: {
1045
+ monthly: null;
1046
+ yearly: null;
1047
+ ids?: undefined;
1048
+ };
1049
+ limits: {
1050
+ links: number;
1051
+ clicks: number;
1052
+ domains: number;
1053
+ tags: number;
1054
+ users: number;
1055
+ ai: number;
1056
+ api: number;
1057
+ };
1058
+ colors: {
1059
+ bg: string;
1060
+ text: string;
1061
+ };
1062
+ cta: {
1063
+ text: string;
1064
+ href: string;
1065
+ color: string;
1066
+ shortText?: undefined;
1067
+ };
1068
+ featureTitle: string;
1069
+ features: {
1070
+ text: string;
1071
+ }[];
1072
+ };
1073
+ declare const getCurrentPlan: (plan: string) => {
1074
+ name: string;
1075
+ tagline: string;
1076
+ price: {
1077
+ monthly: number;
1078
+ yearly: number;
1079
+ ids?: undefined;
1080
+ };
1081
+ limits: {
1082
+ links: number;
1083
+ clicks: number;
1084
+ domains: number;
1085
+ tags: number;
1086
+ users: number;
1087
+ ai: number;
1088
+ api: number;
1089
+ };
1090
+ colors: {
1091
+ bg: string;
1092
+ text: string;
1093
+ };
1094
+ cta: {
1095
+ text: string;
1096
+ href: string;
1097
+ color: string;
1098
+ shortText?: undefined;
1099
+ };
1100
+ featureTitle: string;
1101
+ features: ({
1102
+ text: string;
1103
+ footnote?: undefined;
1104
+ } | {
1105
+ text: string;
1106
+ footnote: string;
1107
+ } | {
1108
+ text: string;
1109
+ footnote: {
1110
+ title: string;
1111
+ cta: string;
1112
+ href: string;
1113
+ };
1114
+ })[];
1115
+ link?: undefined;
1116
+ } | {
1117
+ name: string;
1118
+ tagline: string;
1119
+ link: string;
1120
+ price: {
1121
+ monthly: number;
1122
+ yearly: number;
1123
+ ids: string[];
1124
+ };
1125
+ limits: {
1126
+ links: number;
1127
+ clicks: number;
1128
+ domains: number;
1129
+ tags: number;
1130
+ users: number;
1131
+ ai: number;
1132
+ api: number;
1133
+ };
1134
+ colors: {
1135
+ bg: string;
1136
+ text: string;
1137
+ };
1138
+ cta: {
1139
+ text: string;
1140
+ shortText: string;
1141
+ href: string;
1142
+ color: string;
1143
+ };
1144
+ featureTitle: string;
1145
+ features: ({
1146
+ text: string;
1147
+ footnote?: undefined;
1148
+ } | {
1149
+ text: string;
1150
+ footnote: {
1151
+ title: string;
1152
+ cta: string;
1153
+ href: string;
1154
+ };
1155
+ } | {
1156
+ text: string;
1157
+ footnote: string;
1158
+ })[];
1159
+ } | {
1160
+ name: string;
1161
+ tagline: string;
1162
+ link: string;
1163
+ price: {
1164
+ monthly: null;
1165
+ yearly: null;
1166
+ ids?: undefined;
1167
+ };
1168
+ limits: {
1169
+ links: number;
1170
+ clicks: number;
1171
+ domains: number;
1172
+ tags: number;
1173
+ users: number;
1174
+ ai: number;
1175
+ api: number;
1176
+ };
1177
+ colors: {
1178
+ bg: string;
1179
+ text: string;
1180
+ };
1181
+ cta: {
1182
+ text: string;
1183
+ href: string;
1184
+ color: string;
1185
+ shortText?: undefined;
1186
+ };
1187
+ featureTitle: string;
1188
+ features: {
1189
+ text: string;
1190
+ }[];
1191
+ };
1192
+ declare const getNextPlan: (plan?: string | null) => {
1193
+ name: string;
1194
+ tagline: string;
1195
+ price: {
1196
+ monthly: number;
1197
+ yearly: number;
1198
+ ids?: undefined;
1199
+ };
1200
+ limits: {
1201
+ links: number;
1202
+ clicks: number;
1203
+ domains: number;
1204
+ tags: number;
1205
+ users: number;
1206
+ ai: number;
1207
+ api: number;
1208
+ };
1209
+ colors: {
1210
+ bg: string;
1211
+ text: string;
1212
+ };
1213
+ cta: {
1214
+ text: string;
1215
+ href: string;
1216
+ color: string;
1217
+ shortText?: undefined;
1218
+ };
1219
+ featureTitle: string;
1220
+ features: ({
1221
+ text: string;
1222
+ footnote?: undefined;
1223
+ } | {
1224
+ text: string;
1225
+ footnote: string;
1226
+ } | {
1227
+ text: string;
1228
+ footnote: {
1229
+ title: string;
1230
+ cta: string;
1231
+ href: string;
1232
+ };
1233
+ })[];
1234
+ link?: undefined;
1235
+ } | {
1236
+ name: string;
1237
+ tagline: string;
1238
+ link: string;
1239
+ price: {
1240
+ monthly: number;
1241
+ yearly: number;
1242
+ ids: string[];
1243
+ };
1244
+ limits: {
1245
+ links: number;
1246
+ clicks: number;
1247
+ domains: number;
1248
+ tags: number;
1249
+ users: number;
1250
+ ai: number;
1251
+ api: number;
1252
+ };
1253
+ colors: {
1254
+ bg: string;
1255
+ text: string;
1256
+ };
1257
+ cta: {
1258
+ text: string;
1259
+ shortText: string;
1260
+ href: string;
1261
+ color: string;
1262
+ };
1263
+ featureTitle: string;
1264
+ features: ({
1265
+ text: string;
1266
+ footnote?: undefined;
1267
+ } | {
1268
+ text: string;
1269
+ footnote: {
1270
+ title: string;
1271
+ cta: string;
1272
+ href: string;
1273
+ };
1274
+ } | {
1275
+ text: string;
1276
+ footnote: string;
1277
+ })[];
1278
+ } | {
1279
+ name: string;
1280
+ tagline: string;
1281
+ link: string;
1282
+ price: {
1283
+ monthly: null;
1284
+ yearly: null;
1285
+ ids?: undefined;
1286
+ };
1287
+ limits: {
1288
+ links: number;
1289
+ clicks: number;
1290
+ domains: number;
1291
+ tags: number;
1292
+ users: number;
1293
+ ai: number;
1294
+ api: number;
1295
+ };
1296
+ colors: {
1297
+ bg: string;
1298
+ text: string;
1299
+ };
1300
+ cta: {
1301
+ text: string;
1302
+ href: string;
1303
+ color: string;
1304
+ shortText?: undefined;
1305
+ };
1306
+ featureTitle: string;
1307
+ features: {
1308
+ text: string;
1309
+ }[];
1310
+ };
1311
+
1312
+ export { BUSINESS_PLAN as B, ENTERPRISE_PLAN as E, FREE_PLAN as F, PLANS as P, SELF_SERVE_PAID_PLANS as S, PRO_PLAN as a, PUBLIC_PLANS as b, FREE_WORKSPACES_LIMIT as c, getPlanDetails as d, getCurrentPlan as e, getNextPlan as f, getPlanFromPriceId as g };