@dcl/inspector 7.1.1-4386019452.commit-8b1daa0 → 7.1.1-4387085842.commit-f2a09ff
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/package.json +4 -4
- package/public/bundle.js +36 -36
- package/public/bundle.js.map +2 -2
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/inspector",
|
|
3
|
-
"version": "7.1.1-
|
|
3
|
+
"version": "7.1.1-4387085842.commit-f2a09ff",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "node ./build.js --watch",
|
|
6
6
|
"build": "node ./build.js"
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@dcl/ecs": "7.1.1-
|
|
10
|
-
"@dcl/js-runtime": "7.1.1-
|
|
9
|
+
"@dcl/ecs": "7.1.1-4387085842.commit-f2a09ff",
|
|
10
|
+
"@dcl/js-runtime": "7.1.1-4387085842.commit-f2a09ff",
|
|
11
11
|
"@types/node": "^16.18.11",
|
|
12
12
|
"@types/react": "^18.0.27",
|
|
13
13
|
"@types/react-dom": "^18.0.10",
|
|
@@ -20,5 +20,5 @@
|
|
|
20
20
|
"react-icons": "^4.7.1",
|
|
21
21
|
"typescript": "^4.9.4"
|
|
22
22
|
},
|
|
23
|
-
"commit": "
|
|
23
|
+
"commit": "f2a09ff9326d0407ac01a79f3ddc15dc3b73bcf5"
|
|
24
24
|
}
|
package/public/bundle.js
CHANGED
|
@@ -34000,10 +34000,10 @@
|
|
|
34000
34000
|
return {
|
|
34001
34001
|
...transformDef,
|
|
34002
34002
|
create(entity, val) {
|
|
34003
|
-
return transformDef.create(entity, val);
|
|
34003
|
+
return transformDef.create(entity, TransformSchema.extend(val));
|
|
34004
34004
|
},
|
|
34005
34005
|
createOrReplace(entity, val) {
|
|
34006
|
-
return transformDef.createOrReplace(entity, val);
|
|
34006
|
+
return transformDef.createOrReplace(entity, TransformSchema.extend(val));
|
|
34007
34007
|
}
|
|
34008
34008
|
};
|
|
34009
34009
|
}
|
|
@@ -35026,41 +35026,41 @@
|
|
|
35026
35026
|
return this.woffset - this.roffset;
|
|
35027
35027
|
}
|
|
35028
35028
|
readFloat32() {
|
|
35029
|
-
return this.view.getFloat32(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 4));
|
|
35029
|
+
return this.view.getFloat32(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 4), true);
|
|
35030
35030
|
}
|
|
35031
35031
|
readFloat64() {
|
|
35032
|
-
return this.view.getFloat64(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 8));
|
|
35032
|
+
return this.view.getFloat64(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 8), true);
|
|
35033
35033
|
}
|
|
35034
35034
|
readInt8() {
|
|
35035
35035
|
return this.view.getInt8(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 1));
|
|
35036
35036
|
}
|
|
35037
35037
|
readInt16() {
|
|
35038
|
-
return this.view.getInt16(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 2));
|
|
35038
|
+
return this.view.getInt16(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 2), true);
|
|
35039
35039
|
}
|
|
35040
35040
|
readInt32() {
|
|
35041
|
-
return this.view.getInt32(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 4));
|
|
35041
|
+
return this.view.getInt32(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 4), true);
|
|
35042
35042
|
}
|
|
35043
35043
|
readInt64() {
|
|
35044
|
-
return this.view.getBigInt64(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 8));
|
|
35044
|
+
return this.view.getBigInt64(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 8), true);
|
|
35045
35045
|
}
|
|
35046
35046
|
readUint8() {
|
|
35047
35047
|
return this.view.getUint8(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 1));
|
|
35048
35048
|
}
|
|
35049
35049
|
readUint16() {
|
|
35050
|
-
return this.view.getUint16(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 2));
|
|
35050
|
+
return this.view.getUint16(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 2), true);
|
|
35051
35051
|
}
|
|
35052
35052
|
readUint32() {
|
|
35053
|
-
return this.view.getUint32(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 4));
|
|
35053
|
+
return this.view.getUint32(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 4), true);
|
|
35054
35054
|
}
|
|
35055
35055
|
readUint64() {
|
|
35056
|
-
return this.view.getBigUint64(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 8));
|
|
35056
|
+
return this.view.getBigUint64(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 8), true);
|
|
35057
35057
|
}
|
|
35058
35058
|
readBuffer() {
|
|
35059
|
-
const length2 = this.view.getUint32(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 4));
|
|
35059
|
+
const length2 = this.view.getUint32(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 4), true);
|
|
35060
35060
|
return this._buffer.subarray(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, length2), __classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 0));
|
|
35061
35061
|
}
|
|
35062
35062
|
readUtf8String() {
|
|
35063
|
-
const length2 = this.view.getUint32(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 4));
|
|
35063
|
+
const length2 = this.view.getUint32(__classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 4), true);
|
|
35064
35064
|
return utf82.read(this._buffer, __classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, length2), __classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_roAdd).call(this, 0));
|
|
35065
35065
|
}
|
|
35066
35066
|
incrementWriteOffset(amount) {
|
|
@@ -35089,11 +35089,11 @@
|
|
|
35089
35089
|
}
|
|
35090
35090
|
writeFloat32(value) {
|
|
35091
35091
|
const o = __classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_woAdd).call(this, 4);
|
|
35092
|
-
this.view.setFloat32(o, value);
|
|
35092
|
+
this.view.setFloat32(o, value, true);
|
|
35093
35093
|
}
|
|
35094
35094
|
writeFloat64(value) {
|
|
35095
35095
|
const o = __classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_woAdd).call(this, 8);
|
|
35096
|
-
this.view.setFloat64(o, value);
|
|
35096
|
+
this.view.setFloat64(o, value, true);
|
|
35097
35097
|
}
|
|
35098
35098
|
writeInt8(value) {
|
|
35099
35099
|
const o = __classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_woAdd).call(this, 1);
|
|
@@ -35101,15 +35101,15 @@
|
|
|
35101
35101
|
}
|
|
35102
35102
|
writeInt16(value) {
|
|
35103
35103
|
const o = __classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_woAdd).call(this, 2);
|
|
35104
|
-
this.view.setInt16(o, value);
|
|
35104
|
+
this.view.setInt16(o, value, true);
|
|
35105
35105
|
}
|
|
35106
35106
|
writeInt32(value) {
|
|
35107
35107
|
const o = __classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_woAdd).call(this, 4);
|
|
35108
|
-
this.view.setInt32(o, value);
|
|
35108
|
+
this.view.setInt32(o, value, true);
|
|
35109
35109
|
}
|
|
35110
35110
|
writeInt64(value) {
|
|
35111
35111
|
const o = __classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_woAdd).call(this, 8);
|
|
35112
|
-
this.view.setBigInt64(o, value);
|
|
35112
|
+
this.view.setBigInt64(o, value, true);
|
|
35113
35113
|
}
|
|
35114
35114
|
writeUint8(value) {
|
|
35115
35115
|
const o = __classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_woAdd).call(this, 1);
|
|
@@ -35117,76 +35117,76 @@
|
|
|
35117
35117
|
}
|
|
35118
35118
|
writeUint16(value) {
|
|
35119
35119
|
const o = __classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_woAdd).call(this, 2);
|
|
35120
|
-
this.view.setUint16(o, value);
|
|
35120
|
+
this.view.setUint16(o, value, true);
|
|
35121
35121
|
}
|
|
35122
35122
|
writeUint32(value) {
|
|
35123
35123
|
const o = __classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_woAdd).call(this, 4);
|
|
35124
|
-
this.view.setUint32(o, value);
|
|
35124
|
+
this.view.setUint32(o, value, true);
|
|
35125
35125
|
}
|
|
35126
35126
|
writeUint64(value) {
|
|
35127
35127
|
const o = __classPrivateFieldGet(this, _ReadWriteByteBuffer_instances, "m", _ReadWriteByteBuffer_woAdd).call(this, 8);
|
|
35128
|
-
this.view.setBigUint64(o, value);
|
|
35128
|
+
this.view.setBigUint64(o, value, true);
|
|
35129
35129
|
}
|
|
35130
35130
|
// DataView Proxy
|
|
35131
35131
|
getFloat32(offset) {
|
|
35132
|
-
return this.view.getFloat32(offset);
|
|
35132
|
+
return this.view.getFloat32(offset, true);
|
|
35133
35133
|
}
|
|
35134
35134
|
getFloat64(offset) {
|
|
35135
|
-
return this.view.getFloat64(offset);
|
|
35135
|
+
return this.view.getFloat64(offset, true);
|
|
35136
35136
|
}
|
|
35137
35137
|
getInt8(offset) {
|
|
35138
35138
|
return this.view.getInt8(offset);
|
|
35139
35139
|
}
|
|
35140
35140
|
getInt16(offset) {
|
|
35141
|
-
return this.view.getInt16(offset);
|
|
35141
|
+
return this.view.getInt16(offset, true);
|
|
35142
35142
|
}
|
|
35143
35143
|
getInt32(offset) {
|
|
35144
|
-
return this.view.getInt32(offset);
|
|
35144
|
+
return this.view.getInt32(offset, true);
|
|
35145
35145
|
}
|
|
35146
35146
|
getInt64(offset) {
|
|
35147
|
-
return this.view.getBigInt64(offset);
|
|
35147
|
+
return this.view.getBigInt64(offset, true);
|
|
35148
35148
|
}
|
|
35149
35149
|
getUint8(offset) {
|
|
35150
35150
|
return this.view.getUint8(offset);
|
|
35151
35151
|
}
|
|
35152
35152
|
getUint16(offset) {
|
|
35153
|
-
return this.view.getUint16(offset);
|
|
35153
|
+
return this.view.getUint16(offset, true);
|
|
35154
35154
|
}
|
|
35155
35155
|
getUint32(offset) {
|
|
35156
|
-
return this.view.getUint32(offset)
|
|
35156
|
+
return this.view.getUint32(offset, true);
|
|
35157
35157
|
}
|
|
35158
35158
|
getUint64(offset) {
|
|
35159
|
-
return this.view.getBigUint64(offset);
|
|
35159
|
+
return this.view.getBigUint64(offset, true);
|
|
35160
35160
|
}
|
|
35161
35161
|
setFloat32(offset, value) {
|
|
35162
|
-
this.view.setFloat32(offset, value);
|
|
35162
|
+
this.view.setFloat32(offset, value, true);
|
|
35163
35163
|
}
|
|
35164
35164
|
setFloat64(offset, value) {
|
|
35165
|
-
this.view.setFloat64(offset, value);
|
|
35165
|
+
this.view.setFloat64(offset, value, true);
|
|
35166
35166
|
}
|
|
35167
35167
|
setInt8(offset, value) {
|
|
35168
35168
|
this.view.setInt8(offset, value);
|
|
35169
35169
|
}
|
|
35170
35170
|
setInt16(offset, value) {
|
|
35171
|
-
this.view.setInt16(offset, value);
|
|
35171
|
+
this.view.setInt16(offset, value, true);
|
|
35172
35172
|
}
|
|
35173
35173
|
setInt32(offset, value) {
|
|
35174
|
-
this.view.setInt32(offset, value);
|
|
35174
|
+
this.view.setInt32(offset, value, true);
|
|
35175
35175
|
}
|
|
35176
35176
|
setInt64(offset, value) {
|
|
35177
|
-
this.view.setBigInt64(offset, value);
|
|
35177
|
+
this.view.setBigInt64(offset, value, true);
|
|
35178
35178
|
}
|
|
35179
35179
|
setUint8(offset, value) {
|
|
35180
35180
|
this.view.setUint8(offset, value);
|
|
35181
35181
|
}
|
|
35182
35182
|
setUint16(offset, value) {
|
|
35183
|
-
this.view.setUint16(offset, value);
|
|
35183
|
+
this.view.setUint16(offset, value, true);
|
|
35184
35184
|
}
|
|
35185
35185
|
setUint32(offset, value) {
|
|
35186
|
-
this.view.setUint32(offset, value);
|
|
35186
|
+
this.view.setUint32(offset, value, true);
|
|
35187
35187
|
}
|
|
35188
35188
|
setUint64(offset, value) {
|
|
35189
|
-
this.view.setBigUint64(offset, value);
|
|
35189
|
+
this.view.setBigUint64(offset, value, true);
|
|
35190
35190
|
}
|
|
35191
35191
|
};
|
|
35192
35192
|
_ReadWriteByteBuffer_instances = /* @__PURE__ */ new WeakSet(), _ReadWriteByteBuffer_woAdd = function _ReadWriteByteBuffer_woAdd2(amount) {
|