react-memory-optimization 0.0.127 → 0.0.128

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.
@@ -118,4 +118,52 @@ exports.PAYMENT_REQUEST_PATHS = {
118
118
  path: types_1.EApiPath.CreateProdWithdraw,
119
119
  adapterFn: utils_1.restAdapterWithdraw,
120
120
  },
121
+ [types_1.EPaymentRequestPath.CreedoBKashBDTDeposit]: {
122
+ path: types_1.EApiPath.CreateProdDeposit,
123
+ adapterFn: utils_1.restAdapterDeposit,
124
+ },
125
+ [types_1.EPaymentRequestPath.CreedoBKashBDTWithdraw]: {
126
+ path: types_1.EApiPath.CreateProdWithdraw,
127
+ adapterFn: utils_1.restAdapterWithdraw,
128
+ },
129
+ [types_1.EPaymentRequestPath.CreedoNagadBDTDeposit]: {
130
+ path: types_1.EApiPath.CreateProdDeposit,
131
+ adapterFn: utils_1.restAdapterDeposit,
132
+ },
133
+ [types_1.EPaymentRequestPath.CreedoNagadBDTWithdraw]: {
134
+ path: types_1.EApiPath.CreateProdWithdraw,
135
+ adapterFn: utils_1.restAdapterWithdraw,
136
+ },
137
+ [types_1.EPaymentRequestPath.CreedoEasyPaisaPKRDeposit]: {
138
+ path: types_1.EApiPath.CreateProdDeposit,
139
+ adapterFn: utils_1.restAdapterDeposit,
140
+ },
141
+ [types_1.EPaymentRequestPath.CreedoEasyPaisaPKRWithdraw]: {
142
+ path: types_1.EApiPath.CreateProdWithdraw,
143
+ adapterFn: utils_1.restAdapterWithdraw,
144
+ },
145
+ [types_1.EPaymentRequestPath.CreedoJazzCashPKRDeposit]: {
146
+ path: types_1.EApiPath.CreateProdDeposit,
147
+ adapterFn: utils_1.restAdapterDeposit,
148
+ },
149
+ [types_1.EPaymentRequestPath.CreedoJazzCashPKRWithdraw]: {
150
+ path: types_1.EApiPath.CreateProdWithdraw,
151
+ adapterFn: utils_1.restAdapterWithdraw,
152
+ },
153
+ [types_1.EPaymentRequestPath.CreedoGCashPHPDeposit]: {
154
+ path: types_1.EApiPath.CreateProdDeposit,
155
+ adapterFn: utils_1.restAdapterDeposit,
156
+ },
157
+ [types_1.EPaymentRequestPath.CreedoGCashPHPWithdraw]: {
158
+ path: types_1.EApiPath.CreateProdWithdraw,
159
+ adapterFn: utils_1.restAdapterWithdraw,
160
+ },
161
+ [types_1.EPaymentRequestPath.CreedoPayMayaPHPDeposit]: {
162
+ path: types_1.EApiPath.CreateProdDeposit,
163
+ adapterFn: utils_1.restAdapterDeposit,
164
+ },
165
+ [types_1.EPaymentRequestPath.CreedoPayMayaPHPWithdraw]: {
166
+ path: types_1.EApiPath.CreateProdWithdraw,
167
+ adapterFn: utils_1.restAdapterWithdraw,
168
+ },
121
169
  };
