@ball-lang/compiler 0.1.0 → 1.3.4

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/src/types.ts CHANGED
@@ -26,6 +26,12 @@ export interface Module {
26
26
 
27
27
  export interface ModuleImport {
28
28
  name: string;
29
+ inline?: InlineSource;
30
+ }
31
+
32
+ export interface InlineSource {
33
+ protoBytes?: string;
34
+ json?: string;
29
35
  }
30
36
 
31
37
  export interface FunctionDef {
@@ -99,6 +105,7 @@ export interface Literal {
99
105
  export interface MessageCreation {
100
106
  typeName?: string;
101
107
  fields: FieldValuePair[];
108
+ metadata?: Struct;
102
109
  }
103
110
 
104
111
  export interface FieldValuePair {