@junobuild/config 2.4.2 → 2.5.0-next-2025-10-14
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/README.md +46 -20
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +3 -3
- package/dist/node/index.mjs +1 -1
- package/dist/node/index.mjs.map +3 -3
- package/dist/types/satellite/configs/authentication.config.d.ts +31 -0
- package/dist/types/satellite/configs/emulator.config.d.ts +14 -0
- package/dist/types/satellite/configs/satellite.config.d.ts +6 -0
- package/dist/types/satellite/juno.config.d.ts +9 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -16,6 +16,7 @@ Configuration options for [Juno] CLI.
|
|
|
16
16
|
|
|
17
17
|
- [SatelliteAssertionsSchema](#gear-satelliteassertionsschema)
|
|
18
18
|
- [AuthenticationConfigInternetIdentitySchema](#gear-authenticationconfiginternetidentityschema)
|
|
19
|
+
- [AuthenticationConfigGoogleSchema](#gear-authenticationconfiggoogleschema)
|
|
19
20
|
- [AuthenticationConfigRulesSchema](#gear-authenticationconfigrulesschema)
|
|
20
21
|
- [AuthenticationConfigSchema](#gear-authenticationconfigschema)
|
|
21
22
|
- [PermissionTextSchema](#gear-permissiontextschema)
|
|
@@ -71,6 +72,18 @@ References:
|
|
|
71
72
|
|
|
72
73
|
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/authentication.config.ts#L7)
|
|
73
74
|
|
|
75
|
+
#### :gear: AuthenticationConfigGoogleSchema
|
|
76
|
+
|
|
77
|
+
| Constant | Type |
|
|
78
|
+
| ---------------------------------- | ---------------------------------------------- |
|
|
79
|
+
| `AuthenticationConfigGoogleSchema` | `ZodObject<{ clientId: ZodString; }, $strict>` |
|
|
80
|
+
|
|
81
|
+
References:
|
|
82
|
+
|
|
83
|
+
- AuthenticationConfigGoogle
|
|
84
|
+
|
|
85
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/authentication.config.ts#L36)
|
|
86
|
+
|
|
74
87
|
#### :gear: AuthenticationConfigRulesSchema
|
|
75
88
|
|
|
76
89
|
| Constant | Type |
|
|
@@ -81,19 +94,19 @@ References:
|
|
|
81
94
|
|
|
82
95
|
- AuthenticationConfigRules
|
|
83
96
|
|
|
84
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/authentication.config.ts#
|
|
97
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/authentication.config.ts#L64)
|
|
85
98
|
|
|
86
99
|
#### :gear: AuthenticationConfigSchema
|
|
87
100
|
|
|
88
|
-
| Constant | Type
|
|
89
|
-
| ---------------------------- |
|
|
90
|
-
| `AuthenticationConfigSchema` | `ZodObject<{ internetIdentity: ZodOptional<ZodObject<{ derivationOrigin: ZodOptional<ZodURL>; externalAlternativeOrigins: ZodOptional<ZodArray<ZodURL>>; }, $strict>>; rules: ZodOptional<...>; version: ZodOptional<...>; }, $strict>` |
|
|
101
|
+
| Constant | Type |
|
|
102
|
+
| ---------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
103
|
+
| `AuthenticationConfigSchema` | `ZodObject<{ internetIdentity: ZodOptional<ZodObject<{ derivationOrigin: ZodOptional<ZodURL>; externalAlternativeOrigins: ZodOptional<ZodArray<ZodURL>>; }, $strict>>; google: ZodOptional<...>; rules: ZodOptional<...>; version: ZodOptional<...>; }, $strict>` |
|
|
91
104
|
|
|
92
105
|
References:
|
|
93
106
|
|
|
94
107
|
- AuthenticationConfig
|
|
95
108
|
|
|
96
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/authentication.config.ts#
|
|
109
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/authentication.config.ts#L87)
|
|
97
110
|
|
|
98
111
|
#### :gear: PermissionTextSchema
|
|
99
112
|
|
|
@@ -213,7 +226,7 @@ References:
|
|
|
213
226
|
|
|
214
227
|
- EmulatorConfig
|
|
215
228
|
|
|
216
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#
|
|
229
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#L249)
|
|
217
230
|
|
|
218
231
|
#### :gear: ModuleLogVisibilitySchema
|
|
219
232
|
|
|
@@ -433,6 +446,7 @@ References:
|
|
|
433
446
|
|
|
434
447
|
- [SatelliteAssertions](#gear-satelliteassertions)
|
|
435
448
|
- [AuthenticationConfigInternetIdentity](#gear-authenticationconfiginternetidentity)
|
|
449
|
+
- [AuthenticationConfigGoogle](#gear-authenticationconfiggoogle)
|
|
436
450
|
- [AuthenticationConfigRules](#gear-authenticationconfigrules)
|
|
437
451
|
- [AuthenticationConfig](#gear-authenticationconfig)
|
|
438
452
|
- [Rule](#gear-rule)
|
|
@@ -481,6 +495,16 @@ Configure the behavior of Internet Identity.
|
|
|
481
495
|
|
|
482
496
|
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/authentication.config.ts#L16)
|
|
483
497
|
|
|
498
|
+
#### :gear: AuthenticationConfigGoogle
|
|
499
|
+
|
|
500
|
+
Configure the sign-in with Google.
|
|
501
|
+
|
|
502
|
+
| Property | Type | Description |
|
|
503
|
+
| ---------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
504
|
+
| `clientId` | `string` | The OAuth 2.0 client ID from your [Google Cloud Console](https://console.cloud.google.com/apis/credentials). Example: `"1234567890-abcdefg.apps.googleusercontent.com"` type: {string} |
|
|
505
|
+
|
|
506
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/authentication.config.ts#L49)
|
|
507
|
+
|
|
484
508
|
#### :gear: AuthenticationConfigRules
|
|
485
509
|
|
|
486
510
|
Configure the rules of the authentication.
|
|
@@ -489,7 +513,7 @@ Configure the rules of the authentication.
|
|
|
489
513
|
| ---------------- | ---------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
490
514
|
| `allowedCallers` | `string[]` | This option defines who's allowed to use your app. If you enable this, only the identities you list (in user key, format, like `bj4r4-5cdop-...`) will be allowed to sign in or use any features like Datastore or Storage. type: {PrincipalText[]}optional |
|
|
491
515
|
|
|
492
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/authentication.config.ts#
|
|
516
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/authentication.config.ts#L72)
|
|
493
517
|
|
|
494
518
|
#### :gear: AuthenticationConfig
|
|
495
519
|
|
|
@@ -498,10 +522,11 @@ Configures the Authentication options of a Satellite.
|
|
|
498
522
|
| Property | Type | Description |
|
|
499
523
|
| ------------------ | --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
500
524
|
| `internetIdentity` | `AuthenticationConfigInternetIdentity or undefined` | Optional configuration of Internet Identity authentication method. type: {AuthenticationConfigInternetIdentity}optional |
|
|
525
|
+
| `google` | `AuthenticationConfigGoogle or undefined` | Optional configuration for enabling Google authentication method. type: {AuthenticationConfigGoogle}optional |
|
|
501
526
|
| `rules` | `AuthenticationConfigRules or undefined` | Optional configuration for the rules of the authentication. type: {AuthenticationConfigRules}optional |
|
|
502
527
|
| `version` | `bigint or undefined` | The current version of the config. Optional. The CLI will automatically resolve the version and warn you if there's a potential overwrite. You can provide it if you want to manage versioning manually within your config file. type: {bigint}optional |
|
|
503
528
|
|
|
504
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/authentication.config.ts#
|
|
529
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/authentication.config.ts#L98)
|
|
505
530
|
|
|
506
531
|
#### :gear: Rule
|
|
507
532
|
|
|
@@ -563,12 +588,13 @@ Configures the behavior of the Datastore.
|
|
|
563
588
|
|
|
564
589
|
Represents the ports exposed by an emulator container.
|
|
565
590
|
|
|
566
|
-
| Property
|
|
567
|
-
|
|
|
568
|
-
| `server`
|
|
569
|
-
| `admin`
|
|
591
|
+
| Property | Type | Description |
|
|
592
|
+
| ------------------ | --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
593
|
+
| `server` | `number or undefined` | The port of the server used to simulate execution. This is the port your app connects to. Also known as the "local Internet Computer replica" or the "Pocket-IC port". default: 5987 |
|
|
594
|
+
| `admin` | `number or undefined` | The port of the admin server used for tasks like transferring ICP from the ledger. default: 5999 |
|
|
595
|
+
| `timeoutInSeconds` | `number or undefined` | Max number of seconds to wait for emulator ports to become ready. default: 30 |
|
|
570
596
|
|
|
571
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#
|
|
597
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#L32)
|
|
572
598
|
|
|
573
599
|
#### :gear: EmulatorSkylab
|
|
574
600
|
|
|
@@ -578,7 +604,7 @@ Configuration for the Skylab emulator.
|
|
|
578
604
|
| -------- | ------------------------------------------------------- | -------------------------------------- |
|
|
579
605
|
| `ports` | `(EmulatorPorts and { console: number; }) or undefined` | Ports exposed by the Skylab container. |
|
|
580
606
|
|
|
581
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#
|
|
607
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#L63)
|
|
582
608
|
|
|
583
609
|
#### :gear: EmulatorConsole
|
|
584
610
|
|
|
@@ -588,7 +614,7 @@ Configuration for the Console emulator.
|
|
|
588
614
|
| -------- | ---------------------------- | --------------------------------------- |
|
|
589
615
|
| `ports` | `EmulatorPorts or undefined` | Ports exposed by the Console container. |
|
|
590
616
|
|
|
591
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#
|
|
617
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#L86)
|
|
592
618
|
|
|
593
619
|
#### :gear: EmulatorSatellite
|
|
594
620
|
|
|
@@ -598,7 +624,7 @@ Configuration for the Satellite emulator.
|
|
|
598
624
|
| -------- | ---------------------------- | ----------------------------------------- |
|
|
599
625
|
| `ports` | `EmulatorPorts or undefined` | Ports exposed by the Satellite container. |
|
|
600
626
|
|
|
601
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#
|
|
627
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#L103)
|
|
602
628
|
|
|
603
629
|
#### :gear: EmulatorRunner
|
|
604
630
|
|
|
@@ -613,7 +639,7 @@ Shared options for all runner variants.
|
|
|
613
639
|
| `target` | `string or undefined` | Shared folder for deploying and hot-reloading serverless functions. |
|
|
614
640
|
| `platform` | `"linux/amd64" or "linux/arm64" or undefined` | The platform to use when running the emulator container. |
|
|
615
641
|
|
|
616
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#
|
|
642
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#L125)
|
|
617
643
|
|
|
618
644
|
#### :gear: NetworkServices
|
|
619
645
|
|
|
@@ -633,7 +659,7 @@ in the local Internet Computer network when the emulator starts.
|
|
|
633
659
|
| `internet_identity` | `boolean or undefined` | Internet Identity: Deploys the II canister for authentication. |
|
|
634
660
|
| `nns_dapp` | `boolean or undefined` | NNS dapp: Deploys the NNS UI canister and frontend application Requires cmc, icp, nns, sns, internet_identity to be enabled. |
|
|
635
661
|
|
|
636
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#
|
|
662
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#L180)
|
|
637
663
|
|
|
638
664
|
#### :gear: Network
|
|
639
665
|
|
|
@@ -644,7 +670,7 @@ by the emulator.
|
|
|
644
670
|
| ---------- | ----------------- | ----------------------------------------------------------- |
|
|
645
671
|
| `services` | `NetworkServices` | System canisters and applications available in the network. |
|
|
646
672
|
|
|
647
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#
|
|
673
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#L239)
|
|
648
674
|
|
|
649
675
|
#### :gear: ModuleSettings
|
|
650
676
|
|
|
@@ -875,7 +901,7 @@ The configuration for running the Juno emulator.
|
|
|
875
901
|
| ---------------- | ---- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
876
902
|
| `EmulatorConfig` | ` | {runner?: EmulatorRunner; network?: Network; skylab: EmulatorSkylab} or {runner?: EmulatorRunner; network?: Network; console: EmulatorConsole} or {runner?: EmulatorRunner; network?: Network; satellite: EmulatorSatellite}` |
|
|
877
903
|
|
|
878
|
-
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#
|
|
904
|
+
[:link: Source](https://github.com/junobuild/juno-js/tree/main/packages/config/src/satellite/configs/emulator.config.ts#L272)
|
|
879
905
|
|
|
880
906
|
#### :gear: ModuleLogVisibility
|
|
881
907
|
|
package/dist/browser/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import*as H from"zod";import*as lt from"zod";var D=e=>lt.custom(t=>e.implement(t));import*as u from"zod";import*as Ot from"zod";var N="abcdefghijklmnopqrstuvwxyz234567",P=Object.create(null);for(let e=0;e<N.length;e++)P[N[e]]=e;P[0]=P.o;P[1]=P.i;function dt(e){let t=0,o=0,n="";function r(i){return t<0?o|=i>>-t:o=i<<t&248,t>3?(t-=8,1):(t<4&&(n+=N[o>>3],t+=5),0)}for(let i=0;i<e.length;)i+=r(e[i]);return n+(t<0?N[o>>3]:"")}function ut(e){let t=0,o=0,n=new Uint8Array(e.length*4/3|0),r=0;function i(c){let s=P[c.toLowerCase()];if(s===void 0)throw new Error(`Invalid character: ${JSON.stringify(c)}`);s<<=3,o|=s>>>t,t+=5,t>=8&&(n[r++]=o,t-=8,t>0?o=s<<5-t&255:o=0)}for(let c of e)i(c);return n.slice(0,r)}var qt=new Uint32Array([0,1996959894,3993919788,2567524794,124634137,1886057615,3915621685,2657392035,249268274,2044508324,3772115230,2547177864,162941995,2125561021,3887607047,2428444049,498536548,1789927666,4089016648,2227061214,450548861,1843258603,4107580753,2211677639,325883990,1684777152,4251122042,2321926636,335633487,1661365465,4195302755,2366115317,997073096,1281953886,3579855332,2724688242,1006888145,1258607687,3524101629,2768942443,901097722,1119000684,3686517206,2898065728,853044451,1172266101,3705015759,2882616665,651767980,1373503546,3369554304,3218104598,565507253,1454621731,3485111705,3099436303,671266974,1594198024,3322730930,2970347812,795835527,1483230225,3244367275,3060149565,1994146192,31158534,2563907772,4023717930,1907459465,112637215,2680153253,3904427059,2013776290,251722036,2517215374,3775830040,2137656763,141376813,2439277719,3865271297,1802195444,476864866,2238001368,4066508878,1812370925,453092731,2181625025,4111451223,1706088902,314042704,2344532202,4240017532,1658658271,366619977,2362670323,4224994405,1303535960,984961486,2747007092,3569037538,1256170817,1037604311,2765210733,3554079995,1131014506,879679996,2909243462,3663771856,1141124467,855842277,2852801631,3708648649,1342533948,654459306,3188396048,3373015174,1466479909,544179635,3110523913,3462522015,1591671054,702138776,2966460450,3352799412,1504918807,783551873,3082640443,3233442989,3988292384,2596254646,62317068,1957810842,3939845945,2647816111,81470997,1943803523,3814918930,2489596804,225274430,2053790376,3826175755,2466906013,167816743,2097651377,4027552580,2265490386,503444072,1762050814,4150417245,2154129355,426522225,1852507879,4275313526,2312317920,282753626,1742555852,4189708143,2394877945,397917763,1622183637,3604390888,2714866558,953729732,1340076626,3518719985,2797360999,1068828381,1219638859,3624741850,2936675148,906185462,1090812512,3747672003,2825379669,829329135,1181335161,3412177804,3160834842,628085408,1382605366,3423369109,3138078467,570562233,1426400815,3317316542,2998733608,733239954,1555261956,3268935591,3050360625,752459403,1541320221,2607071920,3965973030,1969922972,40735498,2617837225,3943577151,1913087877,83908371,2512341634,3803740692,2075208622,213261112,2463272603,3855990285,2094854071,198958881,2262029012,4057260610,1759359992,534414190,2176718541,4139329115,1873836001,414664567,2282248934,4279200368,1711684554,285281116,2405801727,4167216745,1634467795,376229701,2685067896,3608007406,1308918612,956543938,2808555105,3495958263,1231636301,1047427035,2932959818,3654703836,1088359270,936918e3,2847714899,3736837829,1202900863,817233897,3183342108,3401237130,1404277552,615818150,3134207493,3453421203,1423857449,601450431,3009837614,3294710456,1567103746,711928724,3020668471,3272380065,1510334235,755167117]);function bt(e){let t=-1;for(let o=0;o<e.length;o++){let r=(e[o]^t)&255;t=qt[r]^t>>>8}return(t^-1)>>>0}function $t(e){return e instanceof Uint8Array||ArrayBuffer.isView(e)&&e.constructor.name==="Uint8Array"}function L(e,...t){if(!$t(e))throw new Error("Uint8Array expected");if(t.length>0&&!t.includes(e.length))throw new Error("Uint8Array expected of length "+t+", got length="+e.length)}function Z(e,t=!0){if(e.destroyed)throw new Error("Hash instance has been destroyed");if(t&&e.finished)throw new Error("Hash#digest() has already been called")}function ht(e,t){L(e);let o=t.outputLen;if(e.length<o)throw new Error("digestInto() expects output buffer of length at least "+o)}function v(...e){for(let t=0;t<e.length;t++)e[t].fill(0)}function V(e){return new DataView(e.buffer,e.byteOffset,e.byteLength)}function h(e,t){return e<<32-t|e>>>t}var gt=typeof Uint8Array.from([]).toHex=="function"&&typeof Uint8Array.fromHex=="function",Xt=Array.from({length:256},(e,t)=>t.toString(16).padStart(2,"0"));function yt(e){if(L(e),gt)return e.toHex();let t="";for(let o=0;o<e.length;o++)t+=Xt[e[o]];return t}var S={_0:48,_9:57,A:65,F:70,a:97,f:102};function mt(e){if(e>=S._0&&e<=S._9)return e-S._0;if(e>=S.A&&e<=S.F)return e-(S.A-10);if(e>=S.a&&e<=S.f)return e-(S.a-10)}function Ct(e){if(typeof e!="string")throw new Error("hex string expected, got "+typeof e);if(gt)return Uint8Array.fromHex(e);let t=e.length,o=t/2;if(t%2)throw new Error("hex string expected, got unpadded hex of length "+t);let n=new Uint8Array(o);for(let r=0,i=0;r<o;r++,i+=2){let c=mt(e.charCodeAt(i)),s=mt(e.charCodeAt(i+1));if(c===void 0||s===void 0){let l=e[i]+e[i+1];throw new Error('hex string expected, got non-hex character "'+l+'" at index '+i)}n[r]=c*16+s}return n}function Qt(e){if(typeof e!="string")throw new Error("string expected");return new Uint8Array(new TextEncoder().encode(e))}function tt(e){return typeof e=="string"&&(e=Qt(e)),L(e),e}var G=class{};function St(e){let t=n=>e().update(tt(n)).digest(),o=e();return t.outputLen=o.outputLen,t.blockLen=o.blockLen,t.create=()=>e(),t}function Yt(e,t,o,n){if(typeof e.setBigUint64=="function")return e.setBigUint64(t,o,n);let r=BigInt(32),i=BigInt(4294967295),c=Number(o>>r&i),s=Number(o&i),l=n?4:0,m=n?0:4;e.setUint32(t+l,c,n),e.setUint32(t+m,s,n)}function zt(e,t,o){return e&t^~e&o}function Et(e,t,o){return e&t^e&o^t&o}var W=class extends G{constructor(t,o,n,r){super(),this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.blockLen=t,this.outputLen=o,this.padOffset=n,this.isLE=r,this.buffer=new Uint8Array(t),this.view=V(this.buffer)}update(t){Z(this),t=tt(t),L(t);let{view:o,buffer:n,blockLen:r}=this,i=t.length;for(let c=0;c<i;){let s=Math.min(r-this.pos,i-c);if(s===r){let l=V(t);for(;r<=i-c;c+=r)this.process(l,c);continue}n.set(t.subarray(c,c+s),this.pos),this.pos+=s,c+=s,this.pos===r&&(this.process(o,0),this.pos=0)}return this.length+=t.length,this.roundClean(),this}digestInto(t){Z(this),ht(t,this),this.finished=!0;let{buffer:o,view:n,blockLen:r,isLE:i}=this,{pos:c}=this;o[c++]=128,v(this.buffer.subarray(c)),this.padOffset>r-c&&(this.process(n,0),c=0);for(let x=c;x<r;x++)o[x]=0;Yt(n,r-8,BigInt(this.length*8),i),this.process(n,0);let s=V(t),l=this.outputLen;if(l%4)throw new Error("_sha2: outputLen should be aligned to 32bit");let m=l/4,w=this.get();if(m>w.length)throw new Error("_sha2: outputLen bigger than state");for(let x=0;x<m;x++)s.setUint32(4*x,w[x],i)}digest(){let{buffer:t,outputLen:o}=this;this.digestInto(t);let n=t.slice(0,o);return this.destroy(),n}_cloneInto(t){t||(t=new this.constructor),t.set(...this.get());let{blockLen:o,buffer:n,length:r,finished:i,destroyed:c,pos:s}=this;return t.destroyed=c,t.finished=i,t.length=r,t.pos=s,r%o&&t.buffer.set(n),t}clone(){return this._cloneInto()}},z=Uint32Array.from([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),E=Uint32Array.from([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428]);var Zt=Uint32Array.from([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),O=new Uint32Array(64),et=class extends W{constructor(t=32){super(64,t,8,!1),this.A=z[0]|0,this.B=z[1]|0,this.C=z[2]|0,this.D=z[3]|0,this.E=z[4]|0,this.F=z[5]|0,this.G=z[6]|0,this.H=z[7]|0}get(){let{A:t,B:o,C:n,D:r,E:i,F:c,G:s,H:l}=this;return[t,o,n,r,i,c,s,l]}set(t,o,n,r,i,c,s,l){this.A=t|0,this.B=o|0,this.C=n|0,this.D=r|0,this.E=i|0,this.F=c|0,this.G=s|0,this.H=l|0}process(t,o){for(let x=0;x<16;x++,o+=4)O[x]=t.getUint32(o,!1);for(let x=16;x<64;x++){let J=O[x-15],j=O[x-2],pt=h(J,7)^h(J,18)^J>>>3,Y=h(j,17)^h(j,19)^j>>>10;O[x]=Y+O[x-7]+pt+O[x-16]|0}let{A:n,B:r,C:i,D:c,E:s,F:l,G:m,H:w}=this;for(let x=0;x<64;x++){let J=h(s,6)^h(s,11)^h(s,25),j=w+J+zt(s,l,m)+Zt[x]+O[x]|0,Y=(h(n,2)^h(n,13)^h(n,22))+Et(n,r,i)|0;w=m,m=l,l=s,s=c+j|0,c=i,i=r,r=n,n=j+Y|0}n=n+this.A|0,r=r+this.B|0,i=i+this.C|0,c=c+this.D|0,s=s+this.E|0,l=l+this.F|0,m=m+this.G|0,w=w+this.H|0,this.set(n,r,i,c,s,l,m,w)}roundClean(){v(O)}destroy(){this.set(0,0,0,0,0,0,0,0),v(this.buffer)}},ot=class extends et{constructor(){super(28),this.A=E[0]|0,this.B=E[1]|0,this.C=E[2]|0,this.D=E[3]|0,this.E=E[4]|0,this.F=E[5]|0,this.G=E[6]|0,this.H=E[7]|0}};var At=St(()=>new ot);var K="__principal__",te=2,wt=4,ee="aaaaa-aa",M=class e{static anonymous(){return new this(new Uint8Array([wt]))}static managementCanister(){return this.fromText(ee)}static selfAuthenticating(t){let o=At(t);return new this(new Uint8Array([...o,te]))}static from(t){if(typeof t=="string")return e.fromText(t);if(Object.getPrototypeOf(t)===Uint8Array.prototype)return new e(t);if(e.isPrincipal(t))return new e(t._arr);throw new Error(`Impossible to convert ${JSON.stringify(t)} to Principal.`)}static fromHex(t){return new this(Ct(t))}static fromText(t){let o=t;if(t.includes(K)){let c=JSON.parse(t);K in c&&(o=c[K])}let n=o.toLowerCase().replace(/-/g,""),r=ut(n);r=r.slice(4,r.length);let i=new this(r);if(i.toText()!==o)throw new Error(`Principal "${i.toText()}" does not have a valid checksum (original value "${o}" may not be a valid Principal ID).`);return i}static fromUint8Array(t){return new this(t)}static isPrincipal(t){return t instanceof e||typeof t=="object"&&t!==null&&"_isPrincipal"in t&&t._isPrincipal===!0&&"_arr"in t&&t._arr instanceof Uint8Array}constructor(t){this._arr=t,this._isPrincipal=!0}isAnonymous(){return this._arr.byteLength===1&&this._arr[0]===wt}toUint8Array(){return this._arr}toHex(){return yt(this._arr).toUpperCase()}toText(){let t=new ArrayBuffer(4);new DataView(t).setUint32(0,bt(this._arr));let n=new Uint8Array(t),r=new Uint8Array([...n,...this._arr]),c=dt(r).match(/.{1,5}/g);if(!c)throw new Error;return c.join("-")}toString(){return this.toText()}toJSON(){return{[K]:this.toText()}}compareTo(t){for(let o=0;o<Math.min(this._arr.length,t._arr.length);o++){if(this._arr[o]<t._arr[o])return"lt";if(this._arr[o]>t._arr[o])return"gt"}return this._arr.length<t._arr.length?"lt":this._arr.length>t._arr.length?"gt":"eq"}ltEq(t){let o=this.compareTo(t);return o=="lt"||o=="eq"}gtEq(t){let o=this.compareTo(t);return o=="gt"||o=="eq"}};import{PrincipalTextSchema as oe}from"@dfinity/zod-schemas";import*as F from"zod";var U=F.string().refine(e=>oe.safeParse(e).success,{message:"Invalid textual representation of a Principal."}),q=F.unknown().transform((e,t)=>M.isPrincipal(e)?M.from(e):(t.issues.push({code:"custom",message:"Invalid Principal",input:e}),F.NEVER));var _t=Ot.unknown().refine(e=>e!=null&&typeof e=="object"&&"transformRequest"in e&&typeof e.transformRequest=="function"&&"getPrincipal"in e&&typeof e.getPrincipal=="function"&&q.safeParse(e.getPrincipal()).success,{message:"Invalid Identity"});var nt=u.strictObject({satelliteId:q,identity:_t,container:u.string().optional()}),ne=u.function({input:u.tuple([nt]),output:u.promise(u.void()).or(u.void())}),rt=u.strictObject({run:D(ne)});var re=H.function({input:H.tuple([nt]),output:rt}),co=H.union([rt,D(re)]);function ao(e){return e}import*as Tt from"zod";import*as _ from"zod";var T=_.union([_.literal("production"),_.string()]),It=_.object({mode:T});var po=It.extend({profile:Tt.string().optional()});function uo(e){return e}import{PrincipalTextSchema as se}from"@dfinity/zod-schemas";import*as g from"zod";import*as f from"zod";import*as k from"zod";var $=k.object({heap:k.bigint().optional(),stable:k.bigint().optional()}).strict();var it=f.string(),ie=f.object({source:it,headers:f.array(f.tuple([f.string(),f.string()]))}).strict(),ce=f.object({source:it,destination:f.string()}).strict(),ae=f.object({source:it,location:f.string(),code:f.union([f.literal(301),f.literal(302)])}).strict(),X=f.object({headers:f.array(ie).optional(),rewrites:f.array(ce).optional(),redirects:f.array(ae).optional(),iframe:f.enum(["deny","same-origin","allow-any"]).optional(),rawAccess:f.boolean().optional(),maxMemorySize:$.optional(),version:f.bigint().optional()});import*as p from"zod";import*as Rt from"zod";var jt=Rt.enum(["identity","gzip","compress","deflate","br"]);var Pt=p.strictObject({pattern:p.string().optional(),mode:p.enum(["both","replace"]).optional(),algorithm:p.enum(["gzip","brotli"]).optional()}),Ft=p.strictObject({source:p.string().optional(),ignore:p.array(p.string()).optional(),precompress:p.union([Pt,p.array(Pt),p.literal(!1)]).optional(),encoding:p.array(p.tuple([p.string(),jt])).optional(),predeploy:p.array(p.string()).optional(),postdeploy:p.array(p.string()).optional()});var fe=g.object({id:se}),xe=g.object({ids:g.record(T,U)}),Ut=g.object({...Ft.shape,storage:X.optional()}),_o=g.union([g.object({...fe.shape,...Ut.shape}).strict(),g.object({...xe.shape,...Ut.shape}).strict()]);import*as A from"zod";var pe=A.record(A.string(),A.string()),To=A.object({name:A.string(),version:A.string(),dependencies:pe.optional()});var jo="@junobuild/satellite",Po="@junobuild/sputnik",Fo="@junobuild/mission-control",Uo="@junobuild/orbiter";function Jo(e){return e}import*as I from"zod";var Ht=I.strictObject({heapMemory:I.union([I.bigint(),I.boolean()]).optional()});import{PrincipalTextSchema as le}from"@dfinity/zod-schemas";import*as b from"zod";var de=b.strictObject({derivationOrigin:b.url().optional(),externalAlternativeOrigins:b.array(b.url()).optional()}),ue=b.strictObject({allowedCallers:b.array(le)}),Jt=b.strictObject({internetIdentity:de.optional(),rules:ue.optional(),version:b.bigint().optional()});import*as B from"zod";import*as d from"zod";var Lt=d.enum(["public","private","managed","controllers"]),be=d.enum(["heap","stable"]),Bo=d.enum(["db","storage"]),ct=d.strictObject({collection:d.string(),read:Lt,write:Lt,memory:be,createdAt:d.bigint().optional(),updatedAt:d.bigint().optional(),version:d.bigint().optional(),maxSize:d.bigint().optional(),maxChangesPerUser:d.number().optional(),maxCapacity:d.number().optional(),mutablePermissions:d.boolean().optional().default(!0),maxTokens:d.bigint().optional()});var me=ct.omit({createdAt:!0,updatedAt:!0,maxSize:!0}),he=ct.omit({createdAt:!0,updatedAt:!0,maxCapacity:!0}),vt=B.strictObject({datastore:B.array(me).optional(),storage:B.array(he).optional()});import*as Q from"zod";var Mt=Q.strictObject({maxMemorySize:$.optional(),version:Q.bigint().optional()});import*as a from"zod";var at={registry:!1,cmc:!0,icp:!0,cycles:!1,nns:!0,sns:!1,internet_identity:!0,nns_dapp:!1},kt={...at,cmc:!1,nns:!1};var ge=["icp","nns"],ye=["cmc","icp","nns","sns","internet_identity"],Ce=(e,t)=>{let n={..."satellite"in e?kt:at,...e.network?.services??{}},r=({requiredServices:i,key:c})=>{i.find(l=>n[l]===!1)!==void 0&&t.addIssue({code:"custom",path:["network","services",c],message:`${c} requires: ${i.join(", ")}`})};n.nns_dapp&&r({requiredServices:ye,key:"nns_dapp"}),n.cmc&&r({requiredServices:ge,key:"cmc"})},Bt=(e,t)=>{e.network!==void 0&&e.network.services!==void 0&&Ce(e,t)};var xt=a.strictObject({server:a.number().optional(),admin:a.number().optional()}),Se=a.strictObject({console:a.number().optional()}),ze=a.strictObject({ports:xt.extend(Se.shape).optional()}),Ee=a.strictObject({ports:xt.optional()}),Ae=a.strictObject({ports:xt.optional()}),st=a.strictObject({type:a.enum(["docker","podman"]),image:a.string().optional(),name:a.string().optional(),volume:a.string().optional(),target:a.string().optional(),platform:a.enum(["linux/amd64","linux/arm64"]).optional()}),we=a.strictObject({registry:a.boolean().optional(),cmc:a.boolean().optional(),icp:a.boolean().optional(),cycles:a.boolean().optional(),nns:a.boolean().optional(),sns:a.boolean().optional(),internet_identity:a.boolean().optional(),nns_dapp:a.boolean().optional()}),ft=a.strictObject({services:we}),Dt=a.union([a.strictObject({runner:st.optional(),network:ft.optional(),skylab:ze}),a.strictObject({runner:st.optional(),network:ft.optional(),console:Ee}),a.strictObject({runner:st.optional(),network:ft.optional(),satellite:Ae})]).superRefine(Bt);import*as y from"zod";var Oe=y.enum(["controllers","public"]),Nt=y.strictObject({freezingThreshold:y.bigint().optional(),reservedCyclesLimit:y.bigint().optional(),logVisibility:Oe.optional(),heapMemoryLimit:y.bigint().optional(),memoryAllocation:y.bigint().optional(),computeAllocation:y.bigint().optional()});import{PrincipalTextSchema as _e}from"@dfinity/zod-schemas";import*as R from"zod";var Ie=R.object({id:_e}),Te=R.object({ids:R.record(T,U)}),Gt=R.union([Ie.strict(),Te.strict()]);import{PrincipalTextSchema as Re}from"@dfinity/zod-schemas";import*as C from"zod";var je=C.object({id:Re}),Pe=C.object({ids:C.record(T,U)}),Vt=C.object({storage:X.optional(),datastore:Mt.optional(),authentication:Jt.optional(),assertions:Ht.optional(),settings:Nt.optional(),collections:vt.optional()}),Wt=C.union([C.object({...je.shape,...Vt.shape}).strict(),C.object({...Pe.shape,...Vt.shape}).strict()]);import*as Kt from"zod";var hn=Kt.strictObject({satellite:Wt,orbiter:Gt.optional(),emulator:Dt.optional()});export{de as AuthenticationConfigInternetIdentitySchema,ue as AuthenticationConfigRulesSchema,Jt as AuthenticationConfigSchema,Ft as CliConfigSchema,vt as CollectionsSchema,fe as ConsoleIdSchema,xe as ConsoleIdsSchema,at as DEFAULT_NETWORK_SERVICES,kt as DEFAULT_SATELLITE_NETWORK_SERVICES,me as DatastoreCollectionSchema,Mt as DatastoreConfigSchema,Dt as EmulatorConfigSchema,jt as EncodingTypeSchema,Fo as JUNO_PACKAGE_MISSION_CONTROL_ID,Uo as JUNO_PACKAGE_ORBITER_ID,jo as JUNO_PACKAGE_SATELLITE_ID,Po as JUNO_PACKAGE_SPUTNIK_ID,It as JunoConfigEnvSchema,T as JunoConfigModeSchema,hn as JunoConfigSchema,_o as JunoConsoleConfigSchema,pe as JunoPackageDependenciesSchema,To as JunoPackageSchema,$ as MaxMemorySizeConfigSchema,be as MemoryTextSchema,Oe as ModuleLogVisibilitySchema,Nt as ModuleSettingsSchema,nt as OnRunContextSchema,po as OnRunEnvSchema,rt as OnRunSchema,Gt as OrbiterConfigSchema,Ie as OrbiterIdSchema,Te as OrbiterIdsSchema,Lt as PermissionTextSchema,Pt as PrecompressSchema,ct as RuleSchema,Bo as RulesTypeSchema,co as RunFnOrObjectSchema,re as RunFnSchema,Ht as SatelliteAssertionsSchema,Wt as SatelliteConfigOptionsSchema,je as SatelliteIdSchema,Pe as SatelliteIdsSchema,he as StorageCollectionSchema,ie as StorageConfigHeaderSchema,ae as StorageConfigRedirectSchema,ce as StorageConfigRewriteSchema,X as StorageConfigSchema,it as StorageConfigSourceGlobSchema,Jo as defineConfig,uo as defineConsoleConfig,ao as defineRun};
|
|
1
|
+
import*as v from"zod";import*as lt from"zod";var D=e=>lt.custom(t=>e.implement(t));import*as b from"zod";import*as Ot from"zod";var N="abcdefghijklmnopqrstuvwxyz234567",P=Object.create(null);for(let e=0;e<N.length;e++)P[N[e]]=e;P[0]=P.o;P[1]=P.i;function dt(e){let t=0,o=0,n="";function r(i){return t<0?o|=i>>-t:o=i<<t&248,t>3?(t-=8,1):(t<4&&(n+=N[o>>3],t+=5),0)}for(let i=0;i<e.length;)i+=r(e[i]);return n+(t<0?N[o>>3]:"")}function ut(e){let t=0,o=0,n=new Uint8Array(e.length*4/3|0),r=0;function i(c){let s=P[c.toLowerCase()];if(s===void 0)throw new Error(`Invalid character: ${JSON.stringify(c)}`);s<<=3,o|=s>>>t,t+=5,t>=8&&(n[r++]=o,t-=8,t>0?o=s<<5-t&255:o=0)}for(let c of e)i(c);return n.slice(0,r)}var qt=new Uint32Array([0,1996959894,3993919788,2567524794,124634137,1886057615,3915621685,2657392035,249268274,2044508324,3772115230,2547177864,162941995,2125561021,3887607047,2428444049,498536548,1789927666,4089016648,2227061214,450548861,1843258603,4107580753,2211677639,325883990,1684777152,4251122042,2321926636,335633487,1661365465,4195302755,2366115317,997073096,1281953886,3579855332,2724688242,1006888145,1258607687,3524101629,2768942443,901097722,1119000684,3686517206,2898065728,853044451,1172266101,3705015759,2882616665,651767980,1373503546,3369554304,3218104598,565507253,1454621731,3485111705,3099436303,671266974,1594198024,3322730930,2970347812,795835527,1483230225,3244367275,3060149565,1994146192,31158534,2563907772,4023717930,1907459465,112637215,2680153253,3904427059,2013776290,251722036,2517215374,3775830040,2137656763,141376813,2439277719,3865271297,1802195444,476864866,2238001368,4066508878,1812370925,453092731,2181625025,4111451223,1706088902,314042704,2344532202,4240017532,1658658271,366619977,2362670323,4224994405,1303535960,984961486,2747007092,3569037538,1256170817,1037604311,2765210733,3554079995,1131014506,879679996,2909243462,3663771856,1141124467,855842277,2852801631,3708648649,1342533948,654459306,3188396048,3373015174,1466479909,544179635,3110523913,3462522015,1591671054,702138776,2966460450,3352799412,1504918807,783551873,3082640443,3233442989,3988292384,2596254646,62317068,1957810842,3939845945,2647816111,81470997,1943803523,3814918930,2489596804,225274430,2053790376,3826175755,2466906013,167816743,2097651377,4027552580,2265490386,503444072,1762050814,4150417245,2154129355,426522225,1852507879,4275313526,2312317920,282753626,1742555852,4189708143,2394877945,397917763,1622183637,3604390888,2714866558,953729732,1340076626,3518719985,2797360999,1068828381,1219638859,3624741850,2936675148,906185462,1090812512,3747672003,2825379669,829329135,1181335161,3412177804,3160834842,628085408,1382605366,3423369109,3138078467,570562233,1426400815,3317316542,2998733608,733239954,1555261956,3268935591,3050360625,752459403,1541320221,2607071920,3965973030,1969922972,40735498,2617837225,3943577151,1913087877,83908371,2512341634,3803740692,2075208622,213261112,2463272603,3855990285,2094854071,198958881,2262029012,4057260610,1759359992,534414190,2176718541,4139329115,1873836001,414664567,2282248934,4279200368,1711684554,285281116,2405801727,4167216745,1634467795,376229701,2685067896,3608007406,1308918612,956543938,2808555105,3495958263,1231636301,1047427035,2932959818,3654703836,1088359270,936918e3,2847714899,3736837829,1202900863,817233897,3183342108,3401237130,1404277552,615818150,3134207493,3453421203,1423857449,601450431,3009837614,3294710456,1567103746,711928724,3020668471,3272380065,1510334235,755167117]);function bt(e){let t=-1;for(let o=0;o<e.length;o++){let r=(e[o]^t)&255;t=qt[r]^t>>>8}return(t^-1)>>>0}function $t(e){return e instanceof Uint8Array||ArrayBuffer.isView(e)&&e.constructor.name==="Uint8Array"}function J(e,...t){if(!$t(e))throw new Error("Uint8Array expected");if(t.length>0&&!t.includes(e.length))throw new Error("Uint8Array expected of length "+t+", got length="+e.length)}function Z(e,t=!0){if(e.destroyed)throw new Error("Hash instance has been destroyed");if(t&&e.finished)throw new Error("Hash#digest() has already been called")}function ht(e,t){J(e);let o=t.outputLen;if(e.length<o)throw new Error("digestInto() expects output buffer of length at least "+o)}function L(...e){for(let t=0;t<e.length;t++)e[t].fill(0)}function V(e){return new DataView(e.buffer,e.byteOffset,e.byteLength)}function h(e,t){return e<<32-t|e>>>t}var gt=typeof Uint8Array.from([]).toHex=="function"&&typeof Uint8Array.fromHex=="function",Qt=Array.from({length:256},(e,t)=>t.toString(16).padStart(2,"0"));function yt(e){if(J(e),gt)return e.toHex();let t="";for(let o=0;o<e.length;o++)t+=Qt[e[o]];return t}var C={_0:48,_9:57,A:65,F:70,a:97,f:102};function mt(e){if(e>=C._0&&e<=C._9)return e-C._0;if(e>=C.A&&e<=C.F)return e-(C.A-10);if(e>=C.a&&e<=C.f)return e-(C.a-10)}function St(e){if(typeof e!="string")throw new Error("hex string expected, got "+typeof e);if(gt)return Uint8Array.fromHex(e);let t=e.length,o=t/2;if(t%2)throw new Error("hex string expected, got unpadded hex of length "+t);let n=new Uint8Array(o);for(let r=0,i=0;r<o;r++,i+=2){let c=mt(e.charCodeAt(i)),s=mt(e.charCodeAt(i+1));if(c===void 0||s===void 0){let l=e[i]+e[i+1];throw new Error('hex string expected, got non-hex character "'+l+'" at index '+i)}n[r]=c*16+s}return n}function Xt(e){if(typeof e!="string")throw new Error("string expected");return new Uint8Array(new TextEncoder().encode(e))}function tt(e){return typeof e=="string"&&(e=Xt(e)),J(e),e}var G=class{};function Ct(e){let t=n=>e().update(tt(n)).digest(),o=e();return t.outputLen=o.outputLen,t.blockLen=o.blockLen,t.create=()=>e(),t}function Yt(e,t,o,n){if(typeof e.setBigUint64=="function")return e.setBigUint64(t,o,n);let r=BigInt(32),i=BigInt(4294967295),c=Number(o>>r&i),s=Number(o&i),l=n?4:0,m=n?0:4;e.setUint32(t+l,c,n),e.setUint32(t+m,s,n)}function zt(e,t,o){return e&t^~e&o}function Et(e,t,o){return e&t^e&o^t&o}var W=class extends G{constructor(t,o,n,r){super(),this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.blockLen=t,this.outputLen=o,this.padOffset=n,this.isLE=r,this.buffer=new Uint8Array(t),this.view=V(this.buffer)}update(t){Z(this),t=tt(t),J(t);let{view:o,buffer:n,blockLen:r}=this,i=t.length;for(let c=0;c<i;){let s=Math.min(r-this.pos,i-c);if(s===r){let l=V(t);for(;r<=i-c;c+=r)this.process(l,c);continue}n.set(t.subarray(c,c+s),this.pos),this.pos+=s,c+=s,this.pos===r&&(this.process(o,0),this.pos=0)}return this.length+=t.length,this.roundClean(),this}digestInto(t){Z(this),ht(t,this),this.finished=!0;let{buffer:o,view:n,blockLen:r,isLE:i}=this,{pos:c}=this;o[c++]=128,L(this.buffer.subarray(c)),this.padOffset>r-c&&(this.process(n,0),c=0);for(let x=c;x<r;x++)o[x]=0;Yt(n,r-8,BigInt(this.length*8),i),this.process(n,0);let s=V(t),l=this.outputLen;if(l%4)throw new Error("_sha2: outputLen should be aligned to 32bit");let m=l/4,w=this.get();if(m>w.length)throw new Error("_sha2: outputLen bigger than state");for(let x=0;x<m;x++)s.setUint32(4*x,w[x],i)}digest(){let{buffer:t,outputLen:o}=this;this.digestInto(t);let n=t.slice(0,o);return this.destroy(),n}_cloneInto(t){t||(t=new this.constructor),t.set(...this.get());let{blockLen:o,buffer:n,length:r,finished:i,destroyed:c,pos:s}=this;return t.destroyed=c,t.finished=i,t.length=r,t.pos=s,r%o&&t.buffer.set(n),t}clone(){return this._cloneInto()}},z=Uint32Array.from([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),E=Uint32Array.from([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428]);var Zt=Uint32Array.from([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),O=new Uint32Array(64),et=class extends W{constructor(t=32){super(64,t,8,!1),this.A=z[0]|0,this.B=z[1]|0,this.C=z[2]|0,this.D=z[3]|0,this.E=z[4]|0,this.F=z[5]|0,this.G=z[6]|0,this.H=z[7]|0}get(){let{A:t,B:o,C:n,D:r,E:i,F:c,G:s,H:l}=this;return[t,o,n,r,i,c,s,l]}set(t,o,n,r,i,c,s,l){this.A=t|0,this.B=o|0,this.C=n|0,this.D=r|0,this.E=i|0,this.F=c|0,this.G=s|0,this.H=l|0}process(t,o){for(let x=0;x<16;x++,o+=4)O[x]=t.getUint32(o,!1);for(let x=16;x<64;x++){let H=O[x-15],j=O[x-2],pt=h(H,7)^h(H,18)^H>>>3,Y=h(j,17)^h(j,19)^j>>>10;O[x]=Y+O[x-7]+pt+O[x-16]|0}let{A:n,B:r,C:i,D:c,E:s,F:l,G:m,H:w}=this;for(let x=0;x<64;x++){let H=h(s,6)^h(s,11)^h(s,25),j=w+H+zt(s,l,m)+Zt[x]+O[x]|0,Y=(h(n,2)^h(n,13)^h(n,22))+Et(n,r,i)|0;w=m,m=l,l=s,s=c+j|0,c=i,i=r,r=n,n=j+Y|0}n=n+this.A|0,r=r+this.B|0,i=i+this.C|0,c=c+this.D|0,s=s+this.E|0,l=l+this.F|0,m=m+this.G|0,w=w+this.H|0,this.set(n,r,i,c,s,l,m,w)}roundClean(){L(O)}destroy(){this.set(0,0,0,0,0,0,0,0),L(this.buffer)}},ot=class extends et{constructor(){super(28),this.A=E[0]|0,this.B=E[1]|0,this.C=E[2]|0,this.D=E[3]|0,this.E=E[4]|0,this.F=E[5]|0,this.G=E[6]|0,this.H=E[7]|0}};var At=Ct(()=>new ot);var K="__principal__",te=2,wt=4,ee="aaaaa-aa",M=class e{static anonymous(){return new this(new Uint8Array([wt]))}static managementCanister(){return this.fromText(ee)}static selfAuthenticating(t){let o=At(t);return new this(new Uint8Array([...o,te]))}static from(t){if(typeof t=="string")return e.fromText(t);if(Object.getPrototypeOf(t)===Uint8Array.prototype)return new e(t);if(e.isPrincipal(t))return new e(t._arr);throw new Error(`Impossible to convert ${JSON.stringify(t)} to Principal.`)}static fromHex(t){return new this(St(t))}static fromText(t){let o=t;if(t.includes(K)){let c=JSON.parse(t);K in c&&(o=c[K])}let n=o.toLowerCase().replace(/-/g,""),r=ut(n);r=r.slice(4,r.length);let i=new this(r);if(i.toText()!==o)throw new Error(`Principal "${i.toText()}" does not have a valid checksum (original value "${o}" may not be a valid Principal ID).`);return i}static fromUint8Array(t){return new this(t)}static isPrincipal(t){return t instanceof e||typeof t=="object"&&t!==null&&"_isPrincipal"in t&&t._isPrincipal===!0&&"_arr"in t&&t._arr instanceof Uint8Array}constructor(t){this._arr=t,this._isPrincipal=!0}isAnonymous(){return this._arr.byteLength===1&&this._arr[0]===wt}toUint8Array(){return this._arr}toHex(){return yt(this._arr).toUpperCase()}toText(){let t=new ArrayBuffer(4);new DataView(t).setUint32(0,bt(this._arr));let n=new Uint8Array(t),r=new Uint8Array([...n,...this._arr]),c=dt(r).match(/.{1,5}/g);if(!c)throw new Error;return c.join("-")}toString(){return this.toText()}toJSON(){return{[K]:this.toText()}}compareTo(t){for(let o=0;o<Math.min(this._arr.length,t._arr.length);o++){if(this._arr[o]<t._arr[o])return"lt";if(this._arr[o]>t._arr[o])return"gt"}return this._arr.length<t._arr.length?"lt":this._arr.length>t._arr.length?"gt":"eq"}ltEq(t){let o=this.compareTo(t);return o=="lt"||o=="eq"}gtEq(t){let o=this.compareTo(t);return o=="gt"||o=="eq"}};import{PrincipalTextSchema as oe}from"@dfinity/zod-schemas";import*as U from"zod";var F=U.string().refine(e=>oe.safeParse(e).success,{message:"Invalid textual representation of a Principal."}),q=U.unknown().transform((e,t)=>M.isPrincipal(e)?M.from(e):(t.issues.push({code:"custom",message:"Invalid Principal",input:e}),U.NEVER));var It=Ot.unknown().refine(e=>e!=null&&typeof e=="object"&&"transformRequest"in e&&typeof e.transformRequest=="function"&&"getPrincipal"in e&&typeof e.getPrincipal=="function"&&q.safeParse(e.getPrincipal()).success,{message:"Invalid Identity"});var nt=b.strictObject({satelliteId:q,identity:It,container:b.string().optional()}),ne=b.function({input:b.tuple([nt]),output:b.promise(b.void()).or(b.void())}),rt=b.strictObject({run:D(ne)});var re=v.function({input:v.tuple([nt]),output:rt}),so=v.union([rt,D(re)]);function fo(e){return e}import*as Rt from"zod";import*as I from"zod";var R=I.union([I.literal("production"),I.string()]),_t=I.object({mode:R});var uo=_t.extend({profile:Rt.string().optional()});function mo(e){return e}import{PrincipalTextSchema as se}from"@dfinity/zod-schemas";import*as g from"zod";import*as f from"zod";import*as k from"zod";var $=k.object({heap:k.bigint().optional(),stable:k.bigint().optional()}).strict();var it=f.string(),ie=f.object({source:it,headers:f.array(f.tuple([f.string(),f.string()]))}).strict(),ce=f.object({source:it,destination:f.string()}).strict(),ae=f.object({source:it,location:f.string(),code:f.union([f.literal(301),f.literal(302)])}).strict(),Q=f.object({headers:f.array(ie).optional(),rewrites:f.array(ce).optional(),redirects:f.array(ae).optional(),iframe:f.enum(["deny","same-origin","allow-any"]).optional(),rawAccess:f.boolean().optional(),maxMemorySize:$.optional(),version:f.bigint().optional()});import*as p from"zod";import*as Tt from"zod";var jt=Tt.enum(["identity","gzip","compress","deflate","br"]);var Pt=p.strictObject({pattern:p.string().optional(),mode:p.enum(["both","replace"]).optional(),algorithm:p.enum(["gzip","brotli"]).optional()}),Ut=p.strictObject({source:p.string().optional(),ignore:p.array(p.string()).optional(),precompress:p.union([Pt,p.array(Pt),p.literal(!1)]).optional(),encoding:p.array(p.tuple([p.string(),jt])).optional(),predeploy:p.array(p.string()).optional(),postdeploy:p.array(p.string()).optional()});var fe=g.object({id:se}),xe=g.object({ids:g.record(R,F)}),Ft=g.object({...Ut.shape,storage:Q.optional()}),Ro=g.union([g.object({...fe.shape,...Ft.shape}).strict(),g.object({...xe.shape,...Ft.shape}).strict()]);import*as A from"zod";var pe=A.record(A.string(),A.string()),jo=A.object({name:A.string(),version:A.string(),dependencies:pe.optional()});var Uo="@junobuild/satellite",Fo="@junobuild/sputnik",vo="@junobuild/mission-control",Ho="@junobuild/orbiter";function Lo(e){return e}import*as _ from"zod";var vt=_.strictObject({heapMemory:_.union([_.bigint(),_.boolean()]).optional()});import{PrincipalTextSchema as le}from"@dfinity/zod-schemas";import*as u from"zod";var de=u.strictObject({derivationOrigin:u.url().optional(),externalAlternativeOrigins:u.array(u.url()).optional()}),ue=u.strictObject({clientId:u.string().trim().regex(/^[0-9]+-[a-z0-9]+\.apps\.googleusercontent\.com$/,"Invalid Google client ID format").max(128,"Google clientId too long")}),be=u.strictObject({allowedCallers:u.array(le)}),Ht=u.strictObject({internetIdentity:de.optional(),google:ue.optional(),rules:be.optional(),version:u.bigint().optional()});import*as B from"zod";import*as d from"zod";var Jt=d.enum(["public","private","managed","controllers"]),me=d.enum(["heap","stable"]),No=d.enum(["db","storage"]),ct=d.strictObject({collection:d.string(),read:Jt,write:Jt,memory:me,createdAt:d.bigint().optional(),updatedAt:d.bigint().optional(),version:d.bigint().optional(),maxSize:d.bigint().optional(),maxChangesPerUser:d.number().optional(),maxCapacity:d.number().optional(),mutablePermissions:d.boolean().optional().default(!0),maxTokens:d.bigint().optional()});var he=ct.omit({createdAt:!0,updatedAt:!0,maxSize:!0}),ge=ct.omit({createdAt:!0,updatedAt:!0,maxCapacity:!0}),Lt=B.strictObject({datastore:B.array(he).optional(),storage:B.array(ge).optional()});import*as X from"zod";var Mt=X.strictObject({maxMemorySize:$.optional(),version:X.bigint().optional()});import*as a from"zod";var at={registry:!1,cmc:!0,icp:!0,cycles:!1,nns:!0,sns:!1,internet_identity:!0,nns_dapp:!1},kt={...at,cmc:!1,nns:!1};var ye=["icp"],Se=["icp","nns"],Ce=["cmc","icp","nns","sns","internet_identity"],ze=(e,t)=>{let n={..."satellite"in e?kt:at,...e.network?.services??{}},r=({requiredServices:i,key:c})=>{i.find(l=>n[l]===!1)!==void 0&&t.addIssue({code:"custom",path:["network","services",c],message:`${c} requires: ${i.join(", ")}`})};n.nns_dapp&&r({requiredServices:Ce,key:"nns_dapp"}),n.cmc&&r({requiredServices:Se,key:"cmc"}),n.nns&&r({requiredServices:ye,key:"nns"})},Bt=(e,t)=>{e.network!==void 0&&e.network.services!==void 0&&ze(e,t)};var xt=a.strictObject({server:a.number().optional(),admin:a.number().optional(),timeoutInSeconds:a.number().int().positive().optional()}),Ee=a.strictObject({console:a.number().optional()}),Ae=a.strictObject({ports:xt.extend(Ee.shape).optional()}),we=a.strictObject({ports:xt.optional()}),Oe=a.strictObject({ports:xt.optional()}),st=a.strictObject({type:a.enum(["docker","podman"]),image:a.string().optional(),name:a.string().optional(),volume:a.string().optional(),target:a.string().optional(),platform:a.enum(["linux/amd64","linux/arm64"]).optional()}),Ie=a.strictObject({registry:a.boolean().optional(),cmc:a.boolean().optional(),icp:a.boolean().optional(),cycles:a.boolean().optional(),nns:a.boolean().optional(),sns:a.boolean().optional(),internet_identity:a.boolean().optional(),nns_dapp:a.boolean().optional()}),ft=a.strictObject({services:Ie}),Dt=a.union([a.strictObject({runner:st.optional(),network:ft.optional(),skylab:Ae}),a.strictObject({runner:st.optional(),network:ft.optional(),console:we}),a.strictObject({runner:st.optional(),network:ft.optional(),satellite:Oe})]).superRefine(Bt);import*as y from"zod";var _e=y.enum(["controllers","public"]),Nt=y.strictObject({freezingThreshold:y.bigint().optional(),reservedCyclesLimit:y.bigint().optional(),logVisibility:_e.optional(),heapMemoryLimit:y.bigint().optional(),memoryAllocation:y.bigint().optional(),computeAllocation:y.bigint().optional()});import{PrincipalTextSchema as Re}from"@dfinity/zod-schemas";import*as T from"zod";var Te=T.object({id:Re}),je=T.object({ids:T.record(R,F)}),Gt=T.union([Te.strict(),je.strict()]);import{PrincipalTextSchema as Pe}from"@dfinity/zod-schemas";import*as S from"zod";var Ue=S.object({id:Pe}),Fe=S.object({ids:S.record(R,F)}),Vt=S.object({storage:Q.optional(),datastore:Mt.optional(),authentication:Ht.optional(),assertions:vt.optional(),settings:Nt.optional(),collections:Lt.optional()}),Wt=S.union([S.object({...Ue.shape,...Vt.shape}).strict(),S.object({...Fe.shape,...Vt.shape}).strict()]);import*as Kt from"zod";var yn=Kt.strictObject({satellite:Wt,orbiter:Gt.optional(),emulator:Dt.optional()});export{ue as AuthenticationConfigGoogleSchema,de as AuthenticationConfigInternetIdentitySchema,be as AuthenticationConfigRulesSchema,Ht as AuthenticationConfigSchema,Ut as CliConfigSchema,Lt as CollectionsSchema,fe as ConsoleIdSchema,xe as ConsoleIdsSchema,at as DEFAULT_NETWORK_SERVICES,kt as DEFAULT_SATELLITE_NETWORK_SERVICES,he as DatastoreCollectionSchema,Mt as DatastoreConfigSchema,Dt as EmulatorConfigSchema,jt as EncodingTypeSchema,vo as JUNO_PACKAGE_MISSION_CONTROL_ID,Ho as JUNO_PACKAGE_ORBITER_ID,Uo as JUNO_PACKAGE_SATELLITE_ID,Fo as JUNO_PACKAGE_SPUTNIK_ID,_t as JunoConfigEnvSchema,R as JunoConfigModeSchema,yn as JunoConfigSchema,Ro as JunoConsoleConfigSchema,pe as JunoPackageDependenciesSchema,jo as JunoPackageSchema,$ as MaxMemorySizeConfigSchema,me as MemoryTextSchema,_e as ModuleLogVisibilitySchema,Nt as ModuleSettingsSchema,nt as OnRunContextSchema,uo as OnRunEnvSchema,rt as OnRunSchema,Gt as OrbiterConfigSchema,Te as OrbiterIdSchema,je as OrbiterIdsSchema,Jt as PermissionTextSchema,Pt as PrecompressSchema,ct as RuleSchema,No as RulesTypeSchema,so as RunFnOrObjectSchema,re as RunFnSchema,vt as SatelliteAssertionsSchema,Wt as SatelliteConfigOptionsSchema,Ue as SatelliteIdSchema,Fe as SatelliteIdsSchema,ge as StorageCollectionSchema,ie as StorageConfigHeaderSchema,ae as StorageConfigRedirectSchema,ce as StorageConfigRewriteSchema,Q as StorageConfigSchema,it as StorageConfigSourceGlobSchema,Lo as defineConfig,mo as defineConsoleConfig,fo as defineRun};
|
|
2
2
|
/*! Bundled license information:
|
|
3
3
|
|
|
4
4
|
@noble/hashes/esm/utils.js:
|