@@ -43,7 +43,19 @@ export declare enum EPaymentRequestPath {
43
43
  BetterBroEasypaisaDeposit = "better_bro_easypaisa_deposit",
44
44
  BetterBroEasypaisaWithdraw = "better_bro_easypaisa_withdraw",
45
45
  BetterBroJazzCashDeposit = "better_bro_jazzcash_deposit",
46
- BetterBroJazzCashWithdraw = "better_bro_jazzcash_withdraw"
46
+ BetterBroJazzCashWithdraw = "better_bro_jazzcash_withdraw",
47
+ CreedoBKashBDTDeposit = "creedo_bkash_bdt_deposit",
48
+ CreedoBKashBDTWithdraw = "creedo_bkash_bdt_withdraw",
49
+ CreedoNagadBDTDeposit = "creedo_nagad_bdt_deposit",
50
+ CreedoNagadBDTWithdraw = "creedo_nagad_bdt_withdraw",
51
+ CreedoEasyPaisaPKRDeposit = "creedo_easy_paisa_pkr_deposit",
52
+ CreedoEasyPaisaPKRWithdraw = "creedo_easy_paisa_pkr_withdraw",
53
+ CreedoJazzCashPKRDeposit = "creedo_jazz_cash_pkr_deposit",
54
+ CreedoJazzCashPKRWithdraw = "creedo_jazz_cash_pkr_withdraw",
55
+ CreedoGCashPHPDeposit = "creedo_g_cash_php_deposit",
56
+ CreedoGCashPHPWithdraw = "creedo_g_cash_php_withdraw",
57
+ CreedoPayMayaPHPDeposit = "creedo_pay_maya_php_deposit",
58
+ CreedoPayMayaPHPWithdraw = "creedo_pay_maya_php_withdraw"
47
59
  }
48
60
  export type ApiList = {
49
61
  [key: string]: {
@@ -52,6 +52,18 @@ var EPaymentRequestPath;
52
52
  EPaymentRequestPath["BetterBroEasypaisaWithdraw"] = "better_bro_easypaisa_withdraw";
53
53
  EPaymentRequestPath["BetterBroJazzCashDeposit"] = "better_bro_jazzcash_deposit";
54
54
  EPaymentRequestPath["BetterBroJazzCashWithdraw"] = "better_bro_jazzcash_withdraw";
55
+ EPaymentRequestPath["CreedoBKashBDTDeposit"] = "creedo_bkash_bdt_deposit";
56
+ EPaymentRequestPath["CreedoBKashBDTWithdraw"] = "creedo_bkash_bdt_withdraw";
57
+ EPaymentRequestPath["CreedoNagadBDTDeposit"] = "creedo_nagad_bdt_deposit";
58
+ EPaymentRequestPath["CreedoNagadBDTWithdraw"] = "creedo_nagad_bdt_withdraw";
59
+ EPaymentRequestPath["CreedoEasyPaisaPKRDeposit"] = "creedo_easy_paisa_pkr_deposit";
60
+ EPaymentRequestPath["CreedoEasyPaisaPKRWithdraw"] = "creedo_easy_paisa_pkr_withdraw";
61
+ EPaymentRequestPath["CreedoJazzCashPKRDeposit"] = "creedo_jazz_cash_pkr_deposit";
62
+ EPaymentRequestPath["CreedoJazzCashPKRWithdraw"] = "creedo_jazz_cash_pkr_withdraw";
63
+ EPaymentRequestPath["CreedoGCashPHPDeposit"] = "creedo_g_cash_php_deposit";
64
+ EPaymentRequestPath["CreedoGCashPHPWithdraw"] = "creedo_g_cash_php_withdraw";
65
+ EPaymentRequestPath["CreedoPayMayaPHPDeposit"] = "creedo_pay_maya_php_deposit";
66
+ EPaymentRequestPath["CreedoPayMayaPHPWithdraw"] = "creedo_pay_maya_php_withdraw";
55
67
  })(EPaymentRequestPath || (exports.EPaymentRequestPath = EPaymentRequestPath = {}));
56
68
  // FlashPayUpiDeposit
57
69
  var EPaymentStatusCode;
