ton-provider-system 0.1.11 → 0.1.12

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/index.d.cts CHANGED
@@ -363,6 +363,7 @@ declare const ProviderConfigSchema: z.ZodObject<{
363
363
  priority: z.ZodDefault<z.ZodNumber>;
364
364
  enabled: z.ZodDefault<z.ZodBoolean>;
365
365
  isDynamic: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
366
+ browserCompatible: z.ZodOptional<z.ZodBoolean>;
366
367
  description: z.ZodOptional<z.ZodString>;
367
368
  }, "strip", z.ZodTypeAny, {
368
369
  type: "chainstack" | "quicknode" | "toncenter" | "orbs" | "onfinality" | "ankr" | "getblock" | "tatum" | "tonhub" | "custom";
@@ -380,6 +381,7 @@ declare const ProviderConfigSchema: z.ZodObject<{
380
381
  isDynamic: boolean;
381
382
  keyEnvVar?: string | undefined;
382
383
  apiKeyEnvVar?: string | undefined;
384
+ browserCompatible?: boolean | undefined;
383
385
  description?: string | undefined;
384
386
  }, {
385
387
  type: "chainstack" | "quicknode" | "toncenter" | "orbs" | "onfinality" | "ankr" | "getblock" | "tatum" | "tonhub" | "custom";
@@ -397,6 +399,7 @@ declare const ProviderConfigSchema: z.ZodObject<{
397
399
  priority?: number | undefined;
398
400
  enabled?: boolean | undefined;
399
401
  isDynamic?: boolean | undefined;
402
+ browserCompatible?: boolean | undefined;
400
403
  description?: string | undefined;
401
404
  }>;
402
405
  /**
@@ -441,6 +444,7 @@ declare const RpcConfigSchema: z.ZodEffects<z.ZodObject<{
441
444
  priority: z.ZodDefault<z.ZodNumber>;
442
445
  enabled: z.ZodDefault<z.ZodBoolean>;
443
446
  isDynamic: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
447
+ browserCompatible: z.ZodOptional<z.ZodBoolean>;
444
448
  description: z.ZodOptional<z.ZodString>;
445
449
  }, "strip", z.ZodTypeAny, {
446
450
  type: "chainstack" | "quicknode" | "toncenter" | "orbs" | "onfinality" | "ankr" | "getblock" | "tatum" | "tonhub" | "custom";
@@ -458,6 +462,7 @@ declare const RpcConfigSchema: z.ZodEffects<z.ZodObject<{
458
462
  isDynamic: boolean;
459
463
  keyEnvVar?: string | undefined;
460
464
  apiKeyEnvVar?: string | undefined;
465
+ browserCompatible?: boolean | undefined;
461
466
  description?: string | undefined;
462
467
  }, {
463
468
  type: "chainstack" | "quicknode" | "toncenter" | "orbs" | "onfinality" | "ankr" | "getblock" | "tatum" | "tonhub" | "custom";
@@ -475,6 +480,7 @@ declare const RpcConfigSchema: z.ZodEffects<z.ZodObject<{
475
480
  priority?: number | undefined;
476
481
  enabled?: boolean | undefined;
477
482
  isDynamic?: boolean | undefined;
483
+ browserCompatible?: boolean | undefined;
478
484
  description?: string | undefined;
479
485
  }>>;
480
486
  defaults: z.ZodObject<{
@@ -505,6 +511,7 @@ declare const RpcConfigSchema: z.ZodEffects<z.ZodObject<{
505
511
  isDynamic: boolean;
506
512
  keyEnvVar?: string | undefined;
507
513
  apiKeyEnvVar?: string | undefined;
514
+ browserCompatible?: boolean | undefined;
508
515
  description?: string | undefined;
509
516
  }>;
510
517
  defaults: {
@@ -529,6 +536,7 @@ declare const RpcConfigSchema: z.ZodEffects<z.ZodObject<{
529
536
  priority?: number | undefined;
530
537
  enabled?: boolean | undefined;
531
538
  isDynamic?: boolean | undefined;
539
+ browserCompatible?: boolean | undefined;
532
540
  description?: string | undefined;
533
541
  }>;
534
542
  defaults: {
@@ -555,6 +563,7 @@ declare const RpcConfigSchema: z.ZodEffects<z.ZodObject<{
555
563
  isDynamic: boolean;
556
564
  keyEnvVar?: string | undefined;
557
565
  apiKeyEnvVar?: string | undefined;
566
+ browserCompatible?: boolean | undefined;
558
567
  description?: string | undefined;
559
568
  }>;
560
569
  defaults: {
@@ -579,6 +588,7 @@ declare const RpcConfigSchema: z.ZodEffects<z.ZodObject<{
579
588
  priority?: number | undefined;
580
589
  enabled?: boolean | undefined;
581
590
  isDynamic?: boolean | undefined;
591
+ browserCompatible?: boolean | undefined;
582
592
  description?: string | undefined;
583
593
  }>;
584
594
  defaults: {
package/dist/index.d.ts CHANGED
@@ -363,6 +363,7 @@ declare const ProviderConfigSchema: z.ZodObject<{
363
363
  priority: z.ZodDefault<z.ZodNumber>;
364
364
  enabled: z.ZodDefault<z.ZodBoolean>;
365
365
  isDynamic: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
366
+ browserCompatible: z.ZodOptional<z.ZodBoolean>;
366
367
  description: z.ZodOptional<z.ZodString>;
367
368
  }, "strip", z.ZodTypeAny, {
368
369
  type: "chainstack" | "quicknode" | "toncenter" | "orbs" | "onfinality" | "ankr" | "getblock" | "tatum" | "tonhub" | "custom";
@@ -380,6 +381,7 @@ declare const ProviderConfigSchema: z.ZodObject<{
380
381
  isDynamic: boolean;
381
382
  keyEnvVar?: string | undefined;
382
383
  apiKeyEnvVar?: string | undefined;
384
+ browserCompatible?: boolean | undefined;
383
385
  description?: string | undefined;
384
386
  }, {
385
387
  type: "chainstack" | "quicknode" | "toncenter" | "orbs" | "onfinality" | "ankr" | "getblock" | "tatum" | "tonhub" | "custom";
@@ -397,6 +399,7 @@ declare const ProviderConfigSchema: z.ZodObject<{
397
399
  priority?: number | undefined;
398
400
  enabled?: boolean | undefined;
399
401
  isDynamic?: boolean | undefined;
402
+ browserCompatible?: boolean | undefined;
400
403
  description?: string | undefined;
401
404
  }>;
402
405
  /**
@@ -441,6 +444,7 @@ declare const RpcConfigSchema: z.ZodEffects<z.ZodObject<{
441
444
  priority: z.ZodDefault<z.ZodNumber>;
442
445
  enabled: z.ZodDefault<z.ZodBoolean>;
443
446
  isDynamic: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
447
+ browserCompatible: z.ZodOptional<z.ZodBoolean>;
444
448
  description: z.ZodOptional<z.ZodString>;
445
449
  }, "strip", z.ZodTypeAny, {
446
450
  type: "chainstack" | "quicknode" | "toncenter" | "orbs" | "onfinality" | "ankr" | "getblock" | "tatum" | "tonhub" | "custom";
@@ -458,6 +462,7 @@ declare const RpcConfigSchema: z.ZodEffects<z.ZodObject<{
458
462
  isDynamic: boolean;
459
463
  keyEnvVar?: string | undefined;
460
464
  apiKeyEnvVar?: string | undefined;
465
+ browserCompatible?: boolean | undefined;
461
466
  description?: string | undefined;
462
467
  }, {
463
468
  type: "chainstack" | "quicknode" | "toncenter" | "orbs" | "onfinality" | "ankr" | "getblock" | "tatum" | "tonhub" | "custom";
@@ -475,6 +480,7 @@ declare const RpcConfigSchema: z.ZodEffects<z.ZodObject<{
475
480
  priority?: number | undefined;
476
481
  enabled?: boolean | undefined;
477
482
  isDynamic?: boolean | undefined;
483
+ browserCompatible?: boolean | undefined;
478
484
  description?: string | undefined;
479
485
  }>>;
480
486
  defaults: z.ZodObject<{
@@ -505,6 +511,7 @@ declare const RpcConfigSchema: z.ZodEffects<z.ZodObject<{
505
511
  isDynamic: boolean;
506
512
  keyEnvVar?: string | undefined;
507
513
  apiKeyEnvVar?: string | undefined;
514
+ browserCompatible?: boolean | undefined;
508
515
  description?: string | undefined;
509
516
  }>;
510
517
  defaults: {
@@ -529,6 +536,7 @@ declare const RpcConfigSchema: z.ZodEffects<z.ZodObject<{
529
536
  priority?: number | undefined;
530
537
  enabled?: boolean | undefined;
531
538
  isDynamic?: boolean | undefined;
539
+ browserCompatible?: boolean | undefined;
532
540
  description?: string | undefined;
533
541
  }>;
534
542
  defaults: {
@@ -555,6 +563,7 @@ declare const RpcConfigSchema: z.ZodEffects<z.ZodObject<{
555
563
  isDynamic: boolean;
556
564
  keyEnvVar?: string | undefined;
557
565
  apiKeyEnvVar?: string | undefined;
566
+ browserCompatible?: boolean | undefined;
558
567
  description?: string | undefined;
559
568
  }>;
560
569
  defaults: {
@@ -579,6 +588,7 @@ declare const RpcConfigSchema: z.ZodEffects<z.ZodObject<{
579
588
  priority?: number | undefined;
580
589
  enabled?: boolean | undefined;
581
590
  isDynamic?: boolean | undefined;
591
+ browserCompatible?: boolean | undefined;
582
592
  description?: string | undefined;
583
593
  }>;
584
594
  defaults: {
package/dist/index.js CHANGED
@@ -67,6 +67,7 @@ var ProviderConfigSchema = z.object({
67
67
  priority: z.number().int().nonnegative().default(10),
68
68
  enabled: z.boolean().default(true),
69
69
  isDynamic: z.boolean().optional().default(false),
70
+ browserCompatible: z.boolean().optional(),
70
71
  description: z.string().optional()
71
72
  });
72
73
  var NetworkDefaultsSchema = z.object({