@powerhousedao/builder-tools 6.2.2-dev.4 → 6.2.2-dev.40

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.mts CHANGED
@@ -392,6 +392,58 @@ declare const runtimeConfigSchema: {
392
392
  readonly description: "CAIP-2 chain reference within the network namespace.";
393
393
  readonly default: 1;
394
394
  };
395
+ readonly namespace: {
396
+ readonly type: "string";
397
+ readonly description: "Renown localStorage namespace; share it across Connects to share login.";
398
+ };
399
+ readonly switchboardUrl: {
400
+ readonly type: "string";
401
+ readonly description: "Switchboard GraphQL URL. When set, Connect enables in-page (no-redirect) Renown sign-in; otherwise it falls back to the redirect flow via `url`.";
402
+ };
403
+ readonly adapters: {
404
+ readonly type: "object";
405
+ readonly additionalProperties: false;
406
+ readonly description: "Per-adapter wallet config for in-page auth. Presence of an adapter key enables it; omit or leave empty for redirect-only behaviour.";
407
+ readonly properties: {
408
+ readonly rainbow: {
409
+ readonly type: "object";
410
+ readonly additionalProperties: false;
411
+ readonly description: "wagmi + RainbowKit external-wallet adapter config.";
412
+ readonly properties: {
413
+ readonly walletConnectProjectId: {
414
+ readonly type: "string";
415
+ readonly description: "WalletConnect project id; required for this adapter to function.";
416
+ };
417
+ readonly infuraProjectId: {
418
+ readonly type: "string";
419
+ readonly description: "Optional Infura project id used to build RPC transports.";
420
+ };
421
+ };
422
+ };
423
+ readonly privy: {
424
+ readonly type: "object";
425
+ readonly additionalProperties: false;
426
+ readonly description: "Privy embedded/social adapter config.";
427
+ readonly properties: {
428
+ readonly appId: {
429
+ readonly type: "string";
430
+ readonly description: "Privy application id; required for this adapter to function.";
431
+ };
432
+ readonly clientId: {
433
+ readonly type: "string";
434
+ readonly description: "Optional Privy client id.";
435
+ };
436
+ readonly methods: {
437
+ readonly type: "array";
438
+ readonly description: "Login methods this adapter offers; default per adapter when omitted.";
439
+ readonly items: {
440
+ readonly type: "string";
441
+ };
442
+ };
443
+ };
444
+ };
445
+ };
446
+ };
395
447
  };
396
448
  };
397
449
  readonly sentry: {
@@ -434,6 +486,253 @@ declare const runtimeConfigSchema: {
434
486
  };
435
487
  };
436
488
  };
