@dub/utils 0.1.20 → 0.1.22

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 (62) hide show
  1. package/dist/chunk-2J3222ZP.mjs +1 -0
  2. package/dist/chunk-53SZZ2QK.mjs +1 -0
  3. package/dist/chunk-A7R7WCTE.mjs +1 -0
  4. package/dist/chunk-AQPTJK67.mjs +1 -0
  5. package/dist/chunk-BH2ZEP2D.mjs +1 -0
  6. package/dist/chunk-CP4WO7MM.mjs +1 -0
  7. package/dist/chunk-DOLEV26Y.mjs +1 -0
  8. package/dist/chunk-DXXNBMLQ.mjs +1 -0
  9. package/dist/chunk-EACRDJYD.mjs +1 -0
  10. package/dist/chunk-GKEXV4FT.mjs +1 -0
  11. package/dist/chunk-GUMSQXVY.mjs +1 -0
  12. package/dist/chunk-HR4YFT2T.mjs +1 -0
  13. package/dist/chunk-JYUTK2AF.mjs +1 -0
  14. package/dist/chunk-KIDNKMJ2.mjs +1 -0
  15. package/dist/chunk-LNKK4S5Y.mjs +1 -0
  16. package/dist/chunk-MJFOXBXO.mjs +1 -0
  17. package/dist/chunk-MP5IS4V2.mjs +1 -0
  18. package/dist/chunk-QSMPU6JE.mjs +1 -0
  19. package/dist/chunk-QUNCYYY6.mjs +1 -0
  20. package/dist/chunk-QZ5Q74ZF.mjs +1 -0
  21. package/dist/chunk-RCOH25PA.mjs +1 -0
  22. package/dist/chunk-SYBLFZ7Q.mjs +1 -0
  23. package/dist/chunk-T65LX3N5.mjs +1 -0
  24. package/dist/chunk-TOPVR7JX.mjs +1 -0
  25. package/dist/chunk-UWXN5NEH.mjs +1 -0
  26. package/dist/chunk-V56LWQJL.mjs +1 -0
  27. package/dist/chunk-VH3JANSU.mjs +1 -0
  28. package/dist/chunk-VXBAEBCQ.mjs +1 -0
  29. package/dist/chunk-XB7RPAE5.mjs +1 -0
  30. package/dist/chunk-ZOACWKR7.mjs +1 -0
  31. package/dist/constants/dub-domains.mjs +1 -1
  32. package/dist/constants/index.mjs +1 -1
  33. package/dist/functions/construct-metadata.d.ts +2 -1
  34. package/dist/functions/construct-metadata.mjs +1 -1
  35. package/dist/functions/datetime/billing-utils.d.ts +5 -0
  36. package/dist/functions/datetime/billing-utils.mjs +1 -0
  37. package/dist/functions/datetime/format-date.d.ts +3 -0
  38. package/dist/functions/datetime/format-date.mjs +1 -0
  39. package/dist/functions/datetime/format-datetime.d.ts +3 -0
  40. package/dist/functions/datetime/format-datetime.mjs +1 -0
  41. package/dist/functions/datetime/format-period.d.ts +6 -0
  42. package/dist/functions/datetime/format-period.mjs +1 -0
  43. package/dist/functions/datetime/get-datetime-local.d.ts +3 -0
  44. package/dist/functions/datetime/get-datetime-local.mjs +1 -0
  45. package/dist/functions/datetime/get-days-difference.d.ts +3 -0
  46. package/dist/functions/datetime/get-days-difference.mjs +1 -0
  47. package/dist/functions/datetime/get-first-and-last-day.d.ts +6 -0
  48. package/dist/functions/datetime/get-first-and-last-day.mjs +1 -0
  49. package/dist/functions/datetime/index.d.ts +8 -0
  50. package/dist/functions/datetime/index.mjs +1 -0
  51. package/dist/functions/datetime/parse-datetime.d.ts +3 -0
  52. package/dist/functions/datetime/parse-datetime.mjs +1 -0
  53. package/dist/functions/domains.mjs +1 -1
  54. package/dist/functions/index.d.ts +8 -1
  55. package/dist/functions/index.mjs +1 -1
  56. package/dist/functions/link-constructor.mjs +1 -1
  57. package/dist/functions/urls.mjs +1 -1
  58. package/dist/index.d.ts +8 -1
  59. package/dist/index.mjs +1 -1
  60. package/dist/pricing-6b876d80.d.ts +1079 -0
  61. package/dist/pricing-6e639634.d.ts +1049 -0
  62. package/package.json +3 -3
