everything-dev 1.8.0 → 1.8.2

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
- error: "error";
30
29
  started: "started";
30
+ error: "error";
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
- mainnet: "mainnet";
204
203
  testnet: "testnet";
204
+ mainnet: "mainnet";
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
- mainnet: "mainnet";
231
230
  testnet: "testnet";
231
+ mainnet: "mainnet";
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
- error: "error";
362
361
  started: "started";
362
+ error: "error";
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
- mainnet: "mainnet";
531
530
  testnet: "testnet";
531
+ mainnet: "mainnet";
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
- mainnet: "mainnet";
556
555
  testnet: "testnet";
556
+ mainnet: "mainnet";
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
- error: "error";
30
29
  started: "started";
30
+ error: "error";
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
- mainnet: "mainnet";
204
203
  testnet: "testnet";
204
+ mainnet: "mainnet";
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
- mainnet: "mainnet";
231
230
  testnet: "testnet";
231
+ mainnet: "mainnet";
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
- error: "error";
362
361
  started: "started";
362
+ error: "error";
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
- mainnet: "mainnet";
531
530
  testnet: "testnet";
531
+ mainnet: "mainnet";
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
- mainnet: "mainnet";
556
555
  testnet: "testnet";
556
+ mainnet: "mainnet";
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, ServiceDescriptorMap | DevRuntimeConfig | _$effect_Scope0.Scope | _$_effect_platform_CommandExecutor0.CommandExecutor>;
40
+ }, string | Error | _$_effect_platform_Error0.PlatformError, _$effect_Scope0.Scope | ServiceDescriptorMap | DevRuntimeConfig | _$_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, ServiceDescriptorMap | DevRuntimeConfig | _$effect_Scope0.Scope | _$_effect_platform_CommandExecutor0.CommandExecutor>;
40
+ }, string | Error | _$_effect_platform_Error0.PlatformError, _$effect_Scope0.Scope | ServiceDescriptorMap | DevRuntimeConfig | _$_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
- error: "error";
31
30
  started: "started";
31
+ error: "error";
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
- mainnet: "mainnet";
200
199
  testnet: "testnet";
200
+ mainnet: "mainnet";
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
- mainnet: "mainnet";
225
224
  testnet: "testnet";
225
+ mainnet: "mainnet";
226
226
  }>;
227
227
  contract: z.ZodString;
228
228
  allowance: z.ZodString;
@@ -395,7 +395,7 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
395
395
  runtimeConfig: {
396
396
  env: "development" | "production";
397
397
  account: string;
398
- networkId: "mainnet" | "testnet";
398
+ networkId: "testnet" | "mainnet";
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
- error: "error";
31
30
  started: "started";
31
+ error: "error";
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
- mainnet: "mainnet";
200
199
  testnet: "testnet";
200
+ mainnet: "mainnet";
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
- mainnet: "mainnet";
225
224
  testnet: "testnet";
225
+ mainnet: "mainnet";
226
226
  }>;
227
227
  contract: z.ZodString;
228
228
  allowance: z.ZodString;
@@ -395,7 +395,7 @@ declare const _default: _$every_plugin0.LoadedPluginWithBinding<{
395
395
  runtimeConfig: {
396
396
  env: "development" | "production";
397
397
  account: string;
398
- networkId: "mainnet" | "testnet";
398
+ networkId: "testnet" | "mainnet";
399
399
  host: {
400
400
  name: string;
401
401
  url: string;
@@ -28,7 +28,7 @@ declare class ServiceDescriptorMap extends ServiceDescriptorMap_base {}
28
28
  declare const DevRuntimeConfig_base: Context.TagClass<DevRuntimeConfig, "DevRuntimeConfig", {
29
29
  env: "development" | "production";
30
30
  account: string;
31
- networkId: "mainnet" | "testnet";
31
+ networkId: "testnet" | "mainnet";
32
32
  host: {
33
33
  name: string;
34
34
  url: string;
@@ -28,7 +28,7 @@ declare class ServiceDescriptorMap extends ServiceDescriptorMap_base {}
28
28
  declare const DevRuntimeConfig_base: Context.TagClass<DevRuntimeConfig, "DevRuntimeConfig", {
29
29
  env: "development" | "production";
30
30
  account: string;
31
- networkId: "mainnet" | "testnet";
31
+ networkId: "testnet" | "mainnet";
32
32
  host: {
33
33
  name: string;
34
34
  url: string;
package/dist/types.d.cts CHANGED
@@ -198,8 +198,8 @@ declare const RuntimeConfigSchema: z.ZodObject<{
198
198
  account: z.ZodString;
199
199
  domain: z.ZodOptional<z.ZodString>;
200
200
  networkId: z.ZodEnum<{
201
- mainnet: "mainnet";
202
201
  testnet: "testnet";
202
+ mainnet: "mainnet";
203
203
  }>;
204
204
  title: z.ZodOptional<z.ZodString>;
205
205
  repository: z.ZodOptional<z.ZodString>;
@@ -296,8 +296,8 @@ declare const ClientRuntimeConfigSchema: z.ZodObject<{
296
296
  }>;
297
297
  account: z.ZodString;
298
298
  networkId: z.ZodEnum<{
299
- mainnet: "mainnet";
300
299
  testnet: "testnet";
300
+ mainnet: "mainnet";
301
301
  }>;
302
302
  hostUrl: z.ZodOptional<z.ZodString>;
303
303
  assetsUrl: z.ZodString;
package/dist/types.d.mts CHANGED
@@ -198,8 +198,8 @@ declare const RuntimeConfigSchema: z.ZodObject<{
198
198
  account: z.ZodString;
199
199
  domain: z.ZodOptional<z.ZodString>;
200
200
  networkId: z.ZodEnum<{
201
- mainnet: "mainnet";
202
201
  testnet: "testnet";
202
+ mainnet: "mainnet";
203
203
  }>;
204
204
  title: z.ZodOptional<z.ZodString>;
205
205
  repository: z.ZodOptional<z.ZodString>;
@@ -296,8 +296,8 @@ declare const ClientRuntimeConfigSchema: z.ZodObject<{
296
296
  }>;
297
297
  account: z.ZodString;
298
298
  networkId: z.ZodEnum<{
299
- mainnet: "mainnet";
300
299
  testnet: "testnet";
300
+ mainnet: "mainnet";
301
301
  }>;
302
302
  hostUrl: z.ZodOptional<z.ZodString>;
303
303
  assetsUrl: z.ZodString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "everything-dev",
3
- "version": "1.8.0",
3
+ "version": "1.8.2",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -154,7 +154,7 @@
154
154
  "@orpc/zod": "^1.13.4",
155
155
  "chalk": "^5.6.2",
156
156
  "effect": "^3.21.0",
157
- "every-plugin": "^2.4.1",
157
+ "every-plugin": "^2.4.3",
158
158
  "glob": "^11.0.0",
159
159
  "gradient-string": "^3.0.0",
160
160
  "hono": "^4.7.11",