@lokiengineering/loki-common-node 1.4.1 → 1.4.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.
- package/dist/index.d.ts +8 -2
- package/dist/index.js +9 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -219,7 +219,8 @@ declare enum ErrorEntity {
|
|
|
219
219
|
OrderDelivery = "order_delivery",
|
|
220
220
|
Wallet = "wallet",
|
|
221
221
|
WalletTransaction = "wallet_transaction",
|
|
222
|
-
UpcomingRelease = "upcoming_release"
|
|
222
|
+
UpcomingRelease = "upcoming_release",
|
|
223
|
+
PhoneVerification = "phone_verification"
|
|
223
224
|
}
|
|
224
225
|
declare enum ServerErrorEnum {
|
|
225
226
|
CACHE_LOCK_FAILURE = "CACHE_LOCK_FAILURE",
|
|
@@ -272,4 +273,9 @@ declare enum PayoutKnownBank {
|
|
|
272
273
|
MANDIRI = "mandiri"
|
|
273
274
|
}
|
|
274
275
|
|
|
275
|
-
|
|
276
|
+
declare enum PhoneVerificationType {
|
|
277
|
+
CONFIRM = "CONFIRM",
|
|
278
|
+
VERIFY = "VERIFY"
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
export { ActorType, AdminRole, ArticleType, AssetType, AssetVisibility, AuthProvider, BusinessLogicErrorEnum, ContentDescriptor, DeliveryDirection, DeliveryStatus, EmailTemplateType, ErrorEntity, type ErrorEnum, GameCopyStatus, GamePlayMode, GameTier, GeneralErrorEnum, Genre, HouseListPlatform, IncidentResolution, MaturityRating, MembershipTier, OrderChargeStatus, OrderIncidentType, OrderItemStatus, OrderPenaltyType, OrderStatus, OrderType, ParseError, PayoutKnownBank, PeriodKey, PhoneVerificationType, Platform, RefundStatus, ServerErrorEnum, TokenType, VerificationTokenType, VisibilityToTypeMap, WalletTransactionReason, WalletTransactionType };
|
package/dist/index.js
CHANGED
|
@@ -255,6 +255,7 @@ var ErrorEntity = /* @__PURE__ */ ((ErrorEntity2) => {
|
|
|
255
255
|
ErrorEntity2["Wallet"] = "wallet";
|
|
256
256
|
ErrorEntity2["WalletTransaction"] = "wallet_transaction";
|
|
257
257
|
ErrorEntity2["UpcomingRelease"] = "upcoming_release";
|
|
258
|
+
ErrorEntity2["PhoneVerification"] = "phone_verification";
|
|
258
259
|
return ErrorEntity2;
|
|
259
260
|
})(ErrorEntity || {});
|
|
260
261
|
var ServerErrorEnum = /* @__PURE__ */ ((ServerErrorEnum2) => {
|
|
@@ -312,6 +313,13 @@ var PayoutKnownBank = /* @__PURE__ */ ((PayoutKnownBank2) => {
|
|
|
312
313
|
PayoutKnownBank2["MANDIRI"] = "mandiri";
|
|
313
314
|
return PayoutKnownBank2;
|
|
314
315
|
})(PayoutKnownBank || {});
|
|
316
|
+
|
|
317
|
+
// src/enums/otp.enum.ts
|
|
318
|
+
var PhoneVerificationType = /* @__PURE__ */ ((PhoneVerificationType2) => {
|
|
319
|
+
PhoneVerificationType2["CONFIRM"] = "CONFIRM";
|
|
320
|
+
PhoneVerificationType2["VERIFY"] = "VERIFY";
|
|
321
|
+
return PhoneVerificationType2;
|
|
322
|
+
})(PhoneVerificationType || {});
|
|
315
323
|
export {
|
|
316
324
|
ActorType,
|
|
317
325
|
AdminRole,
|
|
@@ -343,6 +351,7 @@ export {
|
|
|
343
351
|
ParseError,
|
|
344
352
|
PayoutKnownBank,
|
|
345
353
|
PeriodKey,
|
|
354
|
+
PhoneVerificationType,
|
|
346
355
|
Platform,
|
|
347
356
|
RefundStatus,
|
|
348
357
|
ServerErrorEnum,
|