@fatehan/tsrp 1.0.24 → 1.0.25
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/dist/fatehan/areas/area.js +6 -6
- package/dist/fatehan/google/protobuf/timestamp.js +2 -2
- package/dist/fatehan/models/fusion.d.ts +37 -0
- package/dist/fatehan/models/fusion.d.ts.map +1 -1
- package/dist/fatehan/models/fusion.js +597 -9
- package/dist/fatehan/models/models.js +10 -10
- package/dist/fatehan/models/operation.js +6 -6
- package/dist/fatehan/notifies/notify.d.ts +3 -4
- package/dist/fatehan/notifies/notify.d.ts.map +1 -1
- package/dist/fatehan/notifies/notify.js +43 -59
- package/dist/fatehan/packets/dataModel.d.ts +82 -0
- package/dist/fatehan/packets/dataModel.d.ts.map +1 -1
- package/dist/fatehan/packets/dataModel.js +1415 -64
- package/dist/fatehan/packets/messages.js +7 -7
- package/dist/fatehan/reports/report.js +81 -81
- package/dist/fatehan/trips/trip.d.ts +44 -0
- package/dist/fatehan/trips/trip.d.ts.map +1 -1
- package/dist/fatehan/trips/trip.js +289 -20
- package/package.json +3 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
|
-
// protoc-gen-ts_proto v2.7.
|
|
4
|
+
// protoc-gen-ts_proto v2.7.0
|
|
5
5
|
// protoc v6.31.1
|
|
6
6
|
// source: packets/messages.proto
|
|
7
7
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -93,7 +93,7 @@ exports.CommandContent = {
|
|
|
93
93
|
},
|
|
94
94
|
decode(input, length) {
|
|
95
95
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
96
|
-
|
|
96
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
97
97
|
const message = createBaseCommandContent();
|
|
98
98
|
while (reader.pos < end) {
|
|
99
99
|
const tag = reader.uint32();
|
|
@@ -215,7 +215,7 @@ exports.CommandAkn = {
|
|
|
215
215
|
},
|
|
216
216
|
decode(input, length) {
|
|
217
217
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
218
|
-
|
|
218
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
219
219
|
const message = createBaseCommandAkn();
|
|
220
220
|
while (reader.pos < end) {
|
|
221
221
|
const tag = reader.uint32();
|
|
@@ -319,7 +319,7 @@ exports.Command = {
|
|
|
319
319
|
},
|
|
320
320
|
decode(input, length) {
|
|
321
321
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
322
|
-
|
|
322
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
323
323
|
const message = createBaseCommand();
|
|
324
324
|
while (reader.pos < end) {
|
|
325
325
|
const tag = reader.uint32();
|
|
@@ -506,7 +506,7 @@ exports.CommandValidation = {
|
|
|
506
506
|
},
|
|
507
507
|
decode(input, length) {
|
|
508
508
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
509
|
-
|
|
509
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
510
510
|
const message = createBaseCommandValidation();
|
|
511
511
|
while (reader.pos < end) {
|
|
512
512
|
const tag = reader.uint32();
|
|
@@ -623,7 +623,7 @@ exports.CommandFormat = {
|
|
|
623
623
|
},
|
|
624
624
|
decode(input, length) {
|
|
625
625
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
626
|
-
|
|
626
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
627
627
|
const message = createBaseCommandFormat();
|
|
628
628
|
while (reader.pos < end) {
|
|
629
629
|
const tag = reader.uint32();
|
|
@@ -742,7 +742,7 @@ exports.CommandStruct = {
|
|
|
742
742
|
},
|
|
743
743
|
decode(input, length) {
|
|
744
744
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
745
|
-
|
|
745
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
746
746
|
const message = createBaseCommandStruct();
|
|
747
747
|
while (reader.pos < end) {
|
|
748
748
|
const tag = reader.uint32();
|