489
+ readonly pwa: {
490
+ readonly type: "object";
491
+ readonly additionalProperties: false;
492
+ readonly description: "Progressive-web-app / service-worker overrides, layered on Connect's built-in PWA defaults at build time. Scalar fields deep-merge (this layer wins); the array members (icons, file_handlers, globs, runtimeCaching and denylist patterns) are additive; maximumFileSizeToCacheInBytes takes the max across contributors. (categories is not set here \u2014 it is derived from the manifest's category field.) Only applied when connect.app.offline is true.";
493
+ readonly properties: {
494
+ readonly manifest: {
495
+ readonly type: "object";
496
+ readonly additionalProperties: false;
497
+ readonly description: "Web-app-manifest field overrides.";
498
+ readonly properties: {
499
+ readonly name: {
500
+ readonly type: "string";
501
+ };
502
+ readonly short_name: {
503
+ readonly type: "string";
504
+ };
505
+ readonly description: {
506
+ readonly type: "string";
507
+ };
508
+ readonly theme_color: {
509
+ readonly type: "string";
510
+ };
511
+ readonly background_color: {
512
+ readonly type: "string";
513
+ };
514
+ readonly display: {
515
+ readonly type: "string";
516
+ readonly enum: readonly ["fullscreen", "standalone", "minimal-ui", "browser"];
517
+ };
518
+ readonly start_url: {
519
+ readonly type: "string";
520
+ };
521
+ readonly scope: {
522
+ readonly type: "string";
523
+ };
524
+ readonly icons: {
525
+ readonly type: "array";
526
+ readonly description: "Icons appended to the built-in set and de-duplicated by (src, sizes, purpose).";
527
+ readonly items: {
528
+ readonly type: "object";
529
+ readonly additionalProperties: false;
530
+ readonly required: readonly ["src"];
531
+ readonly properties: {
532
+ readonly src: {
533
+ readonly type: "string";
534
+ };
535
+ readonly sizes: {
536
+ readonly type: "string";
537
+ };
538
+ readonly type: {
539
+ readonly type: "string";
540
+ };
541
+ readonly purpose: {
542
+ readonly type: "string";
543
+ };
544
+ };
545
+ };
546
+ };
547
+ readonly file_handlers: {
548
+ readonly type: "array";
549
+ readonly description: "File associations appended after Connect's built-in .phd/.phdm handler and de-duplicated on the whole entry. Entries only declare accepted types; there is no action field, because opening the files requires Connect's own runtime handling, so every handler opens at the app root.";
550
+ readonly items: {
551
+ readonly type: "object";
552
+ readonly additionalProperties: false;
553
+ readonly required: readonly ["accept"];
554
+ readonly properties: {
555
+ readonly accept: {
556
+ readonly type: "object";
557
+ readonly description: "MIME type \u2192 file extensions. Each extension must start with '.'; browsers ignore entries without it.";
558
+ readonly additionalProperties: {
559
+ readonly type: "array";
560
+ readonly items: {
561
+ readonly type: "string";
562
+ readonly pattern: "^\\.";
563
+ };
564
+ };
565
+ };
566
+ readonly icons: {
567
+ readonly type: "array";
568
+ readonly description: "OS-level file-type icons.";
569
+ readonly items: {
570
+ readonly type: "object";
571
+ readonly additionalProperties: false;
572
+ readonly required: readonly ["src"];
573
+ readonly properties: {
574
+ readonly src: {
575
+ readonly type: "string";
576
+ };
577
+ readonly sizes: {
578
+ readonly type: "string";
579
+ };
580
+ readonly type: {
581
+ readonly type: "string";
582
+ };
583
+ readonly purpose: {
584
+ readonly type: "string";
585
+ };
586
+ };
587
+ };
588
+ };
589
+ readonly launch_type: {
590
+ readonly type: "string";
591
+ readonly enum: readonly ["single-client", "multiple-clients"];
592
+ };
593
+ };
594
+ };
595
+ };
596
+ readonly launch_handler: {
597
+ readonly type: "object";
598
+ readonly additionalProperties: false;
599
+ readonly required: readonly ["client_mode"];
600
+ readonly description: "How the OS launches the app for handled files/links. Connect defaults to focus-existing.";
601
+ readonly properties: {
602
+ readonly client_mode: {
603
+ readonly type: "string";
604
+ readonly enum: readonly ["auto", "focus-existing", "navigate-existing", "navigate-new"];
605
+ };
606
+ };
607
+ };
608
+ };
609
+ };
610
+ readonly globPatterns: {
611
+ readonly type: "array";
612
+ readonly items: {
613
+ readonly type: "string";
614
+ };
615
+ readonly description: "Extra Workbox precache globs, unioned with the built-ins.";
616
+ };
617
+ readonly globIgnores: {
618
+ readonly type: "array";
619
+ readonly items: {
620
+ readonly type: "string";
621
+ };
622
+ readonly description: "Extra precache ignore globs, unioned with the built-ins.";
623
+ };
624
+ readonly maximumFileSizeToCacheInBytes: {
625
+ readonly type: "number";
626
+ readonly description: "Raise the precache file-size ceiling. The max across all contributors wins, so no contributor can shrink another's limit.";
627
+ };
628
+ readonly runtimeCaching: {
629
+ readonly type: "array";
630
+ readonly description: "Runtime-caching rules appended after the built-in rules. Workbox is first-match-wins, so these cannot override a built-in rule matching the same URL.";
631
+ readonly items: {
632
+ readonly type: "object";
633
+ readonly additionalProperties: false;
634
+ readonly required: readonly ["urlPattern", "handler"];
635
+ readonly properties: {
636
+ readonly urlPattern: {
637
+ readonly description: "URL match. A string is matched verbatim by Workbox; { source, flags } is rebuilt into a RegExp at build time.";
638
+ readonly oneOf: readonly [{
639
+ readonly type: "string";
640
+ }, {
641
+ readonly type: "object";
642
+ readonly additionalProperties: false;
643
+ readonly required: readonly ["source"];
644
+ readonly properties: {
645
+ readonly source: {
646
+ readonly type: "string";
647
+ readonly description: "RegExp source.";
648
+ };
649
+ readonly flags: {
650
+ readonly type: "string";
651
+ readonly description: "RegExp flags (e.g. 'i').";
652
+ };
653
+ };
654
+ }];
655
+ };
656
+ readonly handler: {
657
+ readonly type: "string";
658
+ readonly enum: readonly ["CacheFirst", "CacheOnly", "NetworkFirst", "NetworkOnly", "StaleWhileRevalidate"];
659
+ };
660
+ readonly method: {
661
+ readonly type: "string";
662
+ readonly enum: readonly ["GET", "POST", "PUT", "DELETE", "HEAD", "PATCH"];
663
+ };
664
+ readonly options: {
665
+ readonly type: "object";
666
+ readonly additionalProperties: false;
667
+ readonly properties: {
668
+ readonly cacheName: {
669
+ readonly type: "string";
670
+ };
671
+ readonly networkTimeoutSeconds: {
672
+ readonly type: "number";
673
+ readonly description: "Seconds a NetworkFirst rule waits for the network before falling back to the cache.";
674
+ };
675
+ readonly expiration: {
676
+ readonly type: "object";
677
+ readonly additionalProperties: false;
678
+ readonly properties: {
679
+ readonly maxEntries: {
680
+ readonly type: "number";
681
+ };
682
+ readonly maxAgeSeconds: {
683
+ readonly type: "number";
684
+ };
685
+ };
686
+ };
687
+ readonly cacheableResponse: {
688
+ readonly type: "object";
689
+ readonly additionalProperties: false;
690
+ readonly properties: {
691
+ readonly statuses: {
692
+ readonly type: "array";
693
+ readonly items: {
694
+ readonly type: "number";
695
+ };
696
+ };
697
+ readonly headers: {
698
+ readonly type: "object";
699
+ readonly additionalProperties: {
700
+ readonly type: "string";
701
+ };
702
+ };
703
+ };
704
+ };
705
+ };
706
+ };
707
+ };
708
+ };
709
+ };
710
+ readonly navigateFallbackDenylist: {
711
+ readonly type: "array";
712
+ readonly description: "Extra SPA navigate-fallback denylist patterns, unioned with the built-ins.";
713
+ readonly items: {
714
+ readonly description: "URL match. A string is matched verbatim by Workbox; { source, flags } is rebuilt into a RegExp at build time.";
715
+ readonly oneOf: readonly [{
716
+ readonly type: "string";
717
+ }, {
718
+ readonly type: "object";
719
+ readonly additionalProperties: false;
720
+ readonly required: readonly ["source"];
721
+ readonly properties: {
722
+ readonly source: {
723
+ readonly type: "string";
724
+ readonly description: "RegExp source.";
725
+ };
726
+ readonly flags: {
727
+ readonly type: "string";
728
+ readonly description: "RegExp flags (e.g. 'i').";
729
+ };
730
+ };
731
+ }];
732
+ };
733
+ };
734
+ };
735
+ };
437
736
  };
