everything-dev 1.8.5 → 1.8.6

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.
@@ -26,8 +26,8 @@ declare const DevOptionsSchema: z.ZodObject<{
26
26
  }, z.core.$strip>;
27
27
  declare const DevResultSchema: z.ZodObject<{
28
28
  status: z.ZodEnum<{
29
- started: "started";
30
29
  error: "error";
30
+ started: "started";
31
31
  }>;
32
32
  description: z.ZodString;
33
33
  processes: z.ZodArray<z.ZodString>;
@@ -200,8 +200,8 @@ declare const PublishOptionsSchema: z.ZodObject<{
200
200
  dryRun: z.ZodDefault<z.ZodBoolean>;
201
201
  packages: z.ZodDefault<z.ZodString>;
202
202
  network: z.ZodOptional<z.ZodEnum<{
203
- testnet: "testnet";
204
203
  mainnet: "mainnet";
204
+ testnet: "testnet";
205
205
  }>>;
206
206
  privateKey: z.ZodOptional<z.ZodString>;
207
207
  }, z.core.$strip>;
@@ -227,8 +227,8 @@ declare const KeyPublishResultSchema: z.ZodObject<{
227
227
  }>;
228
228
  account: z.ZodString;
229
229
  network: z.ZodEnum<{
230
- testnet: "testnet";
231
230
  mainnet: "mainnet";
231
+ testnet: "testnet";
232
232
  }>;
233
233
  contract: z.ZodString;
234
234
  allowance: z.ZodString;
@@ -358,8 +358,8 @@ declare const bosContract: {
358
358
  interactive: z.ZodOptional<z.ZodBoolean>;
359
359
  }, z.core.$strip>, z.ZodObject<{
360
360
  status: z.ZodEnum<{
361
- started: "started";
362
361
  error: "error";
362
+ started: "started";
363
363
  }>;
364
364
  description: z.ZodString;
365
365
  processes: z.ZodArray<z.ZodString>;
@@ -527,8 +527,8 @@ declare const bosContract: {
527
527
  dryRun: z.ZodDefault<z.ZodBoolean>;
528
528
  packages: z.ZodDefault<z.ZodString>;
529
529
  network: z.ZodOptional<z.ZodEnum<{
530
- testnet: "testnet";
531
530
  mainnet: "mainnet";
531
+ testnet: "testnet";
532
532
  }>>;
533
533
  privateKey: z.ZodOptional<z.ZodString>;
534
534
  }, z.core.$strip>, z.ZodObject<{
@@ -552,8 +552,8 @@ declare const bosContract: {
552
552
  }>;
553
553
  account: z.ZodString;
554
554
  network: z.ZodEnum<{
555
- testnet: "testnet";
556
555
  mainnet: "mainnet";
556
+ testnet: "testnet";
557
557
  }>;
558
558
  contract: z.ZodString;
559
559
  allowance: z.ZodString;
@@ -26,8 +26,8 @@ declare const DevOptionsSchema: z.ZodObject<{
26
26
  }, z.core.$strip>;
27
27
  declare const DevResultSchema: z.ZodObject<{
28
28
  status: z.ZodEnum<{
29
- started: "started";
30
29
  error: "error";
30
+ started: "started";
31
31
  }>;
32
32
  description: z.ZodString;
33
33
  processes: z.ZodArray<z.ZodString>;
@@ -200,8 +200,8 @@ declare const PublishOptionsSchema: z.ZodObject<{
200
200
  dryRun: z.ZodDefault<z.ZodBoolean>;
201
201
  packages: z.ZodDefault<z.ZodString>;
202
202
  network: z.ZodOptional<z.ZodEnum<{
203
- testnet: "testnet";
204
203
  mainnet: "mainnet";
204
+ testnet: "testnet";
205
205
  }>>;
206
206
  privateKey: z.ZodOptional<z.ZodString>;
207
207
  }, z.core.$strip>;
@@ -227,8 +227,8 @@ declare const KeyPublishResultSchema: z.ZodObject<{
227
227
  }>;
228
228
  account: z.ZodString;
229
229
  network: z.ZodEnum<{
230
- testnet: "testnet";
231
230
  mainnet: "mainnet";
231
+ testnet: "testnet";
232
232
  }>;
233
233
  contract: z.ZodString;
234
234
  allowance: z.ZodString;
@@ -358,8 +358,8 @@ declare const bosContract: {
358
358
  interactive: z.ZodOptional<z.ZodBoolean>;
359
359
  }, z.core.$strip>, z.ZodObject<{
360
360
  status: z.ZodEnum<{
361
- started: "started";
362
361
  error: "error";
362
+ started: "started";
363
363
  }>;
364
364
  description: z.ZodString;
365
365
  processes: z.ZodArray<z.ZodString>;
@@ -527,8 +527,8 @@ declare const bosContract: {
527
527
  dryRun: z.ZodDefault<z.ZodBoolean>;
528
528
  packages: z.ZodDefault<z.ZodString>;
529
529
  network: z.ZodOptional<z.ZodEnum<{
530
- testnet: "testnet";
531
530
  mainnet: "mainnet";
531
+ testnet: "testnet";
532
532
  }>>;
533
533
  privateKey: z.ZodOptional<z.ZodString>;
534
534
  }, z.core.$strip>, z.ZodObject<{
@@ -552,8 +552,8 @@ declare const bosContract: {
552
552
  }>;
553
553
  account: z.ZodString;
554
554
  network: z.ZodEnum<{
555
- testnet: "testnet";
556
555
  mainnet: "mainnet";
556
+ testnet: "testnet";
557
557
  }>;
558
558
  contract: z.ZodString;
559
559
  allowance: z.ZodString;
@@ -37,7 +37,7 @@ declare const makeDevProcess: (pkg: string, callbacks: ProcessCallbacks, portOve
37
37
  kill: Effect.Effect<void, never, never>;
38
38
  waitForReady: Effect.Effect<void, Error, never>;
39
39
  waitForExit: Effect.Effect<ExitCode, _$_effect_platform_Error0.PlatformError, never>;
40
- }, string | Error | _$_effect_platform_Error0.PlatformError, _$effect_Scope0.Scope | ServiceDescriptorMap | DevRuntimeConfig | _$_effect_platform_CommandExecutor0.CommandExecutor>;
40
+ }, string | Error | _$_effect_platform_Error0.PlatformError, ServiceDescriptorMap | DevRuntimeConfig | _$effect_Scope0.Scope | _$_effect_platform_CommandExecutor0.CommandExecutor>;
41
41
  declare function getProcessStates(packages: string[], services: Map<string, ServiceDescriptor>, portOverride?: number): ProcessState[];
42
42
  //#endregion
43
43
  export { ProcessCallbacks, ProcessHandle, ProcessState, ProcessStatus, getProcessStates, makeDevProcess };
@@ -37,7 +37,7 @@ declare const makeDevProcess: (pkg: string, callbacks: ProcessCallbacks, portOve
37
37
  kill: Effect.Effect<void, never, never>;
38
38
  waitForReady: Effect.Effect<void, Error, never>;
39
39
  waitForExit: Effect.Effect<ExitCode, _$_effect_platform_Error0.PlatformError, never>;
40
- }, string | Error | _$_effect_platform_Error0.PlatformError, _$effect_Scope0.Scope | ServiceDescriptorMap | DevRuntimeConfig | _$_effect_platform_CommandExecutor0.CommandExecutor>;
40
+ }, string | Error | _$_effect_platform_Error0.PlatformError, ServiceDescriptorMap | DevRuntimeConfig | _$effect_Scope0.Scope | _$_effect_platform_CommandExecutor0.CommandExecutor>;
41
41
  declare function getProcessStates(packages: string[], services: Map<string, ServiceDescriptor>, portOverride?: number): ProcessState[];
42
42
  //#endregion
43
43
  export { ProcessCallbacks, ProcessHandle, ProcessState, ProcessStatus, getProcessStates, makeDevProcess };
package/dist/plugin.d.cts CHANGED
@@ -27,8 +27,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
27
27
  interactive: z.ZodOptional<z.ZodBoolean>;
28
28
  }, z.core.$strip>, z.ZodObject<{
29
29
  status: z.ZodEnum<{
30
- started: "started";
31
30
  error: "error";
31
+ started: "started";
32
32
  }>;
33
33
  description: z.ZodString;
34
34
  processes: z.ZodArray<z.ZodString>;
@@ -196,8 +196,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
196
196
  dryRun: z.ZodDefault<z.ZodBoolean>;
197
197
  packages: z.ZodDefault<z.ZodString>;
198
198
  network: z.ZodOptional<z.ZodEnum<{
199
- testnet: "testnet";
200
199
  mainnet: "mainnet";
200
+ testnet: "testnet";
201
201
  }>>;
202
202
  privateKey: z.ZodOptional<z.ZodString>;
203
203
  }, z.core.$strip>, z.ZodObject<{
@@ -221,8 +221,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
221
221
  }>;
222
222
  account: z.ZodString;
223
223
  network: z.ZodEnum<{
224
- testnet: "testnet";
225
224
  mainnet: "mainnet";
225
+ testnet: "testnet";
226
226
  }>;
227
227
  contract: z.ZodString;
228
228
  allowance: z.ZodString;
@@ -393,9 +393,9 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
393
393
  }> | undefined;
394
394
  } | null;
395
395
  runtimeConfig: {
396
- env: "production" | "development";
396
+ env: "development" | "production";
397
397
  account: string;
398
- networkId: "testnet" | "mainnet";
398
+ networkId: "mainnet" | "testnet";
399
399
  host: {
400
400
  name: string;
401
401
  url: string;
package/dist/plugin.d.mts CHANGED
@@ -27,8 +27,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
27
27
  interactive: z.ZodOptional<z.ZodBoolean>;
28
28
  }, z.core.$strip>, z.ZodObject<{
29
29
  status: z.ZodEnum<{
30
- started: "started";
31
30
  error: "error";
31
+ started: "started";
32
32
  }>;
33
33
  description: z.ZodString;
34
34
  processes: z.ZodArray<z.ZodString>;
@@ -196,8 +196,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
196
196
  dryRun: z.ZodDefault<z.ZodBoolean>;
197
197
  packages: z.ZodDefault<z.ZodString>;
198
198
  network: z.ZodOptional<z.ZodEnum<{
199
- testnet: "testnet";
200
199
  mainnet: "mainnet";
200
+ testnet: "testnet";
201
201
  }>>;
202
202
  privateKey: z.ZodOptional<z.ZodString>;
203
203
  }, z.core.$strip>, z.ZodObject<{
@@ -221,8 +221,8 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
221
221
  }>;
222
222
  account: z.ZodString;
223
223
  network: z.ZodEnum<{
224
- testnet: "testnet";
225
224
  mainnet: "mainnet";
225
+ testnet: "testnet";
226
226
  }>;
227
227
  contract: z.ZodString;
228
228
  allowance: z.ZodString;
@@ -393,9 +393,9 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
393
393
  }> | undefined;
394
394
  } | null;