@@ -212,6 +212,8 @@ export declare enum PaymentChannelType {
212
212
  INRRGTS = 142,
213
213
  InrDeposit = 144,
214
214
  INRWithdrawImp = 147,
215
+ CreedoGCash = 145,
216
+ CreedoPayMaya = 146,
215
217
  MPayCC = 148,
216
218
  MPayFix = 149,
217
219
  PagsmileBoleto = 152,
@@ -277,10 +279,10 @@ export declare enum PaymentChannelType {
277
279
  APayBankTransfer = 245,
278
280
  PKRPlixoEasypaisa = 246,
279
281
  PKRPlixoJazzCash = 247,
280
- PlixoCreedoBkash = 248,
281
- PlixoCreedoNagad = 249,
282
- PlixoCreedoEasyPaisa = 250,
283
- PlixoCreedoJazzCash = 251,
282
+ CreedoBkash = 248,
283
+ CreedoNagad = 249,
284
+ CreedoEasyPaisa = 250,
285
+ CreedoJazzCash = 251,
284
286
  FluxBKash = 252,
285
287
  FluxNagad = 253
286
288
  }
@@ -105,6 +105,9 @@ var PaymentChannelType;
105
105
  PaymentChannelType[PaymentChannelType["INRRGTS"] = 142] = "INRRGTS";
106
106
  PaymentChannelType[PaymentChannelType["InrDeposit"] = 144] = "InrDeposit";
107
107
  PaymentChannelType[PaymentChannelType["INRWithdrawImp"] = 147] = "INRWithdrawImp";
108
+ //Creedo
109
+ PaymentChannelType[PaymentChannelType["CreedoGCash"] = 145] = "CreedoGCash";
110
+ PaymentChannelType[PaymentChannelType["CreedoPayMaya"] = 146] = "CreedoPayMaya";
108
111
  PaymentChannelType[PaymentChannelType["MPayCC"] = 148] = "MPayCC";
109
112
  PaymentChannelType[PaymentChannelType["MPayFix"] = 149] = "MPayFix";
110
113
  PaymentChannelType[PaymentChannelType["PagsmileBoleto"] = 152] = "PagsmileBoleto";
@@ -173,10 +176,11 @@ var PaymentChannelType;
173
176
  PaymentChannelType[PaymentChannelType["APayBankTransfer"] = 245] = "APayBankTransfer";
174
177
  PaymentChannelType[PaymentChannelType["PKRPlixoEasypaisa"] = 246] = "PKRPlixoEasypaisa";
175
178
  PaymentChannelType[PaymentChannelType["PKRPlixoJazzCash"] = 247] = "PKRPlixoJazzCash";
176
- PaymentChannelType[PaymentChannelType["PlixoCreedoBkash"] = 248] = "PlixoCreedoBkash";
177
- PaymentChannelType[PaymentChannelType["PlixoCreedoNagad"] = 249] = "PlixoCreedoNagad";
178
- PaymentChannelType[PaymentChannelType["PlixoCreedoEasyPaisa"] = 250] = "PlixoCreedoEasyPaisa";
179
- PaymentChannelType[PaymentChannelType["PlixoCreedoJazzCash"] = 251] = "PlixoCreedoJazzCash";
179
+ // Creedo
180
+ PaymentChannelType[PaymentChannelType["CreedoBkash"] = 248] = "CreedoBkash";
181
+ PaymentChannelType[PaymentChannelType["CreedoNagad"] = 249] = "CreedoNagad";
182
+ PaymentChannelType[PaymentChannelType["CreedoEasyPaisa"] = 250] = "CreedoEasyPaisa";
183
+ PaymentChannelType[PaymentChannelType["CreedoJazzCash"] = 251] = "CreedoJazzCash";
180
184
  PaymentChannelType[PaymentChannelType["FluxBKash"] = 252] = "FluxBKash";
181
185
  PaymentChannelType[PaymentChannelType["FluxNagad"] = 253] = "FluxNagad";
182
186
  })(PaymentChannelType || (exports.PaymentChannelType = PaymentChannelType = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-memory-optimization",
3
- "version": "0.0.127",
3
+ "version": "0.0.128",
4
4
  "description": "react memory optimization library",
5
5
  "sideEffects": false,
6
6
  "files": [