overtime-utils 0.1.49 → 0.1.50
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/main.js +1 -1
- package/package.json +1 -1
- package/src/constants/marketTypes.ts +5 -5
package/package.json
CHANGED
|
@@ -3427,35 +3427,35 @@ export const MarketTypeMap: Record<MarketType, MarketTypeInfo> = {
|
|
|
3427
3427
|
[MarketType.FIRST_PERIOD_DURATION]: {
|
|
3428
3428
|
id: MarketType.FIRST_PERIOD_DURATION,
|
|
3429
3429
|
key: 'firstPeriodDuration',
|
|
3430
|
-
name: '
|
|
3430
|
+
name: 'Duration (minutes) 1st',
|
|
3431
3431
|
resultType: ResultType.OVER_UNDER,
|
|
3432
3432
|
},
|
|
3433
3433
|
|
|
3434
3434
|
[MarketType.SECOND_PERIOD_DURATION]: {
|
|
3435
3435
|
id: MarketType.SECOND_PERIOD_DURATION,
|
|
3436
3436
|
key: 'secondPeriodDuration',
|
|
3437
|
-
name: '
|
|
3437
|
+
name: 'Duration (minutes) 2nd',
|
|
3438
3438
|
resultType: ResultType.OVER_UNDER,
|
|
3439
3439
|
},
|
|
3440
3440
|
|
|
3441
3441
|
[MarketType.THIRD_PERIOD_DURATION]: {
|
|
3442
3442
|
id: MarketType.THIRD_PERIOD_DURATION,
|
|
3443
3443
|
key: 'thirdPeriodDuration',
|
|
3444
|
-
name: '
|
|
3444
|
+
name: 'Duration (minutes) 3rd',
|
|
3445
3445
|
resultType: ResultType.OVER_UNDER,
|
|
3446
3446
|
},
|
|
3447
3447
|
|
|
3448
3448
|
[MarketType.FOURTH_PERIOD_DURATION]: {
|
|
3449
3449
|
id: MarketType.FOURTH_PERIOD_DURATION,
|
|
3450
3450
|
key: 'fourthPeriodDuration',
|
|
3451
|
-
name: '
|
|
3451
|
+
name: 'Duration (minutes) 4th',
|
|
3452
3452
|
resultType: ResultType.OVER_UNDER,
|
|
3453
3453
|
},
|
|
3454
3454
|
|
|
3455
3455
|
[MarketType.FIFTH_PERIOD_DURATION]: {
|
|
3456
3456
|
id: MarketType.FIFTH_PERIOD_DURATION,
|
|
3457
3457
|
key: 'fifthPeriodDuration',
|
|
3458
|
-
name: '
|
|
3458
|
+
name: 'Duration (minutes) 5th',
|
|
3459
3459
|
resultType: ResultType.OVER_UNDER,
|
|
3460
3460
|
},
|
|
3461
3461
|
};
|