438
737
  };
439
738
  };
@@ -559,6 +858,7 @@ declare function connectDynamicBasePlugin(options?: {
559
858
  forWorker?: boolean;
560
859
  workerStripPrefix?: string;
561
860
  }): Plugin;
861
+ declare function escapeForRegExp(s: string): string;
562
862
  //#endregion
563
863
  //#region connect-utils/vite-plugins/ph-config.d.ts
564
864
  type PhConfigPluginOptions = {
@@ -595,5 +895,5 @@ declare const THEME_BOOT_MARKER = "data-ph-theme-boot";
595
895
  */
596
896
  declare function connectThemeBootPlugin(): Plugin;
597
897
  //#endregion
598
- export { ConnectBuildOptions, ConnectCommonOptions, ConnectPreviewOptions, ConnectStudioOptions, DEFAULT_CONNECT_OUTDIR, DEFAULT_VENDOR_INCLUDE, DYNAMIC_BASE_PLACEHOLDER, EXTERNAL_PACKAGES_IMPORT, IConnectOptions, IMPORT_SCRIPT_FILE, LOCAL_PACKAGE_ID, PH_DIR_NAME, PhConfigPluginOptions, PrebuiltVendor, RUNTIME_CONFIG_SCHEMA_ID, RUNTIME_CONFIG_SCHEMA_URL, THEME_BOOT_MARKER, VENDOR_EXTERNAL, VENDOR_URL_PREFIX, VendorPrebuildOptions, ViteDevOptions, appendToHtmlHead, backupIndexHtml, connectDynamicBasePlugin, connectThemeBootPlugin, copyConnect, ensureNodeVersion, getConnectBaseViteConfig, getConnectHtmlTags, makeImportScriptFromPackages, phConfigPlugin, prebuildConnectVendor, prependToHtmlHead, readJsonFile, removeBase64EnvValues, resolveConnectBundle, resolveConnectPackageJson, resolveConnectPublicDir, resolvePackage, resolveViteConfigPath, runShellScriptPlugin, runTsc, runtimeConfigSchema, stripVersionFromPackage };
898
+ export { ConnectBuildOptions, ConnectCommonOptions, ConnectPreviewOptions, ConnectStudioOptions, DEFAULT_CONNECT_OUTDIR, DEFAULT_VENDOR_INCLUDE, DYNAMIC_BASE_PLACEHOLDER, EXTERNAL_PACKAGES_IMPORT, IConnectOptions, IMPORT_SCRIPT_FILE, LOCAL_PACKAGE_ID, PH_DIR_NAME, PhConfigPluginOptions, PrebuiltVendor, RUNTIME_CONFIG_SCHEMA_ID, RUNTIME_CONFIG_SCHEMA_URL, THEME_BOOT_MARKER, VENDOR_EXTERNAL, VENDOR_URL_PREFIX, VendorPrebuildOptions, ViteDevOptions, appendToHtmlHead, backupIndexHtml, connectDynamicBasePlugin, connectThemeBootPlugin, copyConnect, ensureNodeVersion, escapeForRegExp, getConnectBaseViteConfig, getConnectHtmlTags, makeImportScriptFromPackages, phConfigPlugin, prebuildConnectVendor, prependToHtmlHead, readJsonFile, removeBase64EnvValues, resolveConnectBundle, resolveConnectPackageJson, resolveConnectPublicDir, resolvePackage, resolveViteConfigPath, runShellScriptPlugin, runTsc, runtimeConfigSchema, stripVersionFromPackage };
599
899
  //# sourceMappingURL=index.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../connect-utils/constants.ts","../connect-utils/externalize-vendor.ts","../connect-utils/types.ts","../connect-utils/helpers.ts","../connect-utils/runtime-config-schema.ts","../connect-utils/vite-config.ts","../connect-utils/vite-plugins/dynamic-base.ts","../connect-utils/vite-plugins/ph-config.ts","../connect-utils/vite-plugins/theme-boot.ts"],"mappings":"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"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../connect-utils/constants.ts","../connect-utils/externalize-vendor.ts","../connect-utils/types.ts","../connect-utils/helpers.ts","../connect-utils/runtime-config-schema.ts","../connect-utils/vite-config.ts","../connect-utils/vite-plugins/dynamic-base.ts","../connect-utils/vite-plugins/ph-config.ts","../connect-utils/vite-plugins/theme-boot.ts"],"mappings":"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"}