alepha 0.6.9 → 0.7.0

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/topic.d.ts CHANGED
@@ -47,6 +47,7 @@ interface TSchema extends TKind, SchemaOptions {
47
47
  }
48
48
 
49
49
  declare class TopicProvider {
50
+ constructor();
50
51
  /**
51
52
  * Publish a message to a topic.
52
53
  *
package/vite.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import viteReactPlugin from '@vitejs/plugin-react';
2
- import { Plugin } from 'vite';
2
+ import { UserConfig, Plugin } from 'vite';
3
3
 
4
4
  interface ViteAlephaBuildOptions {
5
5
  /**
@@ -16,6 +16,16 @@ interface ViteAlephaBuildOptions {
16
16
  orgId: string;
17
17
  settings: any;
18
18
  };
19
+ /**
20
+ * A list of modules that should not be externalized in the build process.
21
+ *
22
+ * @default true
23
+ */
24
+ noExternal?: string | RegExp | (string | RegExp)[] | true;
25
+ /**
26
+ * Vite server options to override the default server configuration.
27
+ */
28
+ server?: UserConfig;
19
29
  }
20
30
  /**
21
31
  *