@aeriajs/cli 0.0.178 → 0.0.180

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.
@@ -7,6 +7,7 @@ export const buildAeriaLang = async () => {
7
7
  try {
8
8
  return await build(['schemas/*.aeria'], {
9
9
  outDir: '.aeria/out',
10
+ // deprecated: new compiler only outputs esnext
10
11
  module: tsConfig.compilerOptions.module === ts.ModuleKind.CommonJS
11
12
  ? 'commonjs'
12
13
  : 'esnext',
@@ -1,7 +1,7 @@
1
1
  import type { InstanceConfig } from 'aeria-sdk';
2
2
  export declare const mirrorSdk: (defaultConfig?: Partial<InstanceConfig>) => Promise<{
3
3
  readonly _tag: "Error";
4
- readonly error: import("@aeriajs/types").ACError.AuthorizationError | import("@aeriajs/types").ACError.MalformedInput | import("@aeriajs/builtins").AuthenticationError;
4
+ readonly error: "AUTHORIZATION_ERROR" | "MALFORMED_INPUT" | "INVALID_CREDENTIALS" | "INACTIVE_USER";
5
5
  readonly result: undefined;
6
6
  } | {
7
7
  readonly _tag: "Result";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aeriajs/cli",
3
3
  "type": "module",
4
- "version": "0.0.178",
4
+ "version": "0.0.180",
5
5
  "description": "",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.mjs",
@@ -39,11 +39,11 @@
39
39
  "@aeriajs/types": "link:../types"
40
40
  },
41
41
  "peerDependencies": {
42
- "@aeriajs/builtins": "^0.0.230",
43
- "@aeriajs/common": "^0.0.131",
44
- "@aeriajs/core": "^0.0.230",
45
- "@aeriajs/entrypoint": "^0.0.134",
46
- "@aeriajs/types": "^0.0.113"
42
+ "@aeriajs/builtins": "^0.0.232",
43
+ "@aeriajs/common": "^0.0.132",
44
+ "@aeriajs/core": "^0.0.232",
45
+ "@aeriajs/entrypoint": "^0.0.136",
46
+ "@aeriajs/types": "^0.0.114"
47
47
  },
48
48
  "optionalDependencies": {
49
49
  "aeria-lang": "0.0.11"