@@ -270,6 +270,7 @@ const VALUE_TO_ASSEMBLYSCRIPT = [
270270 [ '[Bytes]' , 'Array<Bytes>' , ( code : any ) => `${ code } .toBytesArray()` ] ,
271271 [ '[Boolean]' , 'Array<boolean>' , ( code : any ) => `${ code } .toBooleanArray()` ] ,
272272 [ '[Int]' , 'Array<i32>' , ( code : any ) => `${ code } .toI32Array()` ] ,
273+ [ '[Int8]' , 'Array<i64>' , ( code : any ) => `${ code } .toI64Array()` ] ,
273274 [ '[BigInt]' , 'Array<BigInt>' , ( code : any ) => `${ code } .toBigIntArray()` ] ,
274275 [ '[ID]' , 'Array<string>' , ( code : any ) => `${ code } .toStringArray()` ] ,
275276 [ '[String]' , 'Array<string>' , ( code : any ) => `${ code } .toStringArray()` ] ,
@@ -281,6 +282,7 @@ const VALUE_TO_ASSEMBLYSCRIPT = [
281282 [ 'Bytes' , 'Bytes' , ( code : any ) => `${ code } .toBytes()` ] ,
282283 [ 'Boolean' , 'boolean' , ( code : any ) => `${ code } .toBoolean()` ] ,
283284 [ 'Int' , 'i32' , ( code : any ) => `${ code } .toI32()` ] ,
285+ [ 'Int8' , 'i64' , ( code : any ) => `${ code } .toI64()` ] ,
284286 [ 'BigInt' , 'BigInt' , ( code : any ) => `${ code } .toBigInt()` ] ,
285287 [ 'ID' , 'string' , ( code : any ) => `${ code } .toString()` ] ,
286288 [ 'String' , 'string' , ( code : any ) => `${ code } .toString()` ] ,
@@ -302,6 +304,7 @@ const ASSEMBLYSCRIPT_TO_VALUE = [
302304 [ 'Array<Array<Bytes>>' , '[[Bytes]]' , ( code : any ) => `Value.fromBytesMatrix(${ code } )` ] ,
303305 [ 'Array<Array<boolean>>' , '[[Boolean]]' , ( code : any ) => `Value.fromBooleanMatrix(${ code } )` ] ,
304306 [ 'Array<Array<i32>>' , '[[Int]]' , ( code : any ) => `Value.fromI32Matrix(${ code } )` ] ,
307+ [ 'Array<Array<i64>>' , '[[Int8]]' , ( code : any ) => `Value.fromI64Matrix(${ code } )` ] ,
305308 [ 'Array<Array<BigInt>>' , '[[BigInt]]' , ( code : any ) => `Value.fromBigIntMatrix(${ code } )` ] ,
306309 [ 'Array<Array<string>>' , '[[String]]' , ( code : any ) => `Value.fromStringMatrix(${ code } )` ] ,
307310 [ 'Array<Array<string>>' , '[[ID]]' , ( code : any ) => `Value.fromStringMatrix(${ code } )` ] ,
@@ -319,6 +322,7 @@ const ASSEMBLYSCRIPT_TO_VALUE = [
319322 [ 'Array<Bytes>' , '[Bytes]' , ( code : any ) => `Value.fromBytesArray(${ code } )` ] ,
320323 [ 'Array<boolean>' , '[Boolean]' , ( code : any ) => `Value.fromBooleanArray(${ code } )` ] ,
321324 [ 'Array<i32>' , '[Int]' , ( code : any ) => `Value.fromI32Array(${ code } )` ] ,
325+ [ 'Array<i64>' , '[Int8]' , ( code : any ) => `Value.fromI64Array(${ code } )` ] ,
322326 [ 'Array<BigInt>' , '[BigInt]' , ( code : any ) => `Value.fromBigIntArray(${ code } )` ] ,
323327 [ 'Array<string>' , '[String]' , ( code : any ) => `Value.fromStringArray(${ code } )` ] ,
324328 [ 'Array<string>' , '[ID]' , ( code : any ) => `Value.fromStringArray(${ code } )` ] ,
@@ -332,6 +336,7 @@ const ASSEMBLYSCRIPT_TO_VALUE = [
332336 [ 'Bytes' , 'Bytes' , ( code : any ) => `Value.fromBytes(${ code } )` ] ,
333337 [ 'boolean' , 'Boolean' , ( code : any ) => `Value.fromBoolean(${ code } )` ] ,
334338 [ 'i32' , 'Int' , ( code : any ) => `Value.fromI32(${ code } )` ] ,
339+ [ 'i64' , 'Int8' , ( code : any ) => `Value.fromI64(${ code } )` ] ,
335340 [ 'BigInt' , 'BigInt' , ( code : any ) => `Value.fromBigInt(${ code } )` ] ,
336341 [ 'string' , 'String' , ( code : any ) => `Value.fromString(${ code } )` ] ,
337342 [ 'string' , 'ID' , ( code : any ) => `Value.fromString(${ code } )` ] ,
0 commit comments