react-memory-optimization 0.0.33 → 0.0.35
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/dist/bundle.js +1 -1
- package/dist/lib/binary/constants/requestModules/APayRequest.d.ts +2 -0
- package/dist/lib/binary/constants/requestModules/APayRequest.js +83 -0
- package/dist/lib/binary/constants/requests.js +4 -3
- package/dist/lib/store/user/entities/daily/index.d.ts +1 -0
- package/dist/lib/store/user/types.d.ts +5 -1
- package/dist/lib/store/user/types.js +4 -0
- package/package.json +1 -1
- /package/dist/lib/binary/constants/{PlixoRequests.d.ts → requestModules/PlixoRequests.d.ts} +0 -0
- /package/dist/lib/binary/constants/{PlixoRequests.js → requestModules/PlixoRequests.js} +0 -0
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.APAY_REQUESTS = void 0;
|
|
4
|
+
const types_1 = require("binary/types");
|
|
5
|
+
exports.APAY_REQUESTS = {
|
|
6
|
+
'\\242x243x244_deposit': {
|
|
7
|
+
command: 'BetPaykassmaDeposit',
|
|
8
|
+
responseKey: '-',
|
|
9
|
+
writeScheme: [
|
|
10
|
+
{
|
|
11
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
12
|
+
binary: types_1.EWriteDataType.Long,
|
|
13
|
+
key: 'bonusId',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
17
|
+
binary: types_1.EWriteDataType.Short,
|
|
18
|
+
key: 'currencyId',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
22
|
+
binary: types_1.EWriteDataType.Byte,
|
|
23
|
+
key: 'channelId',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
27
|
+
binary: types_1.EWriteDataType.UTF,
|
|
28
|
+
key: 'transaction',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
32
|
+
binary: types_1.EWriteDataType.Int,
|
|
33
|
+
key: 'amount',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
37
|
+
binary: types_1.EWriteDataType.Byte,
|
|
38
|
+
key: 'requestId',
|
|
39
|
+
},
|
|
40
|
+
],
|
|
41
|
+
},
|
|
42
|
+
'\\245_withdraw': {
|
|
43
|
+
command: 'PaykassmaCreateWithdraw',
|
|
44
|
+
responseKey: '-',
|
|
45
|
+
writeScheme: [
|
|
46
|
+
{
|
|
47
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
48
|
+
binary: types_1.EWriteDataType.Short,
|
|
49
|
+
key: 'currencyId',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
53
|
+
binary: types_1.EWriteDataType.Byte,
|
|
54
|
+
key: 'channelId',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
58
|
+
binary: types_1.EWriteDataType.UTF,
|
|
59
|
+
key: 'accountNumber',
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
63
|
+
binary: types_1.EWriteDataType.UTF,
|
|
64
|
+
key: 'phoneNumber',
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
68
|
+
binary: types_1.EWriteDataType.UTF,
|
|
69
|
+
key: 'bankCode',
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
73
|
+
binary: types_1.EWriteDataType.Int,
|
|
74
|
+
key: 'amount',
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
type: 0 /* EWriteModifiedDataType.Usual */,
|
|
78
|
+
binary: types_1.EWriteDataType.Byte,
|
|
79
|
+
key: 'requestId',
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
},
|
|
83
|
+
};
|
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.REQUEST_COMMANDS = void 0;
|
|
4
4
|
const types_1 = require("binary/types");
|
|
5
|
-
const PlixoRequests_1 = require("./PlixoRequests");
|
|
6
|
-
|
|
5
|
+
const PlixoRequests_1 = require("./requestModules/PlixoRequests");
|
|
6
|
+
const APayRequest_1 = require("./requestModules/APayRequest");
|
|
7
|
+
exports.REQUEST_COMMANDS = Object.assign(Object.assign({ '\\x0': {
|
|
7
8
|
command: 'GeoProviders',
|
|
8
9
|
responseKey: '-',
|
|
9
10
|
writeScheme: [],
|
|
@@ -3291,4 +3292,4 @@ exports.REQUEST_COMMANDS = Object.assign({ '\\x0': {
|
|
|
3291
3292
|
key: 'requestId',
|
|
3292
3293
|
},
|
|
3293
3294
|
],
|
|
3294
|
-
} }, PlixoRequests_1.PLIXO_REQUESTS);
|
|
3295
|
+
} }, PlixoRequests_1.PLIXO_REQUESTS), APayRequest_1.APAY_REQUESTS);
|
|
@@ -6,6 +6,7 @@ export declare class DailyActivities extends ObservableEntity<undefined> {
|
|
|
6
6
|
_tasks: DailyInfoType[];
|
|
7
7
|
_activeTask: null | DailyInfoType;
|
|
8
8
|
services: UserServices;
|
|
9
|
+
isError: boolean;
|
|
9
10
|
constructor(services: UserServices);
|
|
10
11
|
set tasks(info: DailyInfoType[]);
|
|
11
12
|
get tasks(): DailyInfoType[];
|
|
@@ -249,7 +249,11 @@ export declare enum PaymentChannelType {
|
|
|
249
249
|
PlixoAznM10 = 238,
|
|
250
250
|
PlixoAznMPay = 239,
|
|
251
251
|
PlixoBdtBkash = 240,
|
|
252
|
-
PlixoNagadBkashSecond = 241
|
|
252
|
+
PlixoNagadBkashSecond = 241,
|
|
253
|
+
APayJazzcashP2C = 242,
|
|
254
|
+
APayNayapayP2P = 243,
|
|
255
|
+
APayBankalfalahP2C = 244,
|
|
256
|
+
APayBankTransfer = 245
|
|
253
257
|
}
|
|
254
258
|
export type MPayMethods = PaymentChannelType.MPayParazula | PaymentChannelType.MPayPayco | PaymentChannelType.MPayVCC | PaymentChannelType.PaparaMPay | PaymentChannelType.MefeteMpay | PaymentChannelType.MefeteMpayQr | PaymentChannelType.EFTMPay | PaymentChannelType.MiniHavaleMpay | PaymentChannelType.PopyMpay;
|
|
255
259
|
export type WellexPayMethods = PaymentChannelType.BKashFastWellexPay | PaymentChannelType.NagadFastWellexPay | PaymentChannelType.NagadWellexPay | PaymentChannelType.BkashWellexPay | PaymentChannelType.WellxpayUpay | PaymentChannelType.BKashFastWellexPayCopy | PaymentChannelType.NagadFastWellexPayCopy | PaymentChannelType.WellxpayRocket;
|
|
@@ -152,4 +152,8 @@ var PaymentChannelType;
|
|
|
152
152
|
PaymentChannelType[PaymentChannelType["PlixoAznMPay"] = 239] = "PlixoAznMPay";
|
|
153
153
|
PaymentChannelType[PaymentChannelType["PlixoBdtBkash"] = 240] = "PlixoBdtBkash";
|
|
154
154
|
PaymentChannelType[PaymentChannelType["PlixoNagadBkashSecond"] = 241] = "PlixoNagadBkashSecond";
|
|
155
|
+
PaymentChannelType[PaymentChannelType["APayJazzcashP2C"] = 242] = "APayJazzcashP2C";
|
|
156
|
+
PaymentChannelType[PaymentChannelType["APayNayapayP2P"] = 243] = "APayNayapayP2P";
|
|
157
|
+
PaymentChannelType[PaymentChannelType["APayBankalfalahP2C"] = 244] = "APayBankalfalahP2C";
|
|
158
|
+
PaymentChannelType[PaymentChannelType["APayBankTransfer"] = 245] = "APayBankTransfer";
|
|
155
159
|
})(PaymentChannelType || (exports.PaymentChannelType = PaymentChannelType = {}));
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|