@dub/utils 0.0.55 → 0.0.56

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