gambling-bot-shared 1.0.2 → 1.0.3
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.
|
@@ -16,3 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./transaction"), exports);
|
|
18
18
|
__exportStar(require("./gameRecordFields"), exports);
|
|
19
|
+
__exportStar(require("./staffAudit"), exports);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const STAFF_ADMIN_ACTIONS: {
|
|
2
|
+
readonly VIP_BUY: "admin-buy";
|
|
3
|
+
readonly VIP_EXTEND: "admin-extend";
|
|
4
|
+
readonly VIP_ADD_MEMBER: "admin-add-member";
|
|
5
|
+
readonly VIP_REMOVE: "admin-remove";
|
|
6
|
+
readonly RAFFLE_CANCEL: "raffle-cancel";
|
|
7
|
+
readonly PREDICTION_END: "prediction-end";
|
|
8
|
+
readonly PREDICTION_PAYOUT: "prediction-payout";
|
|
9
|
+
readonly PREDICTION_CANCEL: "prediction-cancel";
|
|
10
|
+
readonly ATM_REJECT: "atm-reject";
|
|
11
|
+
};
|
|
12
|
+
export type StaffAdminAction = (typeof STAFF_ADMIN_ACTIONS)[keyof typeof STAFF_ADMIN_ACTIONS];
|
|
13
|
+
export declare const STAFF_ACTION_CATEGORIES: readonly ["balance", "atm", "vip", "raffle", "prediction"];
|
|
14
|
+
export type StaffActionCategory = (typeof STAFF_ACTION_CATEGORIES)[number];
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.STAFF_ACTION_CATEGORIES = exports.STAFF_ADMIN_ACTIONS = void 0;
|
|
4
|
+
exports.STAFF_ADMIN_ACTIONS = {
|
|
5
|
+
VIP_BUY: 'admin-buy',
|
|
6
|
+
VIP_EXTEND: 'admin-extend',
|
|
7
|
+
VIP_ADD_MEMBER: 'admin-add-member',
|
|
8
|
+
VIP_REMOVE: 'admin-remove',
|
|
9
|
+
RAFFLE_CANCEL: 'raffle-cancel',
|
|
10
|
+
PREDICTION_END: 'prediction-end',
|
|
11
|
+
PREDICTION_PAYOUT: 'prediction-payout',
|
|
12
|
+
PREDICTION_CANCEL: 'prediction-cancel',
|
|
13
|
+
ATM_REJECT: 'atm-reject'
|
|
14
|
+
};
|
|
15
|
+
exports.STAFF_ACTION_CATEGORIES = [
|
|
16
|
+
'balance',
|
|
17
|
+
'atm',
|
|
18
|
+
'vip',
|
|
19
|
+
'raffle',
|
|
20
|
+
'prediction'
|
|
21
|
+
];
|