@acala-network/chopsticks 0.9.4-5 → 0.9.4-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.
@@ -8,6 +8,7 @@ export declare const configSchema: z.ZodObject<{
8
8
  block: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull]>>;
9
9
  'build-block-mode': z.ZodOptional<z.ZodNativeEnum<typeof BuildBlockMode>>;
10
10
  'import-storage': z.ZodOptional<z.ZodAny>;
11
+ 'allow-unresolved-imports': z.ZodOptional<z.ZodBoolean>;
11
12
  'mock-signature-host': z.ZodOptional<z.ZodBoolean>;
12
13
  'max-memory-block-count': z.ZodOptional<z.ZodNumber>;
13
14
  db: z.ZodOptional<z.ZodString>;
@@ -83,6 +84,7 @@ export declare const configSchema: z.ZodObject<{
83
84
  block?: string | number | null | undefined;
84
85
  'build-block-mode'?: BuildBlockMode | undefined;
85
86
  'import-storage'?: any;
87
+ 'allow-unresolved-imports'?: boolean | undefined;
86
88
  'mock-signature-host'?: boolean | undefined;
87
89
  'max-memory-block-count'?: number | undefined;
88
90
  db?: string | undefined;
@@ -112,6 +114,7 @@ export declare const configSchema: z.ZodObject<{
112
114
  block?: string | number | null | undefined;
113
115
  'build-block-mode'?: BuildBlockMode | undefined;
114
116
  'import-storage'?: any;
117
+ 'allow-unresolved-imports'?: boolean | undefined;
115
118
  'mock-signature-host'?: boolean | undefined;
116
119
  'max-memory-block-count'?: number | undefined;
117
120
  db?: string | undefined;
@@ -49,6 +49,7 @@ const configSchema = _zod.z.object({
49
49
  ]).optional(),
50
50
  'build-block-mode': _zod.z.nativeEnum(_chopstickscore.BuildBlockMode).optional(),
51
51
  'import-storage': _zod.z.any().optional(),
52
+ 'allow-unresolved-imports': _zod.z.boolean().optional(),
52
53
  'mock-signature-host': _zod.z.boolean().optional(),
53
54
  'max-memory-block-count': _zod.z.number().optional(),
54
55
  db: _zod.z.string().optional(),
@@ -8,6 +8,7 @@ export declare const configSchema: z.ZodObject<{
8
8
  block: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull]>>;
9
9
  'build-block-mode': z.ZodOptional<z.ZodNativeEnum<typeof BuildBlockMode>>;
10
10
  'import-storage': z.ZodOptional<z.ZodAny>;
11
+ 'allow-unresolved-imports': z.ZodOptional<z.ZodBoolean>;
11
12
  'mock-signature-host': z.ZodOptional<z.ZodBoolean>;
12
13
  'max-memory-block-count': z.ZodOptional<z.ZodNumber>;
13
14
  db: z.ZodOptional<z.ZodString>;
@@ -83,6 +84,7 @@ export declare const configSchema: z.ZodObject<{
83
84
  block?: string | number | null | undefined;
84
85
  'build-block-mode'?: BuildBlockMode | undefined;
85
86
  'import-storage'?: any;
87
+ 'allow-unresolved-imports'?: boolean | undefined;
86
88
  'mock-signature-host'?: boolean | undefined;
87
89
  'max-memory-block-count'?: number | undefined;
88
90
  db?: string | undefined;
@@ -112,6 +114,7 @@ export declare const configSchema: z.ZodObject<{
112
114
  block?: string | number | null | undefined;
113
115
  'build-block-mode'?: BuildBlockMode | undefined;
114
116
  'import-storage'?: any;
117
+ 'allow-unresolved-imports'?: boolean | undefined;
115
118
  'mock-signature-host'?: boolean | undefined;
116
119
  'max-memory-block-count'?: number | undefined;
117
120
  db?: string | undefined;
@@ -20,6 +20,7 @@ export const configSchema = z.object({
20
20
  ]).optional(),
21
21
  'build-block-mode': z.nativeEnum(BuildBlockMode).optional(),
22
22
  'import-storage': z.any().optional(),
23
+ 'allow-unresolved-imports': z.boolean().optional(),
23
24
  'mock-signature-host': z.boolean().optional(),
24
25
  'max-memory-block-count': z.number().optional(),
25
26
  db: z.string().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acala-network/chopsticks",
3
- "version": "0.9.4-5",
3
+ "version": "0.9.4-6",
4
4
  "author": "Acala Developers <hello@acala.network>",
5
5
  "license": "Apache-2.0",
6
6
  "bin": "./chopsticks.cjs",
@@ -13,8 +13,8 @@
13
13
  "docs:prep": "typedoc"
14
14
  },
15
15
  "dependencies": {
16
- "@acala-network/chopsticks-core": "0.9.4-5",
17
- "@acala-network/chopsticks-db": "0.9.4-5",
16
+ "@acala-network/chopsticks-core": "0.9.4-6",
17
+ "@acala-network/chopsticks-db": "0.9.4-6",
18
18
  "@pnpm/npm-conf": "^2.2.2",
19
19
  "@polkadot/api-augment": "^10.10.1",
20
20
  "@polkadot/types": "^10.10.1",