@lokiengineering/loki-common-node 1.5.3 → 1.5.4
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 +3 -3
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -325,9 +325,9 @@ declare enum ItemProofType {
|
|
|
325
325
|
APPEAL = "appeal"
|
|
326
326
|
}
|
|
327
327
|
declare enum ItemProofStatus {
|
|
328
|
-
PENDING = "
|
|
329
|
-
REJECTED = "
|
|
330
|
-
ACCEPTED = "
|
|
328
|
+
PENDING = "pending",
|
|
329
|
+
REJECTED = "rejected",
|
|
330
|
+
ACCEPTED = "accepted"
|
|
331
331
|
}
|
|
332
332
|
|
|
333
333
|
export { ActorType, AdminRole, AppealStatus, ArticleType, AssetType, AssetVisibility, AuthProvider, BusinessLogicErrorEnum, ContentDescriptor, DeliveryDirection, DeliveryStatus, EmailTemplateType, ErrorEntity, type ErrorEnum, FulfillmentStatus, GameCopyStatus, GamePlayMode, GameTier, GeneralErrorEnum, Genre, HouseListPlatform, IncidentResolution, ItemPaymentStatus, ItemProofStatus, ItemProofType, 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
|
@@ -374,9 +374,9 @@ var ItemProofType = /* @__PURE__ */ ((ItemProofType2) => {
|
|
|
374
374
|
return ItemProofType2;
|
|
375
375
|
})(ItemProofType || {});
|
|
376
376
|
var ItemProofStatus = /* @__PURE__ */ ((ItemProofStatus2) => {
|
|
377
|
-
ItemProofStatus2["PENDING"] = "
|
|
378
|
-
ItemProofStatus2["REJECTED"] = "
|
|
379
|
-
ItemProofStatus2["ACCEPTED"] = "
|
|
377
|
+
ItemProofStatus2["PENDING"] = "pending";
|
|
378
|
+
ItemProofStatus2["REJECTED"] = "rejected";
|
|
379
|
+
ItemProofStatus2["ACCEPTED"] = "accepted";
|
|
380
380
|
return ItemProofStatus2;
|
|
381
381
|
})(ItemProofStatus || {});
|
|
382
382
|
export {
|