@trigger.dev/platform 1.0.11 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v3/index.cjs +71 -3
- package/dist/v3/index.cjs.map +1 -1
- package/dist/v3/index.d.cts +762 -2
- package/dist/v3/index.d.ts +762 -2
- package/dist/v3/index.js +69 -3
- package/dist/v3/index.js.map +1 -1
- package/package.json +2 -1
package/dist/v3/index.d.ts
CHANGED
|
@@ -64,6 +64,16 @@ declare const Limits: z.ZodObject<{
|
|
|
64
64
|
canExceed?: boolean | undefined;
|
|
65
65
|
}>;
|
|
66
66
|
hasStagingEnvironment: z.ZodBoolean;
|
|
67
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
68
|
+
number: z.ZodNumber;
|
|
69
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
70
|
+
}, "strip", z.ZodTypeAny, {
|
|
71
|
+
number: number;
|
|
72
|
+
canExceed?: boolean | undefined;
|
|
73
|
+
}, {
|
|
74
|
+
number: number;
|
|
75
|
+
canExceed?: boolean | undefined;
|
|
76
|
+
}>;
|
|
67
77
|
support: z.ZodEnum<["community", "slack"]>;
|
|
68
78
|
}, "strip", z.ZodTypeAny, {
|
|
69
79
|
includedUsage: number;
|
|
@@ -88,6 +98,10 @@ declare const Limits: z.ZodObject<{
|
|
|
88
98
|
canExceed?: boolean | undefined;
|
|
89
99
|
};
|
|
90
100
|
hasStagingEnvironment: boolean;
|
|
101
|
+
realtimeConcurrentConnections: {
|
|
102
|
+
number: number;
|
|
103
|
+
canExceed?: boolean | undefined;
|
|
104
|
+
};
|
|
91
105
|
support: "community" | "slack";
|
|
92
106
|
}, {
|
|
93
107
|
includedUsage: number;
|
|
@@ -112,6 +126,10 @@ declare const Limits: z.ZodObject<{
|
|
|
112
126
|
canExceed?: boolean | undefined;
|
|
113
127
|
};
|
|
114
128
|
hasStagingEnvironment: boolean;
|
|
129
|
+
realtimeConcurrentConnections: {
|
|
130
|
+
number: number;
|
|
131
|
+
canExceed?: boolean | undefined;
|
|
132
|
+
};
|
|
115
133
|
support: "community" | "slack";
|
|
116
134
|
}>;
|
|
117
135
|
type Limits = z.infer<typeof Limits>;
|
|
@@ -170,6 +188,16 @@ declare const FreePlanDefinition: z.ZodObject<{
|
|
|
170
188
|
canExceed?: boolean | undefined;
|
|
171
189
|
}>;
|
|
172
190
|
hasStagingEnvironment: z.ZodBoolean;
|
|
191
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
192
|
+
number: z.ZodNumber;
|
|
193
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
194
|
+
}, "strip", z.ZodTypeAny, {
|
|
195
|
+
number: number;
|
|
196
|
+
canExceed?: boolean | undefined;
|
|
197
|
+
}, {
|
|
198
|
+
number: number;
|
|
199
|
+
canExceed?: boolean | undefined;
|
|
200
|
+
}>;
|
|
173
201
|
support: z.ZodEnum<["community", "slack"]>;
|
|
174
202
|
}, "strip", z.ZodTypeAny, {
|
|
175
203
|
includedUsage: number;
|
|
@@ -194,6 +222,10 @@ declare const FreePlanDefinition: z.ZodObject<{
|
|
|
194
222
|
canExceed?: boolean | undefined;
|
|
195
223
|
};
|
|
196
224
|
hasStagingEnvironment: boolean;
|
|
225
|
+
realtimeConcurrentConnections: {
|
|
226
|
+
number: number;
|
|
227
|
+
canExceed?: boolean | undefined;
|
|
228
|
+
};
|
|
197
229
|
support: "community" | "slack";
|
|
198
230
|
}, {
|
|
199
231
|
includedUsage: number;
|
|
@@ -218,6 +250,10 @@ declare const FreePlanDefinition: z.ZodObject<{
|
|
|
218
250
|
canExceed?: boolean | undefined;
|
|
219
251
|
};
|
|
220
252
|
hasStagingEnvironment: boolean;
|
|
253
|
+
realtimeConcurrentConnections: {
|
|
254
|
+
number: number;
|
|
255
|
+
canExceed?: boolean | undefined;
|
|
256
|
+
};
|
|
221
257
|
support: "community" | "slack";
|
|
222
258
|
}>;
|
|
223
259
|
title: z.ZodString;
|
|
@@ -248,6 +284,10 @@ declare const FreePlanDefinition: z.ZodObject<{
|
|
|
248
284
|
canExceed?: boolean | undefined;
|
|
249
285
|
};
|
|
250
286
|
hasStagingEnvironment: boolean;
|
|
287
|
+
realtimeConcurrentConnections: {
|
|
288
|
+
number: number;
|
|
289
|
+
canExceed?: boolean | undefined;
|
|
290
|
+
};
|
|
251
291
|
support: "community" | "slack";
|
|
252
292
|
};
|
|
253
293
|
title: string;
|
|
@@ -277,6 +317,10 @@ declare const FreePlanDefinition: z.ZodObject<{
|
|
|
277
317
|
canExceed?: boolean | undefined;
|
|
278
318
|
};
|
|
279
319
|
hasStagingEnvironment: boolean;
|
|
320
|
+
realtimeConcurrentConnections: {
|
|
321
|
+
number: number;
|
|
322
|
+
canExceed?: boolean | undefined;
|
|
323
|
+
};
|
|
280
324
|
support: "community" | "slack";
|
|
281
325
|
};
|
|
282
326
|
title: string;
|
|
@@ -351,6 +395,16 @@ declare const PaidPlanDefinition: z.ZodObject<{
|
|
|
351
395
|
canExceed?: boolean | undefined;
|
|
352
396
|
}>;
|
|
353
397
|
hasStagingEnvironment: z.ZodBoolean;
|
|
398
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
399
|
+
number: z.ZodNumber;
|
|
400
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
401
|
+
}, "strip", z.ZodTypeAny, {
|
|
402
|
+
number: number;
|
|
403
|
+
canExceed?: boolean | undefined;
|
|
404
|
+
}, {
|
|
405
|
+
number: number;
|
|
406
|
+
canExceed?: boolean | undefined;
|
|
407
|
+
}>;
|
|
354
408
|
support: z.ZodEnum<["community", "slack"]>;
|
|
355
409
|
}, "strip", z.ZodTypeAny, {
|
|
356
410
|
includedUsage: number;
|
|
@@ -375,6 +429,10 @@ declare const PaidPlanDefinition: z.ZodObject<{
|
|
|
375
429
|
canExceed?: boolean | undefined;
|
|
376
430
|
};
|
|
377
431
|
hasStagingEnvironment: boolean;
|
|
432
|
+
realtimeConcurrentConnections: {
|
|
433
|
+
number: number;
|
|
434
|
+
canExceed?: boolean | undefined;
|
|
435
|
+
};
|
|
378
436
|
support: "community" | "slack";
|
|
379
437
|
}, {
|
|
380
438
|
includedUsage: number;
|
|
@@ -399,6 +457,10 @@ declare const PaidPlanDefinition: z.ZodObject<{
|
|
|
399
457
|
canExceed?: boolean | undefined;
|
|
400
458
|
};
|
|
401
459
|
hasStagingEnvironment: boolean;
|
|
460
|
+
realtimeConcurrentConnections: {
|
|
461
|
+
number: number;
|
|
462
|
+
canExceed?: boolean | undefined;
|
|
463
|
+
};
|
|
402
464
|
support: "community" | "slack";
|
|
403
465
|
}>;
|
|
404
466
|
title: z.ZodString;
|
|
@@ -429,6 +491,10 @@ declare const PaidPlanDefinition: z.ZodObject<{
|
|
|
429
491
|
canExceed?: boolean | undefined;
|
|
430
492
|
};
|
|
431
493
|
hasStagingEnvironment: boolean;
|
|
494
|
+
realtimeConcurrentConnections: {
|
|
495
|
+
number: number;
|
|
496
|
+
canExceed?: boolean | undefined;
|
|
497
|
+
};
|
|
432
498
|
support: "community" | "slack";
|
|
433
499
|
};
|
|
434
500
|
title: string;
|
|
@@ -464,6 +530,10 @@ declare const PaidPlanDefinition: z.ZodObject<{
|
|
|
464
530
|
canExceed?: boolean | undefined;
|
|
465
531
|
};
|
|
466
532
|
hasStagingEnvironment: boolean;
|
|
533
|
+
realtimeConcurrentConnections: {
|
|
534
|
+
number: number;
|
|
535
|
+
canExceed?: boolean | undefined;
|
|
536
|
+
};
|
|
467
537
|
support: "community" | "slack";
|
|
468
538
|
};
|
|
469
539
|
title: string;
|
|
@@ -530,6 +600,16 @@ declare const EnterprisePlanDefinition: z.ZodObject<{
|
|
|
530
600
|
canExceed?: boolean | undefined;
|
|
531
601
|
}>;
|
|
532
602
|
hasStagingEnvironment: z.ZodBoolean;
|
|
603
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
604
|
+
number: z.ZodNumber;
|
|
605
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
606
|
+
}, "strip", z.ZodTypeAny, {
|
|
607
|
+
number: number;
|
|
608
|
+
canExceed?: boolean | undefined;
|
|
609
|
+
}, {
|
|
610
|
+
number: number;
|
|
611
|
+
canExceed?: boolean | undefined;
|
|
612
|
+
}>;
|
|
533
613
|
support: z.ZodEnum<["community", "slack"]>;
|
|
534
614
|
}, "strip", z.ZodTypeAny, {
|
|
535
615
|
includedUsage: number;
|
|
@@ -554,6 +634,10 @@ declare const EnterprisePlanDefinition: z.ZodObject<{
|
|
|
554
634
|
canExceed?: boolean | undefined;
|
|
555
635
|
};
|
|
556
636
|
hasStagingEnvironment: boolean;
|
|
637
|
+
realtimeConcurrentConnections: {
|
|
638
|
+
number: number;
|
|
639
|
+
canExceed?: boolean | undefined;
|
|
640
|
+
};
|
|
557
641
|
support: "community" | "slack";
|
|
558
642
|
}, {
|
|
559
643
|
includedUsage: number;
|
|
@@ -578,6 +662,10 @@ declare const EnterprisePlanDefinition: z.ZodObject<{
|
|
|
578
662
|
canExceed?: boolean | undefined;
|
|
579
663
|
};
|
|
580
664
|
hasStagingEnvironment: boolean;
|
|
665
|
+
realtimeConcurrentConnections: {
|
|
666
|
+
number: number;
|
|
667
|
+
canExceed?: boolean | undefined;
|
|
668
|
+
};
|
|
581
669
|
support: "community" | "slack";
|
|
582
670
|
}>;
|
|
583
671
|
title: z.ZodString;
|
|
@@ -608,6 +696,10 @@ declare const EnterprisePlanDefinition: z.ZodObject<{
|
|
|
608
696
|
canExceed?: boolean | undefined;
|
|
609
697
|
};
|
|
610
698
|
hasStagingEnvironment: boolean;
|
|
699
|
+
realtimeConcurrentConnections: {
|
|
700
|
+
number: number;
|
|
701
|
+
canExceed?: boolean | undefined;
|
|
702
|
+
};
|
|
611
703
|
support: "community" | "slack";
|
|
612
704
|
};
|
|
613
705
|
title: string;
|
|
@@ -637,6 +729,10 @@ declare const EnterprisePlanDefinition: z.ZodObject<{
|
|
|
637
729
|
canExceed?: boolean | undefined;
|
|
638
730
|
};
|
|
639
731
|
hasStagingEnvironment: boolean;
|
|
732
|
+
realtimeConcurrentConnections: {
|
|
733
|
+
number: number;
|
|
734
|
+
canExceed?: boolean | undefined;
|
|
735
|
+
};
|
|
640
736
|
support: "community" | "slack";
|
|
641
737
|
};
|
|
642
738
|
title: string;
|
|
@@ -697,6 +793,16 @@ declare const PlanDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
697
793
|
canExceed?: boolean | undefined;
|
|
698
794
|
}>;
|
|
699
795
|
hasStagingEnvironment: z.ZodBoolean;
|
|
796
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
797
|
+
number: z.ZodNumber;
|
|
798
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
799
|
+
}, "strip", z.ZodTypeAny, {
|
|
800
|
+
number: number;
|
|
801
|
+
canExceed?: boolean | undefined;
|
|
802
|
+
}, {
|
|
803
|
+
number: number;
|
|
804
|
+
canExceed?: boolean | undefined;
|
|
805
|
+
}>;
|
|
700
806
|
support: z.ZodEnum<["community", "slack"]>;
|
|
701
807
|
}, "strip", z.ZodTypeAny, {
|
|
702
808
|
includedUsage: number;
|
|
@@ -721,6 +827,10 @@ declare const PlanDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
721
827
|
canExceed?: boolean | undefined;
|
|
722
828
|
};
|
|
723
829
|
hasStagingEnvironment: boolean;
|
|
830
|
+
realtimeConcurrentConnections: {
|
|
831
|
+
number: number;
|
|
832
|
+
canExceed?: boolean | undefined;
|
|
833
|
+
};
|
|
724
834
|
support: "community" | "slack";
|
|
725
835
|
}, {
|
|
726
836
|
includedUsage: number;
|
|
@@ -745,6 +855,10 @@ declare const PlanDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
745
855
|
canExceed?: boolean | undefined;
|
|
746
856
|
};
|
|
747
857
|
hasStagingEnvironment: boolean;
|
|
858
|
+
realtimeConcurrentConnections: {
|
|
859
|
+
number: number;
|
|
860
|
+
canExceed?: boolean | undefined;
|
|
861
|
+
};
|
|
748
862
|
support: "community" | "slack";
|
|
749
863
|
}>;
|
|
750
864
|
title: z.ZodString;
|
|
@@ -775,6 +889,10 @@ declare const PlanDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
775
889
|
canExceed?: boolean | undefined;
|
|
776
890
|
};
|
|
777
891
|
hasStagingEnvironment: boolean;
|
|
892
|
+
realtimeConcurrentConnections: {
|
|
893
|
+
number: number;
|
|
894
|
+
canExceed?: boolean | undefined;
|
|
895
|
+
};
|
|
778
896
|
support: "community" | "slack";
|
|
779
897
|
};
|
|
780
898
|
title: string;
|
|
@@ -804,6 +922,10 @@ declare const PlanDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
804
922
|
canExceed?: boolean | undefined;
|
|
805
923
|
};
|
|
806
924
|
hasStagingEnvironment: boolean;
|
|
925
|
+
realtimeConcurrentConnections: {
|
|
926
|
+
number: number;
|
|
927
|
+
canExceed?: boolean | undefined;
|
|
928
|
+
};
|
|
807
929
|
support: "community" | "slack";
|
|
808
930
|
};
|
|
809
931
|
title: string;
|
|
@@ -876,6 +998,16 @@ declare const PlanDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
876
998
|
canExceed?: boolean | undefined;
|
|
877
999
|
}>;
|
|
878
1000
|
hasStagingEnvironment: z.ZodBoolean;
|
|
1001
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
1002
|
+
number: z.ZodNumber;
|
|
1003
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
1004
|
+
}, "strip", z.ZodTypeAny, {
|
|
1005
|
+
number: number;
|
|
1006
|
+
canExceed?: boolean | undefined;
|
|
1007
|
+
}, {
|
|
1008
|
+
number: number;
|
|
1009
|
+
canExceed?: boolean | undefined;
|
|
1010
|
+
}>;
|
|
879
1011
|
support: z.ZodEnum<["community", "slack"]>;
|
|
880
1012
|
}, "strip", z.ZodTypeAny, {
|
|
881
1013
|
includedUsage: number;
|
|
@@ -900,6 +1032,10 @@ declare const PlanDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
900
1032
|
canExceed?: boolean | undefined;
|
|
901
1033
|
};
|
|
902
1034
|
hasStagingEnvironment: boolean;
|
|
1035
|
+
realtimeConcurrentConnections: {
|
|
1036
|
+
number: number;
|
|
1037
|
+
canExceed?: boolean | undefined;
|
|
1038
|
+
};
|
|
903
1039
|
support: "community" | "slack";
|
|
904
1040
|
}, {
|
|
905
1041
|
includedUsage: number;
|
|
@@ -924,6 +1060,10 @@ declare const PlanDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
924
1060
|
canExceed?: boolean | undefined;
|
|
925
1061
|
};
|
|
926
1062
|
hasStagingEnvironment: boolean;
|
|
1063
|
+
realtimeConcurrentConnections: {
|
|
1064
|
+
number: number;
|
|
1065
|
+
canExceed?: boolean | undefined;
|
|
1066
|
+
};
|
|
927
1067
|
support: "community" | "slack";
|
|
928
1068
|
}>;
|
|
929
1069
|
title: z.ZodString;
|
|
@@ -954,6 +1094,10 @@ declare const PlanDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
954
1094
|
canExceed?: boolean | undefined;
|
|
955
1095
|
};
|
|
956
1096
|
hasStagingEnvironment: boolean;
|
|
1097
|
+
realtimeConcurrentConnections: {
|
|
1098
|
+
number: number;
|
|
1099
|
+
canExceed?: boolean | undefined;
|
|
1100
|
+
};
|
|
957
1101
|
support: "community" | "slack";
|
|
958
1102
|
};
|
|
959
1103
|
title: string;
|
|
@@ -989,6 +1133,10 @@ declare const PlanDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
989
1133
|
canExceed?: boolean | undefined;
|
|
990
1134
|
};
|
|
991
1135
|
hasStagingEnvironment: boolean;
|
|
1136
|
+
realtimeConcurrentConnections: {
|
|
1137
|
+
number: number;
|
|
1138
|
+
canExceed?: boolean | undefined;
|
|
1139
|
+
};
|
|
992
1140
|
support: "community" | "slack";
|
|
993
1141
|
};
|
|
994
1142
|
title: string;
|
|
@@ -1053,6 +1201,16 @@ declare const PlanDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
1053
1201
|
canExceed?: boolean | undefined;
|
|
1054
1202
|
}>;
|
|
1055
1203
|
hasStagingEnvironment: z.ZodBoolean;
|
|
1204
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
1205
|
+
number: z.ZodNumber;
|
|
1206
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
1207
|
+
}, "strip", z.ZodTypeAny, {
|
|
1208
|
+
number: number;
|
|
1209
|
+
canExceed?: boolean | undefined;
|
|
1210
|
+
}, {
|
|
1211
|
+
number: number;
|
|
1212
|
+
canExceed?: boolean | undefined;
|
|
1213
|
+
}>;
|
|
1056
1214
|
support: z.ZodEnum<["community", "slack"]>;
|
|
1057
1215
|
}, "strip", z.ZodTypeAny, {
|
|
1058
1216
|
includedUsage: number;
|
|
@@ -1077,6 +1235,10 @@ declare const PlanDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
1077
1235
|
canExceed?: boolean | undefined;
|
|
1078
1236
|
};
|
|
1079
1237
|
hasStagingEnvironment: boolean;
|
|
1238
|
+
realtimeConcurrentConnections: {
|
|
1239
|
+
number: number;
|
|
1240
|
+
canExceed?: boolean | undefined;
|
|
1241
|
+
};
|
|
1080
1242
|
support: "community" | "slack";
|
|
1081
1243
|
}, {
|
|
1082
1244
|
includedUsage: number;
|
|
@@ -1101,6 +1263,10 @@ declare const PlanDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
1101
1263
|
canExceed?: boolean | undefined;
|
|
1102
1264
|
};
|
|
1103
1265
|
hasStagingEnvironment: boolean;
|
|
1266
|
+
realtimeConcurrentConnections: {
|
|
1267
|
+
number: number;
|
|
1268
|
+
canExceed?: boolean | undefined;
|
|
1269
|
+
};
|
|
1104
1270
|
support: "community" | "slack";
|
|
1105
1271
|
}>;
|
|
1106
1272
|
title: z.ZodString;
|
|
@@ -1131,6 +1297,10 @@ declare const PlanDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
1131
1297
|
canExceed?: boolean | undefined;
|
|
1132
1298
|
};
|
|
1133
1299
|
hasStagingEnvironment: boolean;
|
|
1300
|
+
realtimeConcurrentConnections: {
|
|
1301
|
+
number: number;
|
|
1302
|
+
canExceed?: boolean | undefined;
|
|
1303
|
+
};
|
|
1134
1304
|
support: "community" | "slack";
|
|
1135
1305
|
};
|
|
1136
1306
|
title: string;
|
|
@@ -1160,6 +1330,10 @@ declare const PlanDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
1160
1330
|
canExceed?: boolean | undefined;
|
|
1161
1331
|
};
|
|
1162
1332
|
hasStagingEnvironment: boolean;
|
|
1333
|
+
realtimeConcurrentConnections: {
|
|
1334
|
+
number: number;
|
|
1335
|
+
canExceed?: boolean | undefined;
|
|
1336
|
+
};
|
|
1163
1337
|
support: "community" | "slack";
|
|
1164
1338
|
};
|
|
1165
1339
|
title: string;
|
|
@@ -1241,6 +1415,16 @@ declare const Plans: z.ZodObject<{
|
|
|
1241
1415
|
canExceed?: boolean | undefined;
|
|
1242
1416
|
}>;
|
|
1243
1417
|
hasStagingEnvironment: z.ZodBoolean;
|
|
1418
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
1419
|
+
number: z.ZodNumber;
|
|
1420
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
1421
|
+
}, "strip", z.ZodTypeAny, {
|
|
1422
|
+
number: number;
|
|
1423
|
+
canExceed?: boolean | undefined;
|
|
1424
|
+
}, {
|
|
1425
|
+
number: number;
|
|
1426
|
+
canExceed?: boolean | undefined;
|
|
1427
|
+
}>;
|
|
1244
1428
|
support: z.ZodEnum<["community", "slack"]>;
|
|
1245
1429
|
}, "strip", z.ZodTypeAny, {
|
|
1246
1430
|
includedUsage: number;
|
|
@@ -1265,6 +1449,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1265
1449
|
canExceed?: boolean | undefined;
|
|
1266
1450
|
};
|
|
1267
1451
|
hasStagingEnvironment: boolean;
|
|
1452
|
+
realtimeConcurrentConnections: {
|
|
1453
|
+
number: number;
|
|
1454
|
+
canExceed?: boolean | undefined;
|
|
1455
|
+
};
|
|
1268
1456
|
support: "community" | "slack";
|
|
1269
1457
|
}, {
|
|
1270
1458
|
includedUsage: number;
|
|
@@ -1289,6 +1477,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1289
1477
|
canExceed?: boolean | undefined;
|
|
1290
1478
|
};
|
|
1291
1479
|
hasStagingEnvironment: boolean;
|
|
1480
|
+
realtimeConcurrentConnections: {
|
|
1481
|
+
number: number;
|
|
1482
|
+
canExceed?: boolean | undefined;
|
|
1483
|
+
};
|
|
1292
1484
|
support: "community" | "slack";
|
|
1293
1485
|
}>;
|
|
1294
1486
|
title: z.ZodString;
|
|
@@ -1319,6 +1511,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1319
1511
|
canExceed?: boolean | undefined;
|
|
1320
1512
|
};
|
|
1321
1513
|
hasStagingEnvironment: boolean;
|
|
1514
|
+
realtimeConcurrentConnections: {
|
|
1515
|
+
number: number;
|
|
1516
|
+
canExceed?: boolean | undefined;
|
|
1517
|
+
};
|
|
1322
1518
|
support: "community" | "slack";
|
|
1323
1519
|
};
|
|
1324
1520
|
title: string;
|
|
@@ -1348,6 +1544,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1348
1544
|
canExceed?: boolean | undefined;
|
|
1349
1545
|
};
|
|
1350
1546
|
hasStagingEnvironment: boolean;
|
|
1547
|
+
realtimeConcurrentConnections: {
|
|
1548
|
+
number: number;
|
|
1549
|
+
canExceed?: boolean | undefined;
|
|
1550
|
+
};
|
|
1351
1551
|
support: "community" | "slack";
|
|
1352
1552
|
};
|
|
1353
1553
|
title: string;
|
|
@@ -1421,6 +1621,16 @@ declare const Plans: z.ZodObject<{
|
|
|
1421
1621
|
canExceed?: boolean | undefined;
|
|
1422
1622
|
}>;
|
|
1423
1623
|
hasStagingEnvironment: z.ZodBoolean;
|
|
1624
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
1625
|
+
number: z.ZodNumber;
|
|
1626
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
1627
|
+
}, "strip", z.ZodTypeAny, {
|
|
1628
|
+
number: number;
|
|
1629
|
+
canExceed?: boolean | undefined;
|
|
1630
|
+
}, {
|
|
1631
|
+
number: number;
|
|
1632
|
+
canExceed?: boolean | undefined;
|
|
1633
|
+
}>;
|
|
1424
1634
|
support: z.ZodEnum<["community", "slack"]>;
|
|
1425
1635
|
}, "strip", z.ZodTypeAny, {
|
|
1426
1636
|
includedUsage: number;
|
|
@@ -1445,6 +1655,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1445
1655
|
canExceed?: boolean | undefined;
|
|
1446
1656
|
};
|
|
1447
1657
|
hasStagingEnvironment: boolean;
|
|
1658
|
+
realtimeConcurrentConnections: {
|
|
1659
|
+
number: number;
|
|
1660
|
+
canExceed?: boolean | undefined;
|
|
1661
|
+
};
|
|
1448
1662
|
support: "community" | "slack";
|
|
1449
1663
|
}, {
|
|
1450
1664
|
includedUsage: number;
|
|
@@ -1469,6 +1683,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1469
1683
|
canExceed?: boolean | undefined;
|
|
1470
1684
|
};
|
|
1471
1685
|
hasStagingEnvironment: boolean;
|
|
1686
|
+
realtimeConcurrentConnections: {
|
|
1687
|
+
number: number;
|
|
1688
|
+
canExceed?: boolean | undefined;
|
|
1689
|
+
};
|
|
1472
1690
|
support: "community" | "slack";
|
|
1473
1691
|
}>;
|
|
1474
1692
|
title: z.ZodString;
|
|
@@ -1499,6 +1717,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1499
1717
|
canExceed?: boolean | undefined;
|
|
1500
1718
|
};
|
|
1501
1719
|
hasStagingEnvironment: boolean;
|
|
1720
|
+
realtimeConcurrentConnections: {
|
|
1721
|
+
number: number;
|
|
1722
|
+
canExceed?: boolean | undefined;
|
|
1723
|
+
};
|
|
1502
1724
|
support: "community" | "slack";
|
|
1503
1725
|
};
|
|
1504
1726
|
title: string;
|
|
@@ -1534,6 +1756,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1534
1756
|
canExceed?: boolean | undefined;
|
|
1535
1757
|
};
|
|
1536
1758
|
hasStagingEnvironment: boolean;
|
|
1759
|
+
realtimeConcurrentConnections: {
|
|
1760
|
+
number: number;
|
|
1761
|
+
canExceed?: boolean | undefined;
|
|
1762
|
+
};
|
|
1537
1763
|
support: "community" | "slack";
|
|
1538
1764
|
};
|
|
1539
1765
|
title: string;
|
|
@@ -1613,6 +1839,16 @@ declare const Plans: z.ZodObject<{
|
|
|
1613
1839
|
canExceed?: boolean | undefined;
|
|
1614
1840
|
}>;
|
|
1615
1841
|
hasStagingEnvironment: z.ZodBoolean;
|
|
1842
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
1843
|
+
number: z.ZodNumber;
|
|
1844
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
1845
|
+
}, "strip", z.ZodTypeAny, {
|
|
1846
|
+
number: number;
|
|
1847
|
+
canExceed?: boolean | undefined;
|
|
1848
|
+
}, {
|
|
1849
|
+
number: number;
|
|
1850
|
+
canExceed?: boolean | undefined;
|
|
1851
|
+
}>;
|
|
1616
1852
|
support: z.ZodEnum<["community", "slack"]>;
|
|
1617
1853
|
}, "strip", z.ZodTypeAny, {
|
|
1618
1854
|
includedUsage: number;
|
|
@@ -1637,6 +1873,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1637
1873
|
canExceed?: boolean | undefined;
|
|
1638
1874
|
};
|
|
1639
1875
|
hasStagingEnvironment: boolean;
|
|
1876
|
+
realtimeConcurrentConnections: {
|
|
1877
|
+
number: number;
|
|
1878
|
+
canExceed?: boolean | undefined;
|
|
1879
|
+
};
|
|
1640
1880
|
support: "community" | "slack";
|
|
1641
1881
|
}, {
|
|
1642
1882
|
includedUsage: number;
|
|
@@ -1661,6 +1901,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1661
1901
|
canExceed?: boolean | undefined;
|
|
1662
1902
|
};
|
|
1663
1903
|
hasStagingEnvironment: boolean;
|
|
1904
|
+
realtimeConcurrentConnections: {
|
|
1905
|
+
number: number;
|
|
1906
|
+
canExceed?: boolean | undefined;
|
|
1907
|
+
};
|
|
1664
1908
|
support: "community" | "slack";
|
|
1665
1909
|
}>;
|
|
1666
1910
|
title: z.ZodString;
|
|
@@ -1691,6 +1935,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1691
1935
|
canExceed?: boolean | undefined;
|
|
1692
1936
|
};
|
|
1693
1937
|
hasStagingEnvironment: boolean;
|
|
1938
|
+
realtimeConcurrentConnections: {
|
|
1939
|
+
number: number;
|
|
1940
|
+
canExceed?: boolean | undefined;
|
|
1941
|
+
};
|
|
1694
1942
|
support: "community" | "slack";
|
|
1695
1943
|
};
|
|
1696
1944
|
title: string;
|
|
@@ -1726,6 +1974,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1726
1974
|
canExceed?: boolean | undefined;
|
|
1727
1975
|
};
|
|
1728
1976
|
hasStagingEnvironment: boolean;
|
|
1977
|
+
realtimeConcurrentConnections: {
|
|
1978
|
+
number: number;
|
|
1979
|
+
canExceed?: boolean | undefined;
|
|
1980
|
+
};
|
|
1729
1981
|
support: "community" | "slack";
|
|
1730
1982
|
};
|
|
1731
1983
|
title: string;
|
|
@@ -1791,6 +2043,16 @@ declare const Plans: z.ZodObject<{
|
|
|
1791
2043
|
canExceed?: boolean | undefined;
|
|
1792
2044
|
}>;
|
|
1793
2045
|
hasStagingEnvironment: z.ZodBoolean;
|
|
2046
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
2047
|
+
number: z.ZodNumber;
|
|
2048
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
2049
|
+
}, "strip", z.ZodTypeAny, {
|
|
2050
|
+
number: number;
|
|
2051
|
+
canExceed?: boolean | undefined;
|
|
2052
|
+
}, {
|
|
2053
|
+
number: number;
|
|
2054
|
+
canExceed?: boolean | undefined;
|
|
2055
|
+
}>;
|
|
1794
2056
|
support: z.ZodEnum<["community", "slack"]>;
|
|
1795
2057
|
}, "strip", z.ZodTypeAny, {
|
|
1796
2058
|
includedUsage: number;
|
|
@@ -1815,6 +2077,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1815
2077
|
canExceed?: boolean | undefined;
|
|
1816
2078
|
};
|
|
1817
2079
|
hasStagingEnvironment: boolean;
|
|
2080
|
+
realtimeConcurrentConnections: {
|
|
2081
|
+
number: number;
|
|
2082
|
+
canExceed?: boolean | undefined;
|
|
2083
|
+
};
|
|
1818
2084
|
support: "community" | "slack";
|
|
1819
2085
|
}, {
|
|
1820
2086
|
includedUsage: number;
|
|
@@ -1839,6 +2105,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1839
2105
|
canExceed?: boolean | undefined;
|
|
1840
2106
|
};
|
|
1841
2107
|
hasStagingEnvironment: boolean;
|
|
2108
|
+
realtimeConcurrentConnections: {
|
|
2109
|
+
number: number;
|
|
2110
|
+
canExceed?: boolean | undefined;
|
|
2111
|
+
};
|
|
1842
2112
|
support: "community" | "slack";
|
|
1843
2113
|
}>;
|
|
1844
2114
|
title: z.ZodString;
|
|
@@ -1869,6 +2139,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1869
2139
|
canExceed?: boolean | undefined;
|
|
1870
2140
|
};
|
|
1871
2141
|
hasStagingEnvironment: boolean;
|
|
2142
|
+
realtimeConcurrentConnections: {
|
|
2143
|
+
number: number;
|
|
2144
|
+
canExceed?: boolean | undefined;
|
|
2145
|
+
};
|
|
1872
2146
|
support: "community" | "slack";
|
|
1873
2147
|
};
|
|
1874
2148
|
title: string;
|
|
@@ -1898,6 +2172,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1898
2172
|
canExceed?: boolean | undefined;
|
|
1899
2173
|
};
|
|
1900
2174
|
hasStagingEnvironment: boolean;
|
|
2175
|
+
realtimeConcurrentConnections: {
|
|
2176
|
+
number: number;
|
|
2177
|
+
canExceed?: boolean | undefined;
|
|
2178
|
+
};
|
|
1901
2179
|
support: "community" | "slack";
|
|
1902
2180
|
};
|
|
1903
2181
|
title: string;
|
|
@@ -1929,6 +2207,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1929
2207
|
canExceed?: boolean | undefined;
|
|
1930
2208
|
};
|
|
1931
2209
|
hasStagingEnvironment: boolean;
|
|
2210
|
+
realtimeConcurrentConnections: {
|
|
2211
|
+
number: number;
|
|
2212
|
+
canExceed?: boolean | undefined;
|
|
2213
|
+
};
|
|
1932
2214
|
support: "community" | "slack";
|
|
1933
2215
|
};
|
|
1934
2216
|
title: string;
|
|
@@ -1959,6 +2241,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1959
2241
|
canExceed?: boolean | undefined;
|
|
1960
2242
|
};
|
|
1961
2243
|
hasStagingEnvironment: boolean;
|
|
2244
|
+
realtimeConcurrentConnections: {
|
|
2245
|
+
number: number;
|
|
2246
|
+
canExceed?: boolean | undefined;
|
|
2247
|
+
};
|
|
1962
2248
|
support: "community" | "slack";
|
|
1963
2249
|
};
|
|
1964
2250
|
title: string;
|
|
@@ -1989,6 +2275,10 @@ declare const Plans: z.ZodObject<{
|
|
|
1989
2275
|
canExceed?: boolean | undefined;
|
|
1990
2276
|
};
|
|
1991
2277
|
hasStagingEnvironment: boolean;
|
|
2278
|
+
realtimeConcurrentConnections: {
|
|
2279
|
+
number: number;
|
|
2280
|
+
canExceed?: boolean | undefined;
|
|
2281
|
+
};
|
|
1992
2282
|
support: "community" | "slack";
|
|
1993
2283
|
};
|
|
1994
2284
|
title: string;
|
|
@@ -2025,6 +2315,10 @@ declare const Plans: z.ZodObject<{
|
|
|
2025
2315
|
canExceed?: boolean | undefined;
|
|
2026
2316
|
};
|
|
2027
2317
|
hasStagingEnvironment: boolean;
|
|
2318
|
+
realtimeConcurrentConnections: {
|
|
2319
|
+
number: number;
|
|
2320
|
+
canExceed?: boolean | undefined;
|
|
2321
|
+
};
|
|
2028
2322
|
support: "community" | "slack";
|
|
2029
2323
|
};
|
|
2030
2324
|
title: string;
|
|
@@ -2062,6 +2356,10 @@ declare const Plans: z.ZodObject<{
|
|
|
2062
2356
|
canExceed?: boolean | undefined;
|
|
2063
2357
|
};
|
|
2064
2358
|
hasStagingEnvironment: boolean;
|
|
2359
|
+
realtimeConcurrentConnections: {
|
|
2360
|
+
number: number;
|
|
2361
|
+
canExceed?: boolean | undefined;
|
|
2362
|
+
};
|
|
2065
2363
|
support: "community" | "slack";
|
|
2066
2364
|
};
|
|
2067
2365
|
title: string;
|
|
@@ -2092,6 +2390,10 @@ declare const Plans: z.ZodObject<{
|
|
|
2092
2390
|
canExceed?: boolean | undefined;
|
|
2093
2391
|
};
|
|
2094
2392
|
hasStagingEnvironment: boolean;
|
|
2393
|
+
realtimeConcurrentConnections: {
|
|
2394
|
+
number: number;
|
|
2395
|
+
canExceed?: boolean | undefined;
|
|
2396
|
+
};
|
|
2095
2397
|
support: "community" | "slack";
|
|
2096
2398
|
};
|
|
2097
2399
|
title: string;
|
|
@@ -2122,6 +2424,10 @@ declare const Plans: z.ZodObject<{
|
|
|
2122
2424
|
canExceed?: boolean | undefined;
|
|
2123
2425
|
};
|
|
2124
2426
|
hasStagingEnvironment: boolean;
|
|
2427
|
+
realtimeConcurrentConnections: {
|
|
2428
|
+
number: number;
|
|
2429
|
+
canExceed?: boolean | undefined;
|
|
2430
|
+
};
|
|
2125
2431
|
support: "community" | "slack";
|
|
2126
2432
|
};
|
|
2127
2433
|
title: string;
|
|
@@ -2158,6 +2464,10 @@ declare const Plans: z.ZodObject<{
|
|
|
2158
2464
|
canExceed?: boolean | undefined;
|
|
2159
2465
|
};
|
|
2160
2466
|
hasStagingEnvironment: boolean;
|
|
2467
|
+
realtimeConcurrentConnections: {
|
|
2468
|
+
number: number;
|
|
2469
|
+
canExceed?: boolean | undefined;
|
|
2470
|
+
};
|
|
2161
2471
|
support: "community" | "slack";
|
|
2162
2472
|
};
|
|
2163
2473
|
title: string;
|
|
@@ -2227,6 +2537,16 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2227
2537
|
canExceed?: boolean | undefined;
|
|
2228
2538
|
}>;
|
|
2229
2539
|
hasStagingEnvironment: z.ZodBoolean;
|
|
2540
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
2541
|
+
number: z.ZodNumber;
|
|
2542
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
2543
|
+
}, "strip", z.ZodTypeAny, {
|
|
2544
|
+
number: number;
|
|
2545
|
+
canExceed?: boolean | undefined;
|
|
2546
|
+
}, {
|
|
2547
|
+
number: number;
|
|
2548
|
+
canExceed?: boolean | undefined;
|
|
2549
|
+
}>;
|
|
2230
2550
|
support: z.ZodEnum<["community", "slack"]>;
|
|
2231
2551
|
}, "strip", z.ZodTypeAny, {
|
|
2232
2552
|
includedUsage: number;
|
|
@@ -2251,6 +2571,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2251
2571
|
canExceed?: boolean | undefined;
|
|
2252
2572
|
};
|
|
2253
2573
|
hasStagingEnvironment: boolean;
|
|
2574
|
+
realtimeConcurrentConnections: {
|
|
2575
|
+
number: number;
|
|
2576
|
+
canExceed?: boolean | undefined;
|
|
2577
|
+
};
|
|
2254
2578
|
support: "community" | "slack";
|
|
2255
2579
|
}, {
|
|
2256
2580
|
includedUsage: number;
|
|
@@ -2275,6 +2599,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2275
2599
|
canExceed?: boolean | undefined;
|
|
2276
2600
|
};
|
|
2277
2601
|
hasStagingEnvironment: boolean;
|
|
2602
|
+
realtimeConcurrentConnections: {
|
|
2603
|
+
number: number;
|
|
2604
|
+
canExceed?: boolean | undefined;
|
|
2605
|
+
};
|
|
2278
2606
|
support: "community" | "slack";
|
|
2279
2607
|
}>;
|
|
2280
2608
|
title: z.ZodString;
|
|
@@ -2305,6 +2633,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2305
2633
|
canExceed?: boolean | undefined;
|
|
2306
2634
|
};
|
|
2307
2635
|
hasStagingEnvironment: boolean;
|
|
2636
|
+
realtimeConcurrentConnections: {
|
|
2637
|
+
number: number;
|
|
2638
|
+
canExceed?: boolean | undefined;
|
|
2639
|
+
};
|
|
2308
2640
|
support: "community" | "slack";
|
|
2309
2641
|
};
|
|
2310
2642
|
title: string;
|
|
@@ -2334,6 +2666,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2334
2666
|
canExceed?: boolean | undefined;
|
|
2335
2667
|
};
|
|
2336
2668
|
hasStagingEnvironment: boolean;
|
|
2669
|
+
realtimeConcurrentConnections: {
|
|
2670
|
+
number: number;
|
|
2671
|
+
canExceed?: boolean | undefined;
|
|
2672
|
+
};
|
|
2337
2673
|
support: "community" | "slack";
|
|
2338
2674
|
};
|
|
2339
2675
|
title: string;
|
|
@@ -2407,6 +2743,16 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2407
2743
|
canExceed?: boolean | undefined;
|
|
2408
2744
|
}>;
|
|
2409
2745
|
hasStagingEnvironment: z.ZodBoolean;
|
|
2746
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
2747
|
+
number: z.ZodNumber;
|
|
2748
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
2749
|
+
}, "strip", z.ZodTypeAny, {
|
|
2750
|
+
number: number;
|
|
2751
|
+
canExceed?: boolean | undefined;
|
|
2752
|
+
}, {
|
|
2753
|
+
number: number;
|
|
2754
|
+
canExceed?: boolean | undefined;
|
|
2755
|
+
}>;
|
|
2410
2756
|
support: z.ZodEnum<["community", "slack"]>;
|
|
2411
2757
|
}, "strip", z.ZodTypeAny, {
|
|
2412
2758
|
includedUsage: number;
|
|
@@ -2431,6 +2777,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2431
2777
|
canExceed?: boolean | undefined;
|
|
2432
2778
|
};
|
|
2433
2779
|
hasStagingEnvironment: boolean;
|
|
2780
|
+
realtimeConcurrentConnections: {
|
|
2781
|
+
number: number;
|
|
2782
|
+
canExceed?: boolean | undefined;
|
|
2783
|
+
};
|
|
2434
2784
|
support: "community" | "slack";
|
|
2435
2785
|
}, {
|
|
2436
2786
|
includedUsage: number;
|
|
@@ -2455,6 +2805,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2455
2805
|
canExceed?: boolean | undefined;
|
|
2456
2806
|
};
|
|
2457
2807
|
hasStagingEnvironment: boolean;
|
|
2808
|
+
realtimeConcurrentConnections: {
|
|
2809
|
+
number: number;
|
|
2810
|
+
canExceed?: boolean | undefined;
|
|
2811
|
+
};
|
|
2458
2812
|
support: "community" | "slack";
|
|
2459
2813
|
}>;
|
|
2460
2814
|
title: z.ZodString;
|
|
@@ -2485,6 +2839,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2485
2839
|
canExceed?: boolean | undefined;
|
|
2486
2840
|
};
|
|
2487
2841
|
hasStagingEnvironment: boolean;
|
|
2842
|
+
realtimeConcurrentConnections: {
|
|
2843
|
+
number: number;
|
|
2844
|
+
canExceed?: boolean | undefined;
|
|
2845
|
+
};
|
|
2488
2846
|
support: "community" | "slack";
|
|
2489
2847
|
};
|
|
2490
2848
|
title: string;
|
|
@@ -2520,6 +2878,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2520
2878
|
canExceed?: boolean | undefined;
|
|
2521
2879
|
};
|
|
2522
2880
|
hasStagingEnvironment: boolean;
|
|
2881
|
+
realtimeConcurrentConnections: {
|
|
2882
|
+
number: number;
|
|
2883
|
+
canExceed?: boolean | undefined;
|
|
2884
|
+
};
|
|
2523
2885
|
support: "community" | "slack";
|
|
2524
2886
|
};
|
|
2525
2887
|
title: string;
|
|
@@ -2599,6 +2961,16 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2599
2961
|
canExceed?: boolean | undefined;
|
|
2600
2962
|
}>;
|
|
2601
2963
|
hasStagingEnvironment: z.ZodBoolean;
|
|
2964
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
2965
|
+
number: z.ZodNumber;
|
|
2966
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
2967
|
+
}, "strip", z.ZodTypeAny, {
|
|
2968
|
+
number: number;
|
|
2969
|
+
canExceed?: boolean | undefined;
|
|
2970
|
+
}, {
|
|
2971
|
+
number: number;
|
|
2972
|
+
canExceed?: boolean | undefined;
|
|
2973
|
+
}>;
|
|
2602
2974
|
support: z.ZodEnum<["community", "slack"]>;
|
|
2603
2975
|
}, "strip", z.ZodTypeAny, {
|
|
2604
2976
|
includedUsage: number;
|
|
@@ -2623,6 +2995,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2623
2995
|
canExceed?: boolean | undefined;
|
|
2624
2996
|
};
|
|
2625
2997
|
hasStagingEnvironment: boolean;
|
|
2998
|
+
realtimeConcurrentConnections: {
|
|
2999
|
+
number: number;
|
|
3000
|
+
canExceed?: boolean | undefined;
|
|
3001
|
+
};
|
|
2626
3002
|
support: "community" | "slack";
|
|
2627
3003
|
}, {
|
|
2628
3004
|
includedUsage: number;
|
|
@@ -2647,6 +3023,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2647
3023
|
canExceed?: boolean | undefined;
|
|
2648
3024
|
};
|
|
2649
3025
|
hasStagingEnvironment: boolean;
|
|
3026
|
+
realtimeConcurrentConnections: {
|
|
3027
|
+
number: number;
|
|
3028
|
+
canExceed?: boolean | undefined;
|
|
3029
|
+
};
|
|
2650
3030
|
support: "community" | "slack";
|
|
2651
3031
|
}>;
|
|
2652
3032
|
title: z.ZodString;
|
|
@@ -2677,6 +3057,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2677
3057
|
canExceed?: boolean | undefined;
|
|
2678
3058
|
};
|
|
2679
3059
|
hasStagingEnvironment: boolean;
|
|
3060
|
+
realtimeConcurrentConnections: {
|
|
3061
|
+
number: number;
|
|
3062
|
+
canExceed?: boolean | undefined;
|
|
3063
|
+
};
|
|
2680
3064
|
support: "community" | "slack";
|
|
2681
3065
|
};
|
|
2682
3066
|
title: string;
|
|
@@ -2712,6 +3096,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2712
3096
|
canExceed?: boolean | undefined;
|
|
2713
3097
|
};
|
|
2714
3098
|
hasStagingEnvironment: boolean;
|
|
3099
|
+
realtimeConcurrentConnections: {
|
|
3100
|
+
number: number;
|
|
3101
|
+
canExceed?: boolean | undefined;
|
|
3102
|
+
};
|
|
2715
3103
|
support: "community" | "slack";
|
|
2716
3104
|
};
|
|
2717
3105
|
title: string;
|
|
@@ -2777,6 +3165,16 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2777
3165
|
canExceed?: boolean | undefined;
|
|
2778
3166
|
}>;
|
|
2779
3167
|
hasStagingEnvironment: z.ZodBoolean;
|
|
3168
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
3169
|
+
number: z.ZodNumber;
|
|
3170
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
3171
|
+
}, "strip", z.ZodTypeAny, {
|
|
3172
|
+
number: number;
|
|
3173
|
+
canExceed?: boolean | undefined;
|
|
3174
|
+
}, {
|
|
3175
|
+
number: number;
|
|
3176
|
+
canExceed?: boolean | undefined;
|
|
3177
|
+
}>;
|
|
2780
3178
|
support: z.ZodEnum<["community", "slack"]>;
|
|
2781
3179
|
}, "strip", z.ZodTypeAny, {
|
|
2782
3180
|
includedUsage: number;
|
|
@@ -2801,6 +3199,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2801
3199
|
canExceed?: boolean | undefined;
|
|
2802
3200
|
};
|
|
2803
3201
|
hasStagingEnvironment: boolean;
|
|
3202
|
+
realtimeConcurrentConnections: {
|
|
3203
|
+
number: number;
|
|
3204
|
+
canExceed?: boolean | undefined;
|
|
3205
|
+
};
|
|
2804
3206
|
support: "community" | "slack";
|
|
2805
3207
|
}, {
|
|
2806
3208
|
includedUsage: number;
|
|
@@ -2825,6 +3227,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2825
3227
|
canExceed?: boolean | undefined;
|
|
2826
3228
|
};
|
|
2827
3229
|
hasStagingEnvironment: boolean;
|
|
3230
|
+
realtimeConcurrentConnections: {
|
|
3231
|
+
number: number;
|
|
3232
|
+
canExceed?: boolean | undefined;
|
|
3233
|
+
};
|
|
2828
3234
|
support: "community" | "slack";
|
|
2829
3235
|
}>;
|
|
2830
3236
|
title: z.ZodString;
|
|
@@ -2854,7 +3260,11 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2854
3260
|
number: number;
|
|
2855
3261
|
canExceed?: boolean | undefined;
|
|
2856
3262
|
};
|
|
2857
|
-
hasStagingEnvironment: boolean;
|
|
3263
|
+
hasStagingEnvironment: boolean;
|
|
3264
|
+
realtimeConcurrentConnections: {
|
|
3265
|
+
number: number;
|
|
3266
|
+
canExceed?: boolean | undefined;
|
|
3267
|
+
};
|
|
2858
3268
|
support: "community" | "slack";
|
|
2859
3269
|
};
|
|
2860
3270
|
title: string;
|
|
@@ -2884,6 +3294,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2884
3294
|
canExceed?: boolean | undefined;
|
|
2885
3295
|
};
|
|
2886
3296
|
hasStagingEnvironment: boolean;
|
|
3297
|
+
realtimeConcurrentConnections: {
|
|
3298
|
+
number: number;
|
|
3299
|
+
canExceed?: boolean | undefined;
|
|
3300
|
+
};
|
|
2887
3301
|
support: "community" | "slack";
|
|
2888
3302
|
};
|
|
2889
3303
|
title: string;
|
|
@@ -2915,6 +3329,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2915
3329
|
canExceed?: boolean | undefined;
|
|
2916
3330
|
};
|
|
2917
3331
|
hasStagingEnvironment: boolean;
|
|
3332
|
+
realtimeConcurrentConnections: {
|
|
3333
|
+
number: number;
|
|
3334
|
+
canExceed?: boolean | undefined;
|
|
3335
|
+
};
|
|
2918
3336
|
support: "community" | "slack";
|
|
2919
3337
|
};
|
|
2920
3338
|
title: string;
|
|
@@ -2945,6 +3363,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2945
3363
|
canExceed?: boolean | undefined;
|
|
2946
3364
|
};
|
|
2947
3365
|
hasStagingEnvironment: boolean;
|
|
3366
|
+
realtimeConcurrentConnections: {
|
|
3367
|
+
number: number;
|
|
3368
|
+
canExceed?: boolean | undefined;
|
|
3369
|
+
};
|
|
2948
3370
|
support: "community" | "slack";
|
|
2949
3371
|
};
|
|
2950
3372
|
title: string;
|
|
@@ -2975,6 +3397,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
2975
3397
|
canExceed?: boolean | undefined;
|
|
2976
3398
|
};
|
|
2977
3399
|
hasStagingEnvironment: boolean;
|
|
3400
|
+
realtimeConcurrentConnections: {
|
|
3401
|
+
number: number;
|
|
3402
|
+
canExceed?: boolean | undefined;
|
|
3403
|
+
};
|
|
2978
3404
|
support: "community" | "slack";
|
|
2979
3405
|
};
|
|
2980
3406
|
title: string;
|
|
@@ -3011,6 +3437,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
3011
3437
|
canExceed?: boolean | undefined;
|
|
3012
3438
|
};
|
|
3013
3439
|
hasStagingEnvironment: boolean;
|
|
3440
|
+
realtimeConcurrentConnections: {
|
|
3441
|
+
number: number;
|
|
3442
|
+
canExceed?: boolean | undefined;
|
|
3443
|
+
};
|
|
3014
3444
|
support: "community" | "slack";
|
|
3015
3445
|
};
|
|
3016
3446
|
title: string;
|
|
@@ -3048,6 +3478,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
3048
3478
|
canExceed?: boolean | undefined;
|
|
3049
3479
|
};
|
|
3050
3480
|
hasStagingEnvironment: boolean;
|
|
3481
|
+
realtimeConcurrentConnections: {
|
|
3482
|
+
number: number;
|
|
3483
|
+
canExceed?: boolean | undefined;
|
|
3484
|
+
};
|
|
3051
3485
|
support: "community" | "slack";
|
|
3052
3486
|
};
|
|
3053
3487
|
title: string;
|
|
@@ -3078,6 +3512,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
3078
3512
|
canExceed?: boolean | undefined;
|
|
3079
3513
|
};
|
|
3080
3514
|
hasStagingEnvironment: boolean;
|
|
3515
|
+
realtimeConcurrentConnections: {
|
|
3516
|
+
number: number;
|
|
3517
|
+
canExceed?: boolean | undefined;
|
|
3518
|
+
};
|
|
3081
3519
|
support: "community" | "slack";
|
|
3082
3520
|
};
|
|
3083
3521
|
title: string;
|
|
@@ -3108,6 +3546,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
3108
3546
|
canExceed?: boolean | undefined;
|
|
3109
3547
|
};
|
|
3110
3548
|
hasStagingEnvironment: boolean;
|
|
3549
|
+
realtimeConcurrentConnections: {
|
|
3550
|
+
number: number;
|
|
3551
|
+
canExceed?: boolean | undefined;
|
|
3552
|
+
};
|
|
3111
3553
|
support: "community" | "slack";
|
|
3112
3554
|
};
|
|
3113
3555
|
title: string;
|
|
@@ -3144,6 +3586,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
3144
3586
|
canExceed?: boolean | undefined;
|
|
3145
3587
|
};
|
|
3146
3588
|
hasStagingEnvironment: boolean;
|
|
3589
|
+
realtimeConcurrentConnections: {
|
|
3590
|
+
number: number;
|
|
3591
|
+
canExceed?: boolean | undefined;
|
|
3592
|
+
};
|
|
3147
3593
|
support: "community" | "slack";
|
|
3148
3594
|
};
|
|
3149
3595
|
title: string;
|
|
@@ -3226,6 +3672,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
3226
3672
|
canExceed?: boolean | undefined;
|
|
3227
3673
|
};
|
|
3228
3674
|
hasStagingEnvironment: boolean;
|
|
3675
|
+
realtimeConcurrentConnections: {
|
|
3676
|
+
number: number;
|
|
3677
|
+
canExceed?: boolean | undefined;
|
|
3678
|
+
};
|
|
3229
3679
|
support: "community" | "slack";
|
|
3230
3680
|
};
|
|
3231
3681
|
title: string;
|
|
@@ -3256,6 +3706,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
3256
3706
|
canExceed?: boolean | undefined;
|
|
3257
3707
|
};
|
|
3258
3708
|
hasStagingEnvironment: boolean;
|
|
3709
|
+
realtimeConcurrentConnections: {
|
|
3710
|
+
number: number;
|
|
3711
|
+
canExceed?: boolean | undefined;
|
|
3712
|
+
};
|
|
3259
3713
|
support: "community" | "slack";
|
|
3260
3714
|
};
|
|
3261
3715
|
title: string;
|
|
@@ -3286,6 +3740,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
3286
3740
|
canExceed?: boolean | undefined;
|
|
3287
3741
|
};
|
|
3288
3742
|
hasStagingEnvironment: boolean;
|
|
3743
|
+
realtimeConcurrentConnections: {
|
|
3744
|
+
number: number;
|
|
3745
|
+
canExceed?: boolean | undefined;
|
|
3746
|
+
};
|
|
3289
3747
|
support: "community" | "slack";
|
|
3290
3748
|
};
|
|
3291
3749
|
title: string;
|
|
@@ -3322,6 +3780,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
3322
3780
|
canExceed?: boolean | undefined;
|
|
3323
3781
|
};
|
|
3324
3782
|
hasStagingEnvironment: boolean;
|
|
3783
|
+
realtimeConcurrentConnections: {
|
|
3784
|
+
number: number;
|
|
3785
|
+
canExceed?: boolean | undefined;
|
|
3786
|
+
};
|
|
3325
3787
|
support: "community" | "slack";
|
|
3326
3788
|
};
|
|
3327
3789
|
title: string;
|
|
@@ -3372,6 +3834,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
3372
3834
|
canExceed?: boolean | undefined;
|
|
3373
3835
|
};
|
|
3374
3836
|
hasStagingEnvironment: boolean;
|
|
3837
|
+
realtimeConcurrentConnections: {
|
|
3838
|
+
number: number;
|
|
3839
|
+
canExceed?: boolean | undefined;
|
|
3840
|
+
};
|
|
3375
3841
|
support: "community" | "slack";
|
|
3376
3842
|
};
|
|
3377
3843
|
title: string;
|
|
@@ -3402,6 +3868,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
3402
3868
|
canExceed?: boolean | undefined;
|
|
3403
3869
|
};
|
|
3404
3870
|
hasStagingEnvironment: boolean;
|
|
3871
|
+
realtimeConcurrentConnections: {
|
|
3872
|
+
number: number;
|
|
3873
|
+
canExceed?: boolean | undefined;
|
|
3874
|
+
};
|
|
3405
3875
|
support: "community" | "slack";
|
|
3406
3876
|
};
|
|
3407
3877
|
title: string;
|
|
@@ -3432,6 +3902,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
3432
3902
|
canExceed?: boolean | undefined;
|
|
3433
3903
|
};
|
|
3434
3904
|
hasStagingEnvironment: boolean;
|
|
3905
|
+
realtimeConcurrentConnections: {
|
|
3906
|
+
number: number;
|
|
3907
|
+
canExceed?: boolean | undefined;
|
|
3908
|
+
};
|
|
3435
3909
|
support: "community" | "slack";
|
|
3436
3910
|
};
|
|
3437
3911
|
title: string;
|
|
@@ -3468,6 +3942,10 @@ declare const PlansResult: z.ZodObject<{
|
|
|
3468
3942
|
canExceed?: boolean | undefined;
|
|
3469
3943
|
};
|
|
3470
3944
|
hasStagingEnvironment: boolean;
|
|
3945
|
+
realtimeConcurrentConnections: {
|
|
3946
|
+
number: number;
|
|
3947
|
+
canExceed?: boolean | undefined;
|
|
3948
|
+
};
|
|
3471
3949
|
support: "community" | "slack";
|
|
3472
3950
|
};
|
|
3473
3951
|
title: string;
|
|
@@ -3554,6 +4032,16 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
3554
4032
|
canExceed?: boolean | undefined;
|
|
3555
4033
|
}>;
|
|
3556
4034
|
hasStagingEnvironment: z.ZodBoolean;
|
|
4035
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
4036
|
+
number: z.ZodNumber;
|
|
4037
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
4038
|
+
}, "strip", z.ZodTypeAny, {
|
|
4039
|
+
number: number;
|
|
4040
|
+
canExceed?: boolean | undefined;
|
|
4041
|
+
}, {
|
|
4042
|
+
number: number;
|
|
4043
|
+
canExceed?: boolean | undefined;
|
|
4044
|
+
}>;
|
|
3557
4045
|
support: z.ZodEnum<["community", "slack"]>;
|
|
3558
4046
|
}, "strip", z.ZodTypeAny, {
|
|
3559
4047
|
includedUsage: number;
|
|
@@ -3578,6 +4066,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
3578
4066
|
canExceed?: boolean | undefined;
|
|
3579
4067
|
};
|
|
3580
4068
|
hasStagingEnvironment: boolean;
|
|
4069
|
+
realtimeConcurrentConnections: {
|
|
4070
|
+
number: number;
|
|
4071
|
+
canExceed?: boolean | undefined;
|
|
4072
|
+
};
|
|
3581
4073
|
support: "community" | "slack";
|
|
3582
4074
|
}, {
|
|
3583
4075
|
includedUsage: number;
|
|
@@ -3602,6 +4094,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
3602
4094
|
canExceed?: boolean | undefined;
|
|
3603
4095
|
};
|
|
3604
4096
|
hasStagingEnvironment: boolean;
|
|
4097
|
+
realtimeConcurrentConnections: {
|
|
4098
|
+
number: number;
|
|
4099
|
+
canExceed?: boolean | undefined;
|
|
4100
|
+
};
|
|
3605
4101
|
support: "community" | "slack";
|
|
3606
4102
|
}>;
|
|
3607
4103
|
title: z.ZodString;
|
|
@@ -3632,6 +4128,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
3632
4128
|
canExceed?: boolean | undefined;
|
|
3633
4129
|
};
|
|
3634
4130
|
hasStagingEnvironment: boolean;
|
|
4131
|
+
realtimeConcurrentConnections: {
|
|
4132
|
+
number: number;
|
|
4133
|
+
canExceed?: boolean | undefined;
|
|
4134
|
+
};
|
|
3635
4135
|
support: "community" | "slack";
|
|
3636
4136
|
};
|
|
3637
4137
|
title: string;
|
|
@@ -3661,6 +4161,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
3661
4161
|
canExceed?: boolean | undefined;
|
|
3662
4162
|
};
|
|
3663
4163
|
hasStagingEnvironment: boolean;
|
|
4164
|
+
realtimeConcurrentConnections: {
|
|
4165
|
+
number: number;
|
|
4166
|
+
canExceed?: boolean | undefined;
|
|
4167
|
+
};
|
|
3664
4168
|
support: "community" | "slack";
|
|
3665
4169
|
};
|
|
3666
4170
|
title: string;
|
|
@@ -3733,6 +4237,16 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
3733
4237
|
canExceed?: boolean | undefined;
|
|
3734
4238
|
}>;
|
|
3735
4239
|
hasStagingEnvironment: z.ZodBoolean;
|
|
4240
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
4241
|
+
number: z.ZodNumber;
|
|
4242
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
4243
|
+
}, "strip", z.ZodTypeAny, {
|
|
4244
|
+
number: number;
|
|
4245
|
+
canExceed?: boolean | undefined;
|
|
4246
|
+
}, {
|
|
4247
|
+
number: number;
|
|
4248
|
+
canExceed?: boolean | undefined;
|
|
4249
|
+
}>;
|
|
3736
4250
|
support: z.ZodEnum<["community", "slack"]>;
|
|
3737
4251
|
}, "strip", z.ZodTypeAny, {
|
|
3738
4252
|
includedUsage: number;
|
|
@@ -3757,6 +4271,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
3757
4271
|
canExceed?: boolean | undefined;
|
|
3758
4272
|
};
|
|
3759
4273
|
hasStagingEnvironment: boolean;
|
|
4274
|
+
realtimeConcurrentConnections: {
|
|
4275
|
+
number: number;
|
|
4276
|
+
canExceed?: boolean | undefined;
|
|
4277
|
+
};
|
|
3760
4278
|
support: "community" | "slack";
|
|
3761
4279
|
}, {
|
|
3762
4280
|
includedUsage: number;
|
|
@@ -3781,6 +4299,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
3781
4299
|
canExceed?: boolean | undefined;
|
|
3782
4300
|
};
|
|
3783
4301
|
hasStagingEnvironment: boolean;
|
|
4302
|
+
realtimeConcurrentConnections: {
|
|
4303
|
+
number: number;
|
|
4304
|
+
canExceed?: boolean | undefined;
|
|
4305
|
+
};
|
|
3784
4306
|
support: "community" | "slack";
|
|
3785
4307
|
}>;
|
|
3786
4308
|
title: z.ZodString;
|
|
@@ -3811,6 +4333,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
3811
4333
|
canExceed?: boolean | undefined;
|
|
3812
4334
|
};
|
|
3813
4335
|
hasStagingEnvironment: boolean;
|
|
4336
|
+
realtimeConcurrentConnections: {
|
|
4337
|
+
number: number;
|
|
4338
|
+
canExceed?: boolean | undefined;
|
|
4339
|
+
};
|
|
3814
4340
|
support: "community" | "slack";
|
|
3815
4341
|
};
|
|
3816
4342
|
title: string;
|
|
@@ -3846,6 +4372,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
3846
4372
|
canExceed?: boolean | undefined;
|
|
3847
4373
|
};
|
|
3848
4374
|
hasStagingEnvironment: boolean;
|
|
4375
|
+
realtimeConcurrentConnections: {
|
|
4376
|
+
number: number;
|
|
4377
|
+
canExceed?: boolean | undefined;
|
|
4378
|
+
};
|
|
3849
4379
|
support: "community" | "slack";
|
|
3850
4380
|
};
|
|
3851
4381
|
title: string;
|
|
@@ -3910,6 +4440,16 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
3910
4440
|
canExceed?: boolean | undefined;
|
|
3911
4441
|
}>;
|
|
3912
4442
|
hasStagingEnvironment: z.ZodBoolean;
|
|
4443
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
4444
|
+
number: z.ZodNumber;
|
|
4445
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
4446
|
+
}, "strip", z.ZodTypeAny, {
|
|
4447
|
+
number: number;
|
|
4448
|
+
canExceed?: boolean | undefined;
|
|
4449
|
+
}, {
|
|
4450
|
+
number: number;
|
|
4451
|
+
canExceed?: boolean | undefined;
|
|
4452
|
+
}>;
|
|
3913
4453
|
support: z.ZodEnum<["community", "slack"]>;
|
|
3914
4454
|
}, "strip", z.ZodTypeAny, {
|
|
3915
4455
|
includedUsage: number;
|
|
@@ -3934,6 +4474,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
3934
4474
|
canExceed?: boolean | undefined;
|
|
3935
4475
|
};
|
|
3936
4476
|
hasStagingEnvironment: boolean;
|
|
4477
|
+
realtimeConcurrentConnections: {
|
|
4478
|
+
number: number;
|
|
4479
|
+
canExceed?: boolean | undefined;
|
|
4480
|
+
};
|
|
3937
4481
|
support: "community" | "slack";
|
|
3938
4482
|
}, {
|
|
3939
4483
|
includedUsage: number;
|
|
@@ -3958,6 +4502,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
3958
4502
|
canExceed?: boolean | undefined;
|
|
3959
4503
|
};
|
|
3960
4504
|
hasStagingEnvironment: boolean;
|
|
4505
|
+
realtimeConcurrentConnections: {
|
|
4506
|
+
number: number;
|
|
4507
|
+
canExceed?: boolean | undefined;
|
|
4508
|
+
};
|
|
3961
4509
|
support: "community" | "slack";
|
|
3962
4510
|
}>;
|
|
3963
4511
|
title: z.ZodString;
|
|
@@ -3988,6 +4536,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
3988
4536
|
canExceed?: boolean | undefined;
|
|
3989
4537
|
};
|
|
3990
4538
|
hasStagingEnvironment: boolean;
|
|
4539
|
+
realtimeConcurrentConnections: {
|
|
4540
|
+
number: number;
|
|
4541
|
+
canExceed?: boolean | undefined;
|
|
4542
|
+
};
|
|
3991
4543
|
support: "community" | "slack";
|
|
3992
4544
|
};
|
|
3993
4545
|
title: string;
|
|
@@ -4017,6 +4569,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
4017
4569
|
canExceed?: boolean | undefined;
|
|
4018
4570
|
};
|
|
4019
4571
|
hasStagingEnvironment: boolean;
|
|
4572
|
+
realtimeConcurrentConnections: {
|
|
4573
|
+
number: number;
|
|
4574
|
+
canExceed?: boolean | undefined;
|
|
4575
|
+
};
|
|
4020
4576
|
support: "community" | "slack";
|
|
4021
4577
|
};
|
|
4022
4578
|
title: string;
|
|
@@ -4051,6 +4607,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
4051
4607
|
canExceed?: boolean | undefined;
|
|
4052
4608
|
};
|
|
4053
4609
|
hasStagingEnvironment: boolean;
|
|
4610
|
+
realtimeConcurrentConnections: {
|
|
4611
|
+
number: number;
|
|
4612
|
+
canExceed?: boolean | undefined;
|
|
4613
|
+
};
|
|
4054
4614
|
support: "community" | "slack";
|
|
4055
4615
|
};
|
|
4056
4616
|
title: string;
|
|
@@ -4080,6 +4640,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
4080
4640
|
canExceed?: boolean | undefined;
|
|
4081
4641
|
};
|
|
4082
4642
|
hasStagingEnvironment: boolean;
|
|
4643
|
+
realtimeConcurrentConnections: {
|
|
4644
|
+
number: number;
|
|
4645
|
+
canExceed?: boolean | undefined;
|
|
4646
|
+
};
|
|
4083
4647
|
support: "community" | "slack";
|
|
4084
4648
|
};
|
|
4085
4649
|
title: string;
|
|
@@ -4115,6 +4679,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
4115
4679
|
canExceed?: boolean | undefined;
|
|
4116
4680
|
};
|
|
4117
4681
|
hasStagingEnvironment: boolean;
|
|
4682
|
+
realtimeConcurrentConnections: {
|
|
4683
|
+
number: number;
|
|
4684
|
+
canExceed?: boolean | undefined;
|
|
4685
|
+
};
|
|
4118
4686
|
support: "community" | "slack";
|
|
4119
4687
|
};
|
|
4120
4688
|
title: string;
|
|
@@ -4149,6 +4717,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
4149
4717
|
canExceed?: boolean | undefined;
|
|
4150
4718
|
};
|
|
4151
4719
|
hasStagingEnvironment: boolean;
|
|
4720
|
+
realtimeConcurrentConnections: {
|
|
4721
|
+
number: number;
|
|
4722
|
+
canExceed?: boolean | undefined;
|
|
4723
|
+
};
|
|
4152
4724
|
support: "community" | "slack";
|
|
4153
4725
|
};
|
|
4154
4726
|
title: string;
|
|
@@ -4178,6 +4750,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
4178
4750
|
canExceed?: boolean | undefined;
|
|
4179
4751
|
};
|
|
4180
4752
|
hasStagingEnvironment: boolean;
|
|
4753
|
+
realtimeConcurrentConnections: {
|
|
4754
|
+
number: number;
|
|
4755
|
+
canExceed?: boolean | undefined;
|
|
4756
|
+
};
|
|
4181
4757
|
support: "community" | "slack";
|
|
4182
4758
|
};
|
|
4183
4759
|
title: string;
|
|
@@ -4213,6 +4789,10 @@ declare const SubscriptionResult: z.ZodObject<{
|
|
|
4213
4789
|
canExceed?: boolean | undefined;
|
|
4214
4790
|
};
|
|
4215
4791
|
hasStagingEnvironment: boolean;
|
|
4792
|
+
realtimeConcurrentConnections: {
|
|
4793
|
+
number: number;
|
|
4794
|
+
canExceed?: boolean | undefined;
|
|
4795
|
+
};
|
|
4216
4796
|
support: "community" | "slack";
|
|
4217
4797
|
};
|
|
4218
4798
|
title: string;
|
|
@@ -4431,6 +5011,16 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4431
5011
|
canExceed?: boolean | undefined;
|
|
4432
5012
|
}>;
|
|
4433
5013
|
hasStagingEnvironment: z.ZodBoolean;
|
|
5014
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
5015
|
+
number: z.ZodNumber;
|
|
5016
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
5017
|
+
}, "strip", z.ZodTypeAny, {
|
|
5018
|
+
number: number;
|
|
5019
|
+
canExceed?: boolean | undefined;
|
|
5020
|
+
}, {
|
|
5021
|
+
number: number;
|
|
5022
|
+
canExceed?: boolean | undefined;
|
|
5023
|
+
}>;
|
|
4434
5024
|
support: z.ZodEnum<["community", "slack"]>;
|
|
4435
5025
|
}, "strip", z.ZodTypeAny, {
|
|
4436
5026
|
includedUsage: number;
|
|
@@ -4455,6 +5045,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4455
5045
|
canExceed?: boolean | undefined;
|
|
4456
5046
|
};
|
|
4457
5047
|
hasStagingEnvironment: boolean;
|
|
5048
|
+
realtimeConcurrentConnections: {
|
|
5049
|
+
number: number;
|
|
5050
|
+
canExceed?: boolean | undefined;
|
|
5051
|
+
};
|
|
4458
5052
|
support: "community" | "slack";
|
|
4459
5053
|
}, {
|
|
4460
5054
|
includedUsage: number;
|
|
@@ -4479,6 +5073,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4479
5073
|
canExceed?: boolean | undefined;
|
|
4480
5074
|
};
|
|
4481
5075
|
hasStagingEnvironment: boolean;
|
|
5076
|
+
realtimeConcurrentConnections: {
|
|
5077
|
+
number: number;
|
|
5078
|
+
canExceed?: boolean | undefined;
|
|
5079
|
+
};
|
|
4482
5080
|
support: "community" | "slack";
|
|
4483
5081
|
}>;
|
|
4484
5082
|
title: z.ZodString;
|
|
@@ -4509,6 +5107,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4509
5107
|
canExceed?: boolean | undefined;
|
|
4510
5108
|
};
|
|
4511
5109
|
hasStagingEnvironment: boolean;
|
|
5110
|
+
realtimeConcurrentConnections: {
|
|
5111
|
+
number: number;
|
|
5112
|
+
canExceed?: boolean | undefined;
|
|
5113
|
+
};
|
|
4512
5114
|
support: "community" | "slack";
|
|
4513
5115
|
};
|
|
4514
5116
|
title: string;
|
|
@@ -4538,6 +5140,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4538
5140
|
canExceed?: boolean | undefined;
|
|
4539
5141
|
};
|
|
4540
5142
|
hasStagingEnvironment: boolean;
|
|
5143
|
+
realtimeConcurrentConnections: {
|
|
5144
|
+
number: number;
|
|
5145
|
+
canExceed?: boolean | undefined;
|
|
5146
|
+
};
|
|
4541
5147
|
support: "community" | "slack";
|
|
4542
5148
|
};
|
|
4543
5149
|
title: string;
|
|
@@ -4610,6 +5216,16 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4610
5216
|
canExceed?: boolean | undefined;
|
|
4611
5217
|
}>;
|
|
4612
5218
|
hasStagingEnvironment: z.ZodBoolean;
|
|
5219
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
5220
|
+
number: z.ZodNumber;
|
|
5221
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
5222
|
+
}, "strip", z.ZodTypeAny, {
|
|
5223
|
+
number: number;
|
|
5224
|
+
canExceed?: boolean | undefined;
|
|
5225
|
+
}, {
|
|
5226
|
+
number: number;
|
|
5227
|
+
canExceed?: boolean | undefined;
|
|
5228
|
+
}>;
|
|
4613
5229
|
support: z.ZodEnum<["community", "slack"]>;
|
|
4614
5230
|
}, "strip", z.ZodTypeAny, {
|
|
4615
5231
|
includedUsage: number;
|
|
@@ -4634,6 +5250,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4634
5250
|
canExceed?: boolean | undefined;
|
|
4635
5251
|
};
|
|
4636
5252
|
hasStagingEnvironment: boolean;
|
|
5253
|
+
realtimeConcurrentConnections: {
|
|
5254
|
+
number: number;
|
|
5255
|
+
canExceed?: boolean | undefined;
|
|
5256
|
+
};
|
|
4637
5257
|
support: "community" | "slack";
|
|
4638
5258
|
}, {
|
|
4639
5259
|
includedUsage: number;
|
|
@@ -4658,6 +5278,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4658
5278
|
canExceed?: boolean | undefined;
|
|
4659
5279
|
};
|
|
4660
5280
|
hasStagingEnvironment: boolean;
|
|
5281
|
+
realtimeConcurrentConnections: {
|
|
5282
|
+
number: number;
|
|
5283
|
+
canExceed?: boolean | undefined;
|
|
5284
|
+
};
|
|
4661
5285
|
support: "community" | "slack";
|
|
4662
5286
|
}>;
|
|
4663
5287
|
title: z.ZodString;
|
|
@@ -4688,6 +5312,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4688
5312
|
canExceed?: boolean | undefined;
|
|
4689
5313
|
};
|
|
4690
5314
|
hasStagingEnvironment: boolean;
|
|
5315
|
+
realtimeConcurrentConnections: {
|
|
5316
|
+
number: number;
|
|
5317
|
+
canExceed?: boolean | undefined;
|
|
5318
|
+
};
|
|
4691
5319
|
support: "community" | "slack";
|
|
4692
5320
|
};
|
|
4693
5321
|
title: string;
|
|
@@ -4723,6 +5351,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4723
5351
|
canExceed?: boolean | undefined;
|
|
4724
5352
|
};
|
|
4725
5353
|
hasStagingEnvironment: boolean;
|
|
5354
|
+
realtimeConcurrentConnections: {
|
|
5355
|
+
number: number;
|
|
5356
|
+
canExceed?: boolean | undefined;
|
|
5357
|
+
};
|
|
4726
5358
|
support: "community" | "slack";
|
|
4727
5359
|
};
|
|
4728
5360
|
title: string;
|
|
@@ -4787,6 +5419,16 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4787
5419
|
canExceed?: boolean | undefined;
|
|
4788
5420
|
}>;
|
|
4789
5421
|
hasStagingEnvironment: z.ZodBoolean;
|
|
5422
|
+
realtimeConcurrentConnections: z.ZodObject<{
|
|
5423
|
+
number: z.ZodNumber;
|
|
5424
|
+
canExceed: z.ZodOptional<z.ZodBoolean>;
|
|
5425
|
+
}, "strip", z.ZodTypeAny, {
|
|
5426
|
+
number: number;
|
|
5427
|
+
canExceed?: boolean | undefined;
|
|
5428
|
+
}, {
|
|
5429
|
+
number: number;
|
|
5430
|
+
canExceed?: boolean | undefined;
|
|
5431
|
+
}>;
|
|
4790
5432
|
support: z.ZodEnum<["community", "slack"]>;
|
|
4791
5433
|
}, "strip", z.ZodTypeAny, {
|
|
4792
5434
|
includedUsage: number;
|
|
@@ -4811,6 +5453,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4811
5453
|
canExceed?: boolean | undefined;
|
|
4812
5454
|
};
|
|
4813
5455
|
hasStagingEnvironment: boolean;
|
|
5456
|
+
realtimeConcurrentConnections: {
|
|
5457
|
+
number: number;
|
|
5458
|
+
canExceed?: boolean | undefined;
|
|
5459
|
+
};
|
|
4814
5460
|
support: "community" | "slack";
|
|
4815
5461
|
}, {
|
|
4816
5462
|
includedUsage: number;
|
|
@@ -4835,6 +5481,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4835
5481
|
canExceed?: boolean | undefined;
|
|
4836
5482
|
};
|
|
4837
5483
|
hasStagingEnvironment: boolean;
|
|
5484
|
+
realtimeConcurrentConnections: {
|
|
5485
|
+
number: number;
|
|
5486
|
+
canExceed?: boolean | undefined;
|
|
5487
|
+
};
|
|
4838
5488
|
support: "community" | "slack";
|
|
4839
5489
|
}>;
|
|
4840
5490
|
title: z.ZodString;
|
|
@@ -4865,6 +5515,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4865
5515
|
canExceed?: boolean | undefined;
|
|
4866
5516
|
};
|
|
4867
5517
|
hasStagingEnvironment: boolean;
|
|
5518
|
+
realtimeConcurrentConnections: {
|
|
5519
|
+
number: number;
|
|
5520
|
+
canExceed?: boolean | undefined;
|
|
5521
|
+
};
|
|
4868
5522
|
support: "community" | "slack";
|
|
4869
5523
|
};
|
|
4870
5524
|
title: string;
|
|
@@ -4894,6 +5548,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4894
5548
|
canExceed?: boolean | undefined;
|
|
4895
5549
|
};
|
|
4896
5550
|
hasStagingEnvironment: boolean;
|
|
5551
|
+
realtimeConcurrentConnections: {
|
|
5552
|
+
number: number;
|
|
5553
|
+
canExceed?: boolean | undefined;
|
|
5554
|
+
};
|
|
4897
5555
|
support: "community" | "slack";
|
|
4898
5556
|
};
|
|
4899
5557
|
title: string;
|
|
@@ -4928,6 +5586,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4928
5586
|
canExceed?: boolean | undefined;
|
|
4929
5587
|
};
|
|
4930
5588
|
hasStagingEnvironment: boolean;
|
|
5589
|
+
realtimeConcurrentConnections: {
|
|
5590
|
+
number: number;
|
|
5591
|
+
canExceed?: boolean | undefined;
|
|
5592
|
+
};
|
|
4931
5593
|
support: "community" | "slack";
|
|
4932
5594
|
};
|
|
4933
5595
|
title: string;
|
|
@@ -4957,6 +5619,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4957
5619
|
canExceed?: boolean | undefined;
|
|
4958
5620
|
};
|
|
4959
5621
|
hasStagingEnvironment: boolean;
|
|
5622
|
+
realtimeConcurrentConnections: {
|
|
5623
|
+
number: number;
|
|
5624
|
+
canExceed?: boolean | undefined;
|
|
5625
|
+
};
|
|
4960
5626
|
support: "community" | "slack";
|
|
4961
5627
|
};
|
|
4962
5628
|
title: string;
|
|
@@ -4992,6 +5658,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
4992
5658
|
canExceed?: boolean | undefined;
|
|
4993
5659
|
};
|
|
4994
5660
|
hasStagingEnvironment: boolean;
|
|
5661
|
+
realtimeConcurrentConnections: {
|
|
5662
|
+
number: number;
|
|
5663
|
+
canExceed?: boolean | undefined;
|
|
5664
|
+
};
|
|
4995
5665
|
support: "community" | "slack";
|
|
4996
5666
|
};
|
|
4997
5667
|
title: string;
|
|
@@ -5026,6 +5696,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
5026
5696
|
canExceed?: boolean | undefined;
|
|
5027
5697
|
};
|
|
5028
5698
|
hasStagingEnvironment: boolean;
|
|
5699
|
+
realtimeConcurrentConnections: {
|
|
5700
|
+
number: number;
|
|
5701
|
+
canExceed?: boolean | undefined;
|
|
5702
|
+
};
|
|
5029
5703
|
support: "community" | "slack";
|
|
5030
5704
|
};
|
|
5031
5705
|
title: string;
|
|
@@ -5055,6 +5729,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
5055
5729
|
canExceed?: boolean | undefined;
|
|
5056
5730
|
};
|
|
5057
5731
|
hasStagingEnvironment: boolean;
|
|
5732
|
+
realtimeConcurrentConnections: {
|
|
5733
|
+
number: number;
|
|
5734
|
+
canExceed?: boolean | undefined;
|
|
5735
|
+
};
|
|
5058
5736
|
support: "community" | "slack";
|
|
5059
5737
|
};
|
|
5060
5738
|
title: string;
|
|
@@ -5090,6 +5768,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
5090
5768
|
canExceed?: boolean | undefined;
|
|
5091
5769
|
};
|
|
5092
5770
|
hasStagingEnvironment: boolean;
|
|
5771
|
+
realtimeConcurrentConnections: {
|
|
5772
|
+
number: number;
|
|
5773
|
+
canExceed?: boolean | undefined;
|
|
5774
|
+
};
|
|
5093
5775
|
support: "community" | "slack";
|
|
5094
5776
|
};
|
|
5095
5777
|
title: string;
|
|
@@ -5152,6 +5834,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
5152
5834
|
canExceed?: boolean | undefined;
|
|
5153
5835
|
};
|
|
5154
5836
|
hasStagingEnvironment: boolean;
|
|
5837
|
+
realtimeConcurrentConnections: {
|
|
5838
|
+
number: number;
|
|
5839
|
+
canExceed?: boolean | undefined;
|
|
5840
|
+
};
|
|
5155
5841
|
support: "community" | "slack";
|
|
5156
5842
|
};
|
|
5157
5843
|
title: string;
|
|
@@ -5181,6 +5867,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
5181
5867
|
canExceed?: boolean | undefined;
|
|
5182
5868
|
};
|
|
5183
5869
|
hasStagingEnvironment: boolean;
|
|
5870
|
+
realtimeConcurrentConnections: {
|
|
5871
|
+
number: number;
|
|
5872
|
+
canExceed?: boolean | undefined;
|
|
5873
|
+
};
|
|
5184
5874
|
support: "community" | "slack";
|
|
5185
5875
|
};
|
|
5186
5876
|
title: string;
|
|
@@ -5216,6 +5906,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
5216
5906
|
canExceed?: boolean | undefined;
|
|
5217
5907
|
};
|
|
5218
5908
|
hasStagingEnvironment: boolean;
|
|
5909
|
+
realtimeConcurrentConnections: {
|
|
5910
|
+
number: number;
|
|
5911
|
+
canExceed?: boolean | undefined;
|
|
5912
|
+
};
|
|
5219
5913
|
support: "community" | "slack";
|
|
5220
5914
|
};
|
|
5221
5915
|
title: string;
|
|
@@ -5278,6 +5972,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
5278
5972
|
canExceed?: boolean | undefined;
|
|
5279
5973
|
};
|
|
5280
5974
|
hasStagingEnvironment: boolean;
|
|
5975
|
+
realtimeConcurrentConnections: {
|
|
5976
|
+
number: number;
|
|
5977
|
+
canExceed?: boolean | undefined;
|
|
5978
|
+
};
|
|
5281
5979
|
support: "community" | "slack";
|
|
5282
5980
|
};
|
|
5283
5981
|
title: string;
|
|
@@ -5307,6 +6005,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
5307
6005
|
canExceed?: boolean | undefined;
|
|
5308
6006
|
};
|
|
5309
6007
|
hasStagingEnvironment: boolean;
|
|
6008
|
+
realtimeConcurrentConnections: {
|
|
6009
|
+
number: number;
|
|
6010
|
+
canExceed?: boolean | undefined;
|
|
6011
|
+
};
|
|
5310
6012
|
support: "community" | "slack";
|
|
5311
6013
|
};
|
|
5312
6014
|
title: string;
|
|
@@ -5342,6 +6044,10 @@ declare const CurrentPlan: z.ZodObject<{
|
|
|
5342
6044
|
canExceed?: boolean | undefined;
|
|
5343
6045
|
};
|
|
5344
6046
|
hasStagingEnvironment: boolean;
|
|
6047
|
+
realtimeConcurrentConnections: {
|
|
6048
|
+
number: number;
|
|
6049
|
+
canExceed?: boolean | undefined;
|
|
6050
|
+
};
|
|
5345
6051
|
support: "community" | "slack";
|
|
5346
6052
|
};
|
|
5347
6053
|
title: string;
|
|
@@ -5727,4 +6433,58 @@ type MachineDefinitionInput = {
|
|
|
5727
6433
|
};
|
|
5728
6434
|
declare function machineDefinition({ code, title, cpu, memory, centsPerVCpuSecond, centsPerGbRamSecond, }: MachineDefinitionInput): MachineDefinition;
|
|
5729
6435
|
|
|
5730
|
-
|
|
6436
|
+
declare const machines: {
|
|
6437
|
+
micro: {
|
|
6438
|
+
code: string;
|
|
6439
|
+
title: string;
|
|
6440
|
+
cpu: number;
|
|
6441
|
+
memory: number;
|
|
6442
|
+
centsPerMs: number;
|
|
6443
|
+
};
|
|
6444
|
+
"small-1x": {
|
|
6445
|
+
code: string;
|
|
6446
|
+
title: string;
|
|
6447
|
+
cpu: number;
|
|
6448
|
+
memory: number;
|
|
6449
|
+
centsPerMs: number;
|
|
6450
|
+
};
|
|
6451
|
+
"small-2x": {
|
|
6452
|
+
code: string;
|
|
6453
|
+
title: string;
|
|
6454
|
+
cpu: number;
|
|
6455
|
+
memory: number;
|
|
6456
|
+
centsPerMs: number;
|
|
6457
|
+
};
|
|
6458
|
+
"medium-1x": {
|
|
6459
|
+
code: string;
|
|
6460
|
+
title: string;
|
|
6461
|
+
cpu: number;
|
|
6462
|
+
memory: number;
|
|
6463
|
+
centsPerMs: number;
|
|
6464
|
+
};
|
|
6465
|
+
"medium-2x": {
|
|
6466
|
+
code: string;
|
|
6467
|
+
title: string;
|
|
6468
|
+
cpu: number;
|
|
6469
|
+
memory: number;
|
|
6470
|
+
centsPerMs: number;
|
|
6471
|
+
};
|
|
6472
|
+
"large-1x": {
|
|
6473
|
+
code: string;
|
|
6474
|
+
title: string;
|
|
6475
|
+
cpu: number;
|
|
6476
|
+
memory: number;
|
|
6477
|
+
centsPerMs: number;
|
|
6478
|
+
};
|
|
6479
|
+
"large-2x": {
|
|
6480
|
+
code: string;
|
|
6481
|
+
title: string;
|
|
6482
|
+
cpu: number;
|
|
6483
|
+
memory: number;
|
|
6484
|
+
centsPerMs: number;
|
|
6485
|
+
};
|
|
6486
|
+
};
|
|
6487
|
+
type MachineCode = keyof typeof machines;
|
|
6488
|
+
declare const defaultMachine: MachineCode;
|
|
6489
|
+
|
|
6490
|
+
export { BillingClient, type CanceledSubscriptionResult, type CreateSubscriptionFlowStart, CurrentPlan, type CurrentPlanResponse, type CustomerPortal, type CustomerPortalRequestBody, CustomerPortalRequestBodySchema, type CustomerPortalResponse, CustomerPortalSchema, EnterprisePlanDefinition, type Error, ErrorSchema, ExceedableLimit, type FreeConnectRequired, FreeConnectRequiredSchema, type FreeConnected, FreeConnectedSchema, FreePlanDefinition, FreeTierStatus, Limits, type MachineCode, MachineDefinition, type MachineDefinitionInput, PaidPlanDefinition, type PlanDefinition, PlanDefinitionSchema, Plans, type PlansResponse, PlansResult, ReportComputeUsageEvent, ReportInvocationUsageEvent, ReportInvocationUsageResult, ReportUsageResult, type SetPlanBody, SetPlanBodySchema, type SetPlanResponse, type SubscribeResult, SubscribeResultSchema, SubscriptionResult, type UpdatedSubscriptionResult, type UsageEntitlementResponse, type UsageInvocationReportResponse, UsageParams, type UsageResponse, UsageResult, UsageSeriesParams, type UsageSeriesResponse, UsageSeriesResult, defaultMachine, machineDefinition, machines, objectToSearchParams };
|