@remnawave/backend-contract 0.0.27 → 0.0.28
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.
@@ -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];
|