395
395
  runtimeConfig: {
396
- env: "production" | "development";
396
+ env: "development" | "production";
397
397
  account: string;
398
- networkId: "testnet" | "mainnet";
398
+ networkId: "mainnet" | "testnet";
399
399
  host: {
400
400
  name: string;
401
401
  url: string;
@@ -26,9 +26,9 @@ interface ServiceDescriptor {
26
26
  declare const ServiceDescriptorMap_base: Context.TagClass<ServiceDescriptorMap, "ServiceDescriptorMap", Map<string, ServiceDescriptor>>;
27
27
  declare class ServiceDescriptorMap extends ServiceDescriptorMap_base {}
28
28
  declare const DevRuntimeConfig_base: Context.TagClass<DevRuntimeConfig, "DevRuntimeConfig", {
29
- env: "production" | "development";
29
+ env: "development" | "production";
30
30
  account: string;
31
- networkId: "testnet" | "mainnet";
31
+ networkId: "mainnet" | "testnet";
32
32
  host: {
33
33
  name: string;
34
34
  url: string;
@@ -26,9 +26,9 @@ interface ServiceDescriptor {
26
26
  declare const ServiceDescriptorMap_base: Context.TagClass<ServiceDescriptorMap, "ServiceDescriptorMap", Map<string, ServiceDescriptor>>;
27
27
  declare class ServiceDescriptorMap extends ServiceDescriptorMap_base {}
28
28
  declare const DevRuntimeConfig_base: Context.TagClass<DevRuntimeConfig, "DevRuntimeConfig", {
29
- env: "production" | "development";
29
+ env: "development" | "production";
30
30
  account: string;
31
- networkId: "testnet" | "mainnet";
31
+ networkId: "mainnet" | "testnet";
32
32
  host: {
33
33
  name: string;
34
34
  url: string;
package/dist/types.d.cts CHANGED
@@ -192,14 +192,14 @@ declare const BosConfigSchema: z.ZodObject<{
192
192
  type BosConfig = z.infer<typeof BosConfigSchema>;
193
193
  declare const RuntimeConfigSchema: z.ZodObject<{
194
194
  env: z.ZodEnum<{
195
- production: "production";
196
195
  development: "development";
196
+ production: "production";
197
197
  }>;
198
198
  account: z.ZodString;
199
199
  domain: z.ZodOptional<z.ZodString>;
200
200
  networkId: z.ZodEnum<{
201
- testnet: "testnet";
202
201
  mainnet: "mainnet";
202
+ testnet: "testnet";
203
203
  }>;
204
204
  title: z.ZodOptional<z.ZodString>;
205
205
  repository: z.ZodOptional<z.ZodString>;
@@ -299,13 +299,13 @@ type RuntimeConfig = z.infer<typeof RuntimeConfigSchema>;
299
299
  declare const ClientRuntimeConfigSchema: z.ZodObject<{
300
300
  cspNonce: z.ZodOptional<z.ZodString>;
301
301
  env: z.ZodEnum<{
302
- production: "production";
303
302
  development: "development";
303
+ production: "production";
304
304
  }>;
305
305
  account: z.ZodString;
306
306
  networkId: z.ZodEnum<{
307
- testnet: "testnet";
308
307
  mainnet: "mainnet";
308
+ testnet: "testnet";
309
309
  }>;
310
310
  hostUrl: z.ZodOptional<z.ZodString>;
311
311
  assetsUrl: z.ZodString;
package/dist/types.d.mts CHANGED
@@ -192,14 +192,14 @@ declare const BosConfigSchema: z.ZodObject<{
192
192
  type BosConfig = z.infer<typeof BosConfigSchema>;
193
193
  declare const RuntimeConfigSchema: z.ZodObject<{
194
194
  env: z.ZodEnum<{
195
- production: "production";
196
195
  development: "development";
196
+ production: "production";
197
197
  }>;
198
198
  account: z.ZodString;
199
199
  domain: z.ZodOptional<z.ZodString>;
200
200
  networkId: z.ZodEnum<{
201
- testnet: "testnet";
202
201
  mainnet: "mainnet";
202
+ testnet: "testnet";
203
203
  }>;
204
204
  title: z.ZodOptional<z.ZodString>;
205
205
  repository: z.ZodOptional<z.ZodString>;
@@ -299,13 +299,13 @@ type RuntimeConfig = z.infer<typeof RuntimeConfigSchema>;
299
299
  declare const ClientRuntimeConfigSchema: z.ZodObject<{
300
300
  cspNonce: z.ZodOptional<z.ZodString>;
301
301
  env: z.ZodEnum<{
302
- production: "production";
303
302
  development: "development";
303
+ production: "production";
304
304
  }>;
305
305
  account: z.ZodString;
306
306
  networkId: z.ZodEnum<{
307
- testnet: "testnet";
308
307
  mainnet: "mainnet";
308
+ testnet: "testnet";
309
309
  }>;
310
310
  hostUrl: z.ZodOptional<z.ZodString>;
311
311
  assetsUrl: z.ZodString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "everything-dev",
3
- "version": "1.8.5",
3
+ "version": "1.8.6",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -145,7 +145,7 @@
145
145
  "@clack/prompts": "^0.10.1",
146
146
  "@effect/platform": "^0.96.1",
147
147
  "@effect/platform-node": "^0.106.0",
148
- "@hono/node-server": "^1.14.4",
148
+ "@hono/node-server": "^2.0.1",
149
149
  "@module-federation/enhanced": "^2.3.2",
150
150
  "@module-federation/node": "^2.7.40",
151
151
  "@module-federation/runtime-core": "^2.3.2",
@@ -155,7 +155,7 @@
155
155
  "@orpc/zod": "^1.13.4",
156
156
  "chalk": "^5.6.2",
157
157
  "effect": "^3.21.0",
158
- "every-plugin": "^2.5.2",
158
+ "every-plugin": "^2.5.3",
159
159
  "glob": "^11.0.0",
160
160
  "gradient-string": "^3.0.0",
161
161
  "hono": "^4.7.11",