@remnawave/backend-contract 0.0.27 → 0.0.28
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,10 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.TEMPLATE_KEYS = void 0;
|
4
|
-
exports.TEMPLATE_KEYS = [
|
4
|
+
exports.TEMPLATE_KEYS = [
|
5
|
+
'DAYS_LEFT',
|
6
|
+
'TRAFFIC_USED',
|
7
|
+
'TRAFFIC_LEFT',
|
8
|
+
'STATUS',
|
9
|
+
'TOTAL_TRAFFIC',
|
10
|
+
];
|
@@ -1,2 +1,8 @@
|
|
1
|
-
export const TEMPLATE_KEYS = [
|
1
|
+
export const TEMPLATE_KEYS = [
|
2
|
+
'DAYS_LEFT',
|
3
|
+
'TRAFFIC_USED',
|
4
|
+
'TRAFFIC_LEFT',
|
5
|
+
'STATUS',
|
6
|
+
'TOTAL_TRAFFIC',
|
7
|
+
] as const;
|
2
8
|
export type TemplateKeys = (typeof TEMPLATE_KEYS)[number];
|