@@ -0,0 +1,1049 @@
1
+ declare const UA_BOTS: string[];
2
+ declare const IP_BOTS: string[];
3
+
4
+ type PlanFeature = {
5
+ id?: string;
6
+ text: string;
7
+ footnote?: {
8
+ title: string;
9
+ cta: string;
10
+ href: string;
11
+ };
12
+ };
13
+ declare const PLANS: ({
14
+ name: string;
15
+ tagline: string;
16
+ price: {
17
+ monthly: number;
18
+ yearly: number;
19
+ ids?: undefined;
20
+ };
21
+ limits: {
22
+ links: number;
23
+ clicks: number;
24
+ sales: number;
25
+ domains: number;
26
+ tags: number;
27
+ users: number;
28
+ ai: number;
29
+ api: number;
30
+ };
31
+ colors: {
32
+ bg: string;
33
+ text: string;
34
+ };
35
+ cta: {
36
+ text: string;
37
+ href: string;
38
+ color: string;
39
+ shortText?: undefined;
40
+ };
41
+ featureTitle: string;
42
+ features: PlanFeature[];
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
+ sales: number;
57
+ domains: number;
58
+ tags: number;
59
+ users: number;
60
+ ai: number;
61
+ api: number;
62
+ };
63
+ colors: {
64
+ bg: string;
65
+ text: string;
66
+ };
67
+ cta: {
68
+ text: string;
69
+ shortText: string;
70
+ href: string;
71
+ color: string;
72
+ };
73
+ featureTitle: string;
74
+ features: PlanFeature[];
75
+ } | {
76
+ name: string;
77
+ tagline: string;
78
+ link: string;
79
+ price: {
80
+ monthly: null;
81
+ yearly: null;
82
+ ids?: undefined;
83
+ };
84
+ limits: {
85
+ links: number;
86
+ clicks: number;
87
+ sales: number;
88
+ domains: number;
89
+ tags: number;
90
+ users: number;
91
+ ai: number;
92
+ api: number;
93
+ };
94
+ colors: {
95
+ bg: string;
96
+ text: string;
97
+ };
98
+ cta: {
99
+ text: string;
100
+ href: string;
101
+ color: string;
102
+ shortText?: undefined;
103
+ };
104
+ featureTitle: string;
105
+ features: PlanFeature[];
106
+ })[];
107
+ declare const FREE_PLAN: {
108
+ name: string;
109
+ tagline: string;
110
+ price: {
111
+ monthly: number;
112
+ yearly: number;
113
+ ids?: undefined;
114
+ };
115
+ limits: {
116
+ links: number;
117
+ clicks: number;
118
+ sales: number;
119
+ domains: number;
120
+ tags: number;
121
+ users: number;
122
+ ai: number;
123
+ api: number;
124
+ };
125
+ colors: {
126
+ bg: string;
127
+ text: string;
128
+ };
129
+ cta: {
130
+ text: string;
131
+ href: string;
132
+ color: string;
133
+ shortText?: undefined;
134
+ };
135
+ featureTitle: string;
136
+ features: PlanFeature[];
137
+ link?: undefined;
138
+ } | {
139
+ name: string;
140
+ tagline: string;
141
+ link: string;
142
+ price: {
143
+ monthly: number;
144
+ yearly: number;
145
+ ids: string[];
146
+ };
147
+ limits: {
148
+ links: number;
149
+ clicks: number;
150
+ sales: number;
151
+ domains: number;
152
+ tags: number;
153
+ users: number;
154
+ ai: number;
155
+ api: number;
156
+ };
157
+ colors: {
158
+ bg: string;
159
+ text: string;
160
+ };
161
+ cta: {
162
+ text: string;
163
+ shortText: string;
164
+ href: string;
165
+ color: string;
166
+ };
167
+ featureTitle: string;
168
+ features: PlanFeature[];
169
+ } | {
170
+ name: string;
171
+ tagline: string;
172
+ link: string;
173
+ price: {
174
+ monthly: null;
175
+ yearly: null;
176
+ ids?: undefined;
177
+ };
178
+ limits: {
179
+ links: number;
180
+ clicks: number;
181
+ sales: number;
182
+ domains: number;
183
+ tags: number;
184
+ users: number;
185
+ ai: number;
186
+ api: number;
187
+ };
188
+ colors: {
189
+ bg: string;
190
+ text: string;
191
+ };
192
+ cta: {
193
+ text: string;
194
+ href: string;
195
+ color: string;
196
+ shortText?: undefined;
197
+ };
198
+ featureTitle: string;
199
+ features: PlanFeature[];
200
+ };
201
+ declare const PRO_PLAN: {
202
+ name: string;
203
+ tagline: string;
204
+ price: {
205
+ monthly: number;
206
+ yearly: number;
207
+ ids?: undefined;
208
+ };
209
+ limits: {
210
+ links: number;
211
+ clicks: number;
212
+ sales: number;
213
+ domains: number;
214
+ tags: number;
215
+ users: number;
216
+ ai: number;
217
+ api: number;
218
+ };
219
+ colors: {
220
+ bg: string;
221
+ text: string;
222
+ };
223
+ cta: {
224
+ text: string;
225
+ href: string;
226
+ color: string;
227
+ shortText?: undefined;
228
+ };
229
+ featureTitle: string;
230
+ features: PlanFeature[];
231
+ link?: undefined;
232
+ } | {
233
+ name: string;
234
+ tagline: string;
235
+ link: string;
236
+ price: {
237
+ monthly: number;
238
+ yearly: number;
239
+ ids: string[];
240
+ };
241
+ limits: {
242
+ links: number;
243
+ clicks: number;
244
+ sales: number;
245
+ domains: number;
246
+ tags: number;
247
+ users: number;
248
+ ai: number;
249
+ api: number;
250
+ };
251
+ colors: {
252
+ bg: string;
253
+ text: string;
254
+ };
255
+ cta: {
256
+ text: string;
257
+ shortText: string;
258
+ href: string;
259
+ color: string;
260
+ };
261
+ featureTitle: string;
262
+ features: PlanFeature[];
263
+ } | {
264
+ name: string;
265
+ tagline: string;
266
+ link: string;
267
+ price: {
268
+ monthly: null;
269
+ yearly: null;
270
+ ids?: undefined;
271
+ };
272
+ limits: {
273
+ links: number;
274
+ clicks: number;
275
+ sales: number;
276
+ domains: number;
277
+ tags: number;
278
+ users: number;
279
+ ai: number;
280
+ api: number;
281
+ };
282
+ colors: {
283
+ bg: string;
284
+ text: string;
285
+ };
286
+ cta: {
287
+ text: string;
288
+ href: string;
289
+ color: string;
290
+ shortText?: undefined;
291
+ };
292
+ featureTitle: string;
293
+ features: PlanFeature[];
294
+ };
295
+ declare const BUSINESS_PLAN: {
296
+ name: string;
297
+ tagline: string;
298
+ price: {
299
+ monthly: number;
300
+ yearly: number;
301
+ ids?: undefined;
302
+ };
303
+ limits: {
304
+ links: number;
305
+ clicks: number;
306
+ sales: number;
307
+ domains: number;
308
+ tags: number;
309
+ users: number;
310
+ ai: number;
311
+ api: number;
312
+ };
313
+ colors: {
314
+ bg: string;
315
+ text: string;
316
+ };
317
+ cta: {
318
+ text: string;
319
+ href: string;
320
+ color: string;
321
+ shortText?: undefined;
322
+ };
323
+ featureTitle: string;
324
+ features: PlanFeature[];
325
+ link?: undefined;
326
+ } | {
327
+ name: string;
328
+ tagline: string;
329
+ link: string;
330
+ price: {
331
+ monthly: number;
332
+ yearly: number;
333
+ ids: string[];
334
+ };
335
+ limits: {
336
+ links: number;
337
+ clicks: number;
338
+ sales: number;
339
+ domains: number;
340
+ tags: number;
341
+ users: number;
342
+ ai: number;
343
+ api: number;
344
+ };
345
+ colors: {
346
+ bg: string;
347
+ text: string;
348
+ };
349
+ cta: {
350
+ text: string;
351
+ shortText: string;
352
+ href: string;
353
+ color: string;
354
+ };
355
+ featureTitle: string;
356
+ features: PlanFeature[];
357
+ } | {
358
+ name: string;
359
+ tagline: string;
360
+ link: string;
361
+ price: {
362
+ monthly: null;
363
+ yearly: null;
364
+ ids?: undefined;
365
+ };
366
+ limits: {
367
+ links: number;
368
+ clicks: number;
369
+ sales: number;
370
+ domains: number;
371
+ tags: number;
372
+ users: number;
373
+ ai: number;
374
+ api: number;
375
+ };
376
+ colors: {
377
+ bg: string;
378
+ text: string;
379
+ };
380
+ cta: {
381
+ text: string;
382
+ href: string;
383
+ color: string;
384
+ shortText?: undefined;
385
+ };
386
+ featureTitle: string;
387
+ features: PlanFeature[];
388
+ };
389
+ declare const ENTERPRISE_PLAN: {
390
+ name: string;
391
+ tagline: string;
392
+ price: {
393
+ monthly: number;
394
+ yearly: number;
395
+ ids?: undefined;
396
+ };
397
+ limits: {
398
+ links: number;
399
+ clicks: number;
400
+ sales: 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
+ href: string;
414
+ color: string;
415
+ shortText?: undefined;
416
+ };
417
+ featureTitle: string;
418
+ features: PlanFeature[];
419
+ link?: undefined;
420
+ } | {
421
+ name: string;
422
+ tagline: string;
423
+ link: string;
424
+ price: {
425
+ monthly: number;
426
+ yearly: number;
427
+ ids: string[];
428
+ };
429
+ limits: {
430
+ links: number;
431
+ clicks: number;
432
+ sales: number;
433
+ domains: number;
434
+ tags: number;
435
+ users: number;
436
+ ai: number;
437
+ api: number;
438
+ };
439
+ colors: {
440
+ bg: string;
441
+ text: string;
442
+ };
443
+ cta: {
444
+ text: string;
445
+ shortText: string;
446
+ href: string;
447
+ color: string;
448
+ };
449
+ featureTitle: string;
450
+ features: PlanFeature[];
451
+ } | {
452
+ name: string;
453
+ tagline: string;
454
+ link: string;
455
+ price: {
456
+ monthly: null;
457
+ yearly: null;
458
+ ids?: undefined;
459
+ };
460
+ limits: {
461
+ links: number;
462
+ clicks: number;
463
+ sales: number;
464
+ domains: number;
465
+ tags: number;
466
+ users: number;
467
+ ai: number;
468
+ api: number;
469
+ };
470
+ colors: {
471
+ bg: string;
472
+ text: string;
473
+ };
474
+ cta: {
475
+ text: string;
476
+ href: string;
477
+ color: string;
478
+ shortText?: undefined;
479
+ };
480
+ featureTitle: string;
481
+ features: PlanFeature[];
482
+ };
483
+ declare const PUBLIC_PLANS: ({
484
+ name: string;
485
+ tagline: string;
486
+ price: {
487
+ monthly: number;
488
+ yearly: number;
489
+ ids?: undefined;
490
+ };
491
+ limits: {
492
+ links: number;
493
+ clicks: number;
494
+ sales: number;
495
+ domains: number;
496
+ tags: number;
497
+ users: number;
498
+ ai: number;
499
+ api: number;
500
+ };
501
+ colors: {
502
+ bg: string;
503
+ text: string;
504
+ };
505
+ cta: {
506
+ text: string;
507
+ href: string;
508
+ color: string;
509
+ shortText?: undefined;
510
+ };
511
+ featureTitle: string;
512
+ features: PlanFeature[];
513
+ link?: undefined;
514
+ } | {
515
+ name: string;
516
+ tagline: string;
517
+ link: string;
518
+ price: {
519
+ monthly: number;
520
+ yearly: number;
521
+ ids: string[];
522
+ };
523
+ limits: {
524
+ links: number;
525
+ clicks: number;
526
+ sales: number;
527
+ domains: number;
528
+ tags: number;
529
+ users: number;
530
+ ai: number;
531
+ api: number;
532
+ };
533
+ colors: {
534
+ bg: string;
535
+ text: string;
536
+ };
537
+ cta: {
538
+ text: string;
539
+ shortText: string;
540
+ href: string;
541
+ color: string;
542
+ };
543
+ featureTitle: string;
544
+ features: PlanFeature[];
545
+ } | {
546
+ name: string;
547
+ tagline: string;
548
+ link: string;
549
+ price: {
550
+ monthly: null;
551
+ yearly: null;
552
+ ids?: undefined;
553
+ };
554
+ limits: {
555
+ links: number;
556
+ clicks: number;
557
+ sales: number;
558
+ domains: number;
559
+ tags: number;
560
+ users: number;
561
+ ai: number;
562
+ api: number;
563
+ };
564
+ colors: {
565
+ bg: string;
566
+ text: string;
567
+ };
568
+ cta: {
569
+ text: string;
570
+ href: string;
571
+ color: string;
572
+ shortText?: undefined;
573
+ };
574
+ featureTitle: string;
575
+ features: PlanFeature[];
576
+ })[];
577
+ declare const SELF_SERVE_PAID_PLANS: ({
578
+ name: string;
579
+ tagline: string;
580
+ price: {
581
+ monthly: number;
582
+ yearly: number;
583
+ ids?: undefined;
584
+ };
585
+ limits: {
586
+ links: number;
587
+ clicks: number;
588
+ sales: number;
589
+ domains: number;
590
+ tags: number;
591
+ users: number;
592
+ ai: number;
593
+ api: number;
594
+ };
595
+ colors: {
596
+ bg: string;
597
+ text: string;
598
+ };
599
+ cta: {
600
+ text: string;
601
+ href: string;
602
+ color: string;
603
+ shortText?: undefined;
604
+ };
605
+ featureTitle: string;
606
+ features: PlanFeature[];
607
+ link?: undefined;
608
+ } | {
609
+ name: string;
610
+ tagline: string;
611
+ link: string;
612
+ price: {
613
+ monthly: number;
614
+ yearly: number;
615
+ ids: string[];
616
+ };
617
+ limits: {
618
+ links: number;
619
+ clicks: number;
620
+ sales: number;
621
+ domains: number;
622
+ tags: number;
623
+ users: number;
624
+ ai: number;
625
+ api: number;
626
+ };
627
+ colors: {
628
+ bg: string;
629
+ text: string;
630
+ };
631
+ cta: {
632
+ text: string;
633
+ shortText: string;
634
+ href: string;
635
+ color: string;
636
+ };
637
+ featureTitle: string;
638
+ features: PlanFeature[];
639
+ } | {
640
+ name: string;
641
+ tagline: string;
642
+ link: string;
643
+ price: {
644
+ monthly: null;
645
+ yearly: null;
646
+ ids?: undefined;
647
+ };
648
+ limits: {
649
+ links: number;
650
+ clicks: number;
651
+ sales: number;
652
+ domains: number;
653
+ tags: number;
654
+ users: number;
655
+ ai: number;
656
+ api: number;
657
+ };
658
+ colors: {
659
+ bg: string;
660
+ text: string;
661
+ };
662
+ cta: {
663
+ text: string;
664
+ href: string;
665
+ color: string;
666
+ shortText?: undefined;
667
+ };
668
+ featureTitle: string;
669
+ features: PlanFeature[];
670
+ })[];
671
+ declare const FREE_WORKSPACES_LIMIT = 2;
672
+ declare const getPlanFromPriceId: (priceId: string) => {
673
+ name: string;
674
+ tagline: string;
675
+ price: {
676
+ monthly: number;
677
+ yearly: number;
678
+ ids?: undefined;
679
+ };
680
+ limits: {
681
+ links: number;
682
+ clicks: number;
683
+ sales: number;
684
+ domains: number;
685
+ tags: number;
686
+ users: number;
687
+ ai: number;
688
+ api: number;
689
+ };
690
+ colors: {
691
+ bg: string;
692
+ text: string;
693
+ };
694
+ cta: {
695
+ text: string;
696
+ href: string;
697
+ color: string;
698
+ shortText?: undefined;
699
+ };
700
+ featureTitle: string;
701
+ features: PlanFeature[];
702
+ link?: undefined;
703
+ } | {
704
+ name: string;
705
+ tagline: string;
706
+ link: string;
707
+ price: {
708
+ monthly: number;
709
+ yearly: number;
710
+ ids: string[];
711
+ };
712
+ limits: {
713
+ links: number;
714
+ clicks: number;
715
+ sales: number;
716
+ domains: number;
717
+ tags: number;
718
+ users: number;
719
+ ai: number;
720
+ api: number;
721
+ };
722
+ colors: {
723
+ bg: string;
724
+ text: string;
725
+ };
726
+ cta: {
727
+ text: string;
728
+ shortText: string;
729
+ href: string;
730
+ color: string;
731
+ };
732
+ featureTitle: string;
733
+ features: PlanFeature[];
734
+ } | {
735
+ name: string;
736
+ tagline: string;
737
+ link: string;
738
+ price: {
739
+ monthly: null;
740
+ yearly: null;
741
+ ids?: undefined;
742
+ };
743
+ limits: {
744
+ links: number;
745
+ clicks: number;
746
+ sales: number;
747
+ domains: number;
748
+ tags: number;
749
+ users: number;
750
+ ai: number;
751
+ api: number;
752
+ };
753
+ colors: {
754
+ bg: string;
755
+ text: string;
756
+ };
757
+ cta: {
758
+ text: string;
759
+ href: string;
760
+ color: string;
761
+ shortText?: undefined;
762
+ };
763
+ featureTitle: string;
764
+ features: PlanFeature[];
765
+ } | null;
766
+ declare const getPlanDetails: (plan: string) => {
767
+ name: string;
768
+ tagline: string;
769
+ price: {
770
+ monthly: number;
771
+ yearly: number;
772
+ ids?: undefined;
773
+ };
774
+ limits: {
775
+ links: number;
776
+ clicks: number;
777
+ sales: number;
778
+ domains: number;
779
+ tags: number;
780
+ users: number;
781
+ ai: number;
782
+ api: number;
783
+ };
784
+ colors: {
785
+ bg: string;
786
+ text: string;
787
+ };
788
+ cta: {
789
+ text: string;
790
+ href: string;
791
+ color: string;
792
+ shortText?: undefined;
793
+ };
794
+ featureTitle: string;
795
+ features: PlanFeature[];
796
+ link?: undefined;
797
+ } | {
798
+ name: string;
799
+ tagline: string;
800
+ link: string;
801
+ price: {
802
+ monthly: number;
803
+ yearly: number;
804
+ ids: string[];
805
+ };
806
+ limits: {
807
+ links: number;
808
+ clicks: number;
809
+ sales: number;
810
+ domains: number;
811
+ tags: number;
812
+ users: number;
813
+ ai: number;
814
+ api: number;
815
+ };
816
+ colors: {
817
+ bg: string;
818
+ text: string;
819
+ };
820
+ cta: {
821
+ text: string;
822
+ shortText: string;
823
+ href: string;
824
+ color: string;
825
+ };
826
+ featureTitle: string;
827
+ features: PlanFeature[];
828
+ } | {
829
+ name: string;
830
+ tagline: string;
831
+ link: string;
832
+ price: {
833
+ monthly: null;
834
+ yearly: null;
835
+ ids?: undefined;
836
+ };
837
+ limits: {
838
+ links: number;
839
+ clicks: number;
840
+ sales: number;
841
+ domains: number;
842
+ tags: number;
843
+ users: number;
844
+ ai: number;
845
+ api: number;
846
+ };
847
+ colors: {
848
+ bg: string;
849
+ text: string;
850
+ };
851
+ cta: {
852
+ text: string;
853
+ href: string;
854
+ color: string;
855
+ shortText?: undefined;
856
+ };
857
+ featureTitle: string;
858
+ features: PlanFeature[];
859
+ };
860
+ declare const getCurrentPlan: (plan: string) => {
861
+ name: string;
862
+ tagline: string;
863
+ price: {
864
+ monthly: number;
865
+ yearly: number;
866
+ ids?: undefined;
867
+ };
868
+ limits: {
869
+ links: number;
870
+ clicks: number;
871
+ sales: number;
872
+ domains: number;
873
+ tags: number;
874
+ users: number;
875
+ ai: number;
876
+ api: number;
877
+ };
878
+ colors: {
879
+ bg: string;
880
+ text: string;
881
+ };
882
+ cta: {
883
+ text: string;
884
+ href: string;
885
+ color: string;
886
+ shortText?: undefined;
887
+ };
888
+ featureTitle: string;
889
+ features: PlanFeature[];
890
+ link?: undefined;
891
+ } | {
892
+ name: string;
893
+ tagline: string;
894
+ link: string;
895
+ price: {
896
+ monthly: number;
897
+ yearly: number;
898
+ ids: string[];
899
+ };
900
+ limits: {
901
+ links: number;
902
+ clicks: number;
903
+ sales: number;
904
+ domains: number;
905
+ tags: number;
906
+ users: number;
907
+ ai: number;
908
+ api: number;
909
+ };
910
+ colors: {
911
+ bg: string;
912
+ text: string;
913
+ };
914
+ cta: {
915
+ text: string;
916
+ shortText: string;
917
+ href: string;
918
+ color: string;
919
+ };
920
+ featureTitle: string;
921
+ features: PlanFeature[];
922
+ } | {
923
+ name: string;
924
+ tagline: string;
925
+ link: string;
926
+ price: {
927
+ monthly: null;
928
+ yearly: null;
929
+ ids?: undefined;
930
+ };
931
+ limits: {
932
+ links: number;
933
+ clicks: number;
934
+ sales: number;
935
+ domains: number;
936
+ tags: number;
937
+ users: number;
938
+ ai: number;
939
+ api: number;
940
+ };
941
+ colors: {
942
+ bg: string;
943
+ text: string;
944
+ };
945
+ cta: {
946
+ text: string;
947
+ href: string;
948
+ color: string;
949
+ shortText?: undefined;
950
+ };
951
+ featureTitle: string;
952
+ features: PlanFeature[];
953
+ };
954
+ declare const getNextPlan: (plan?: string | null) => {
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
+ sales: number;
966
+ domains: number;
967
+ tags: number;
968
+ users: number;
969
+ ai: number;
970
+ api: number;
971
+ };
972
+ colors: {
973
+ bg: string;
974
+ text: string;
975
+ };
976
+ cta: {
977
+ text: string;
978
+ href: string;
979
+ color: string;
980
+ shortText?: undefined;
981
+ };
982
+ featureTitle: string;
983
+ features: PlanFeature[];
984
+ link?: undefined;
985
+ } | {
986
+ name: string;
987
+ tagline: string;
988
+ link: string;
989
+ price: {
990
+ monthly: number;
991
+ yearly: number;
992
+ ids: string[];
993
+ };
994
+ limits: {
995
+ links: number;
996
+ clicks: number;
997
+ sales: number;
998
+ domains: number;
999
+ tags: number;
1000
+ users: number;
1001
+ ai: number;
1002
+ api: number;
1003
+ };
1004
+ colors: {
1005
+ bg: string;
1006
+ text: string;
1007
+ };
1008
+ cta: {
1009
+ text: string;
1010
+ shortText: string;
1011
+ href: string;
1012
+ color: string;
1013
+ };
1014
+ featureTitle: string;
1015
+ features: PlanFeature[];
1016
+ } | {
1017
+ name: string;
1018
+ tagline: string;
1019
+ link: string;
1020
+ price: {
1021
+ monthly: null;
1022
+ yearly: null;
1023
+ ids?: undefined;
1024
+ };
1025
+ limits: {
1026
+ links: number;
1027
+ clicks: number;
1028
+ sales: number;
1029
+ domains: number;
1030
+ tags: number;
1031
+ users: number;
1032
+ ai: number;
1033
+ api: number;
1034
+ };
1035
+ colors: {
1036
+ bg: string;
1037
+ text: string;
1038
+ };
1039
+ cta: {
1040
+ text: string;
1041
+ href: string;
1042
+ color: string;
1043
+ shortText?: undefined;
1044
+ };
1045
+ featureTitle: string;
1046
+ features: PlanFeature[];
1047
+ };
1048
+
1049
+ export { BUSINESS_PLAN as B, ENTERPRISE_PLAN as E, FREE_PLAN as F, IP_BOTS as I, PlanFeature as P, SELF_SERVE_PAID_PLANS as S, UA_BOTS as U, PLANS as a, PRO_PLAN as b, PUBLIC_PLANS as c, FREE_WORKSPACES_LIMIT as d, getPlanDetails as e, getCurrentPlan as f, getPlanFromPriceId as g, getNextPlan as h };