@tmlmobilidade/databases 20260617.2042.0 → 20260617.2222.30
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.
|
@@ -2652,29 +2652,29 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
2652
2652
|
operatorLongID: string;
|
|
2653
2653
|
}>;
|
|
2654
2654
|
serviceInfo: import("zod").ZodObject<{
|
|
2655
|
-
journeyID: import("zod").ZodString
|
|
2655
|
+
journeyID: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2656
2656
|
lineLongID: import("zod").ZodString;
|
|
2657
2657
|
patternLongID: import("zod").ZodString;
|
|
2658
2658
|
stopLongID: import("zod").ZodString;
|
|
2659
2659
|
validatorID: import("zod").ZodNumber;
|
|
2660
2660
|
vehicleID: import("zod").ZodNumber;
|
|
2661
|
-
zoneLongID: import("zod").ZodString
|
|
2661
|
+
zoneLongID: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2662
2662
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2663
|
-
journeyID: string;
|
|
2663
|
+
journeyID: string | null;
|
|
2664
2664
|
lineLongID: string;
|
|
2665
2665
|
patternLongID: string;
|
|
2666
2666
|
stopLongID: string;
|
|
2667
2667
|
validatorID: number;
|
|
2668
2668
|
vehicleID: number;
|
|
2669
|
-
zoneLongID: string;
|
|
2669
|
+
zoneLongID: string | null;
|
|
2670
2670
|
}, {
|
|
2671
|
-
journeyID: string;
|
|
2672
2671
|
lineLongID: string;
|
|
2673
2672
|
patternLongID: string;
|
|
2674
2673
|
stopLongID: string;
|
|
2675
2674
|
validatorID: number;
|
|
2676
2675
|
vehicleID: number;
|
|
2677
|
-
|
|
2676
|
+
journeyID?: string | null | undefined;
|
|
2677
|
+
zoneLongID?: string | null | undefined;
|
|
2678
2678
|
}>;
|
|
2679
2679
|
signedData: import("zod").ZodObject<{
|
|
2680
2680
|
contractBinaryRead: import("zod").ZodString;
|
|
@@ -2803,13 +2803,13 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
2803
2803
|
operatorLongID: string;
|
|
2804
2804
|
};
|
|
2805
2805
|
serviceInfo: {
|
|
2806
|
-
journeyID: string;
|
|
2806
|
+
journeyID: string | null;
|
|
2807
2807
|
lineLongID: string;
|
|
2808
2808
|
patternLongID: string;
|
|
2809
2809
|
stopLongID: string;
|
|
2810
2810
|
validatorID: number;
|
|
2811
2811
|
vehicleID: number;
|
|
2812
|
-
zoneLongID: string;
|
|
2812
|
+
zoneLongID: string | null;
|
|
2813
2813
|
};
|
|
2814
2814
|
transactionInfo: {
|
|
2815
2815
|
transactionId: string;
|
|
@@ -2878,13 +2878,13 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
2878
2878
|
operatorLongID: string;
|
|
2879
2879
|
};
|
|
2880
2880
|
serviceInfo: {
|
|
2881
|
-
journeyID: string;
|
|
2882
2881
|
lineLongID: string;
|
|
2883
2882
|
patternLongID: string;
|
|
2884
2883
|
stopLongID: string;
|
|
2885
2884
|
validatorID: number;
|
|
2886
2885
|
vehicleID: number;
|
|
2887
|
-
|
|
2886
|
+
journeyID?: string | null | undefined;
|
|
2887
|
+
zoneLongID?: string | null | undefined;
|
|
2888
2888
|
};
|
|
2889
2889
|
transactionInfo: {
|
|
2890
2890
|
transactionId: string;
|
|
@@ -2966,13 +2966,13 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
2966
2966
|
operatorLongID: string;
|
|
2967
2967
|
};
|
|
2968
2968
|
serviceInfo: {
|
|
2969
|
-
journeyID: string;
|
|
2969
|
+
journeyID: string | null;
|
|
2970
2970
|
lineLongID: string;
|
|
2971
2971
|
patternLongID: string;
|
|
2972
2972
|
stopLongID: string;
|
|
2973
2973
|
validatorID: number;
|
|
2974
2974
|
vehicleID: number;
|
|
2975
|
-
zoneLongID: string;
|
|
2975
|
+
zoneLongID: string | null;
|
|
2976
2976
|
};
|
|
2977
2977
|
transactionInfo: {
|
|
2978
2978
|
transactionId: string;
|
|
@@ -3049,13 +3049,13 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
3049
3049
|
operatorLongID: string;
|
|
3050
3050
|
};
|
|
3051
3051
|
serviceInfo: {
|
|
3052
|
-
journeyID: string;
|
|
3053
3052
|
lineLongID: string;
|
|
3054
3053
|
patternLongID: string;
|
|
3055
3054
|
stopLongID: string;
|
|
3056
3055
|
validatorID: number;
|
|
3057
3056
|
vehicleID: number;
|
|
3058
|
-
|
|
3057
|
+
journeyID?: string | null | undefined;
|
|
3058
|
+
zoneLongID?: string | null | undefined;
|
|
3059
3059
|
};
|
|
3060
3060
|
transactionInfo: {
|
|
3061
3061
|
transactionId: string;
|
|
@@ -3188,32 +3188,32 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
3188
3188
|
operatorLongID: string;
|
|
3189
3189
|
}>;
|
|
3190
3190
|
serviceInfo: import("zod").ZodObject<{
|
|
3191
|
-
journeyID: import("zod").ZodString
|
|
3191
|
+
journeyID: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3192
3192
|
lineLongID: import("zod").ZodString;
|
|
3193
3193
|
outOfBoundsType: import("zod").ZodNumber;
|
|
3194
3194
|
patternLongID: import("zod").ZodString;
|
|
3195
3195
|
stopLongID: import("zod").ZodString;
|
|
3196
3196
|
validatorID: import("zod").ZodNumber;
|
|
3197
3197
|
vehicleID: import("zod").ZodNumber;
|
|
3198
|
-
zoneLongID: import("zod").
|
|
3198
|
+
zoneLongID: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3199
3199
|
}, "strip", import("zod").ZodTypeAny, {
|
|
3200
|
-
journeyID: string;
|
|
3200
|
+
journeyID: string | null;
|
|
3201
3201
|
lineLongID: string;
|
|
3202
3202
|
outOfBoundsType: number;
|
|
3203
3203
|
patternLongID: string;
|
|
3204
3204
|
stopLongID: string;
|
|
3205
3205
|
validatorID: number;
|
|
3206
3206
|
vehicleID: number;
|
|
3207
|
-
zoneLongID
|
|
3207
|
+
zoneLongID: string | null;
|
|
3208
3208
|
}, {
|
|
3209
|
-
journeyID: string;
|
|
3210
3209
|
lineLongID: string;
|
|
3211
3210
|
outOfBoundsType: number;
|
|
3212
3211
|
patternLongID: string;
|
|
3213
3212
|
stopLongID: string;
|
|
3214
3213
|
validatorID: number;
|
|
3215
3214
|
vehicleID: number;
|
|
3216
|
-
|
|
3215
|
+
journeyID?: string | null | undefined;
|
|
3216
|
+
zoneLongID?: string | null | undefined;
|
|
3217
3217
|
}>;
|
|
3218
3218
|
signedData: import("zod").ZodObject<{
|
|
3219
3219
|
contractBinaryRead: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3339,14 +3339,14 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
3339
3339
|
operatorLongID: string;
|
|
3340
3340
|
};
|
|
3341
3341
|
serviceInfo: {
|
|
3342
|
-
journeyID: string;
|
|
3342
|
+
journeyID: string | null;
|
|
3343
3343
|
lineLongID: string;
|
|
3344
3344
|
outOfBoundsType: number;
|
|
3345
3345
|
patternLongID: string;
|
|
3346
3346
|
stopLongID: string;
|
|
3347
3347
|
validatorID: number;
|
|
3348
3348
|
vehicleID: number;
|
|
3349
|
-
zoneLongID
|
|
3349
|
+
zoneLongID: string | null;
|
|
3350
3350
|
};
|
|
3351
3351
|
transactionInfo: {
|
|
3352
3352
|
transactionId: string;
|
|
@@ -3414,14 +3414,14 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
3414
3414
|
operatorLongID: string;
|
|
3415
3415
|
};
|
|
3416
3416
|
serviceInfo: {
|
|
3417
|
-
journeyID: string;
|
|
3418
3417
|
lineLongID: string;
|
|
3419
3418
|
outOfBoundsType: number;
|
|
3420
3419
|
patternLongID: string;
|
|
3421
3420
|
stopLongID: string;
|
|
3422
3421
|
validatorID: number;
|
|
3423
3422
|
vehicleID: number;
|
|
3424
|
-
|
|
3423
|
+
journeyID?: string | null | undefined;
|
|
3424
|
+
zoneLongID?: string | null | undefined;
|
|
3425
3425
|
};
|
|
3426
3426
|
transactionInfo: {
|
|
3427
3427
|
transactionId: string;
|
|
@@ -3502,14 +3502,14 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
3502
3502
|
operatorLongID: string;
|
|
3503
3503
|
};
|
|
3504
3504
|
serviceInfo: {
|
|
3505
|
-
journeyID: string;
|
|
3505
|
+
journeyID: string | null;
|
|
3506
3506
|
lineLongID: string;
|
|
3507
3507
|
outOfBoundsType: number;
|
|
3508
3508
|
patternLongID: string;
|
|
3509
3509
|
stopLongID: string;
|
|
3510
3510
|
validatorID: number;
|
|
3511
3511
|
vehicleID: number;
|
|
3512
|
-
zoneLongID
|
|
3512
|
+
zoneLongID: string | null;
|
|
3513
3513
|
};
|
|
3514
3514
|
transactionInfo: {
|
|
3515
3515
|
transactionId: string;
|
|
@@ -3585,14 +3585,14 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
3585
3585
|
operatorLongID: string;
|
|
3586
3586
|
};
|
|
3587
3587
|
serviceInfo: {
|
|
3588
|
-
journeyID: string;
|
|
3589
3588
|
lineLongID: string;
|
|
3590
3589
|
outOfBoundsType: number;
|
|
3591
3590
|
patternLongID: string;
|
|
3592
3591
|
stopLongID: string;
|
|
3593
3592
|
validatorID: number;
|
|
3594
3593
|
vehicleID: number;
|
|
3595
|
-
|
|
3594
|
+
journeyID?: string | null | undefined;
|
|
3595
|
+
zoneLongID?: string | null | undefined;
|
|
3596
3596
|
};
|
|
3597
3597
|
transactionInfo: {
|
|
3598
3598
|
transactionId: string;
|
|
@@ -3731,7 +3731,7 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
3731
3731
|
stopLongID: import("zod").ZodString;
|
|
3732
3732
|
validatorID: import("zod").ZodNumber;
|
|
3733
3733
|
vehicleID: import("zod").ZodNumber;
|
|
3734
|
-
zoneLongID: import("zod").
|
|
3734
|
+
zoneLongID: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3735
3735
|
}, "strip", import("zod").ZodTypeAny, {
|
|
3736
3736
|
journeyID: string | null;
|
|
3737
3737
|
lineLongID: string;
|
|
@@ -3740,7 +3740,7 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
3740
3740
|
stopLongID: string;
|
|
3741
3741
|
validatorID: number;
|
|
3742
3742
|
vehicleID: number;
|
|
3743
|
-
zoneLongID
|
|
3743
|
+
zoneLongID: string | null;
|
|
3744
3744
|
}, {
|
|
3745
3745
|
lineLongID: string;
|
|
3746
3746
|
outOfBoundsType: number;
|
|
@@ -3749,7 +3749,7 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
3749
3749
|
validatorID: number;
|
|
3750
3750
|
vehicleID: number;
|
|
3751
3751
|
journeyID?: string | null | undefined;
|
|
3752
|
-
zoneLongID?: string | undefined;
|
|
3752
|
+
zoneLongID?: string | null | undefined;
|
|
3753
3753
|
}>;
|
|
3754
3754
|
signedData: import("zod").ZodObject<{
|
|
3755
3755
|
contractBinaryRead: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3882,7 +3882,7 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
3882
3882
|
stopLongID: string;
|
|
3883
3883
|
validatorID: number;
|
|
3884
3884
|
vehicleID: number;
|
|
3885
|
-
zoneLongID
|
|
3885
|
+
zoneLongID: string | null;
|
|
3886
3886
|
};
|
|
3887
3887
|
transactionInfo: {
|
|
3888
3888
|
transactionId: string;
|
|
@@ -3957,7 +3957,7 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
3957
3957
|
validatorID: number;
|
|
3958
3958
|
vehicleID: number;
|
|
3959
3959
|
journeyID?: string | null | undefined;
|
|
3960
|
-
zoneLongID?: string | undefined;
|
|
3960
|
+
zoneLongID?: string | null | undefined;
|
|
3961
3961
|
};
|
|
3962
3962
|
transactionInfo: {
|
|
3963
3963
|
transactionId: string;
|
|
@@ -4045,7 +4045,7 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
4045
4045
|
stopLongID: string;
|
|
4046
4046
|
validatorID: number;
|
|
4047
4047
|
vehicleID: number;
|
|
4048
|
-
zoneLongID
|
|
4048
|
+
zoneLongID: string | null;
|
|
4049
4049
|
};
|
|
4050
4050
|
transactionInfo: {
|
|
4051
4051
|
transactionId: string;
|
|
@@ -4128,7 +4128,7 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
4128
4128
|
validatorID: number;
|
|
4129
4129
|
vehicleID: number;
|
|
4130
4130
|
journeyID?: string | null | undefined;
|
|
4131
|
-
zoneLongID?: string | undefined;
|
|
4131
|
+
zoneLongID?: string | null | undefined;
|
|
4132
4132
|
};
|
|
4133
4133
|
transactionInfo: {
|
|
4134
4134
|
transactionId: string;
|
|
@@ -4267,7 +4267,7 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
4267
4267
|
stopLongID: import("zod").ZodString;
|
|
4268
4268
|
validatorID: import("zod").ZodNumber;
|
|
4269
4269
|
vehicleID: import("zod").ZodNumber;
|
|
4270
|
-
zoneLongID: import("zod").
|
|
4270
|
+
zoneLongID: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4271
4271
|
}, "strip", import("zod").ZodTypeAny, {
|
|
4272
4272
|
journeyID: string | null;
|
|
4273
4273
|
lineLongID: string;
|
|
@@ -4276,7 +4276,7 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
4276
4276
|
stopLongID: string;
|
|
4277
4277
|
validatorID: number;
|
|
4278
4278
|
vehicleID: number;
|
|
4279
|
-
zoneLongID
|
|
4279
|
+
zoneLongID: string | null;
|
|
4280
4280
|
}, {
|
|
4281
4281
|
lineLongID: string;
|
|
4282
4282
|
outOfBoundsType: number;
|
|
@@ -4285,7 +4285,7 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
4285
4285
|
validatorID: number;
|
|
4286
4286
|
vehicleID: number;
|
|
4287
4287
|
journeyID?: string | null | undefined;
|
|
4288
|
-
zoneLongID?: string | undefined;
|
|
4288
|
+
zoneLongID?: string | null | undefined;
|
|
4289
4289
|
}>;
|
|
4290
4290
|
signedData: import("zod").ZodObject<{
|
|
4291
4291
|
contractBinaryRead: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4418,7 +4418,7 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
4418
4418
|
stopLongID: string;
|
|
4419
4419
|
validatorID: number;
|
|
4420
4420
|
vehicleID: number;
|
|
4421
|
-
zoneLongID
|
|
4421
|
+
zoneLongID: string | null;
|
|
4422
4422
|
};
|
|
4423
4423
|
transactionInfo: {
|
|
4424
4424
|
transactionId: string;
|
|
@@ -4493,7 +4493,7 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
4493
4493
|
validatorID: number;
|
|
4494
4494
|
vehicleID: number;
|
|
4495
4495
|
journeyID?: string | null | undefined;
|
|
4496
|
-
zoneLongID?: string | undefined;
|
|
4496
|
+
zoneLongID?: string | null | undefined;
|
|
4497
4497
|
};
|
|
4498
4498
|
transactionInfo: {
|
|
4499
4499
|
transactionId: string;
|
|
@@ -4581,7 +4581,7 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
4581
4581
|
stopLongID: string;
|
|
4582
4582
|
validatorID: number;
|
|
4583
4583
|
vehicleID: number;
|
|
4584
|
-
zoneLongID
|
|
4584
|
+
zoneLongID: string | null;
|
|
4585
4585
|
};
|
|
4586
4586
|
transactionInfo: {
|
|
4587
4587
|
transactionId: string;
|
|
@@ -4664,7 +4664,7 @@ declare class RawApexTransactionsClass extends MongoInterfaceTemplate<RawApexTra
|
|
|
4664
4664
|
validatorID: number;
|
|
4665
4665
|
vehicleID: number;
|
|
4666
4666
|
journeyID?: string | null | undefined;
|
|
4667
|
-
zoneLongID?: string | undefined;
|
|
4667
|
+
zoneLongID?: string | null | undefined;
|
|
4668
4668
|
};
|
|
4669
4669
|
transactionInfo: {
|
|
4670
4670
|
transactionId: string;
|