55// Transfer (FIT) Protocol License.
66/////////////////////////////////////////////////////////////////////////////////////////////
77// ****WARNING**** This file is auto-generated! Do NOT edit this file.
8- // Profile Version = 21.168 .0Release
9- // Tag = production/release/21.168 .0-0-gb831b31
8+ // Profile Version = 21.169 .0Release
9+ // Tag = production/release/21.169 .0-0-g7105132
1010/////////////////////////////////////////////////////////////////////////////////////////////
1111
1212
@@ -16,7 +16,7 @@ import Profile from "./profile.js";
1616const textEncoder = new TextEncoder ( ) ;
1717
1818class MesgDefinition {
19- globalMesgNumber ;
19+ globalMessageNumber ;
2020 localMesgNum ;
2121 fieldDefinitions = [ ] ;
2222 developerFieldDefinitions = [ ] ;
@@ -37,7 +37,7 @@ class MesgDefinition {
3737 throw new Error ( `mesgNum: ${ mesgNum } could not be found in the Profile` ) ;
3838 }
3939
40- this . globalMesgNumber = mesgNum ;
40+ this . globalMessageNumber = mesgNum ;
4141 this . localMesgNum = 0 ;
4242
4343 Object . keys ( mesg ) . forEach ( ( fieldName ) => {
@@ -122,7 +122,7 @@ class MesgDefinition {
122122 outputStream . writeUInt8 ( FIT . ARCH_LITTLE_ENDIAN ) ;
123123
124124 // Global Message Number
125- outputStream . writeUInt16 ( this . globalMesgNumber ) ;
125+ outputStream . writeUInt16 ( this . globalMessageNumber ) ;
126126
127127 // Field Count
128128 outputStream . writeUInt8 ( this . fieldDefinitions . length ) ;
@@ -147,7 +147,7 @@ class MesgDefinition {
147147 }
148148
149149 equals ( other ) {
150- if ( this . globalMessageNumber !== other . globalMessageNumber
150+ if ( this . globalMesgNumber !== other . globalMesgNumber
151151 || this . fieldDefinitions . length !== other . fieldDefinitions . length
152152 || this . developerFieldDefinitions . length !== other . developerFieldDefinitions . length ) {
153153 return false ;
0 commit comments