@lokiengineering/loki-common-node 1.5.2 → 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 +11 -1
- package/dist/index.js +15 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -320,4 +320,14 @@ declare enum OrderType {
|
|
|
320
320
|
REPLACEMENT = "replacement"
|
|
321
321
|
}
|
|
322
322
|
|
|
323
|
-
|
|
323
|
+
declare enum ItemProofType {
|
|
324
|
+
DOA = "doa",
|
|
325
|
+
APPEAL = "appeal"
|
|
326
|
+
}
|
|
327
|
+
declare enum ItemProofStatus {
|
|
328
|
+
PENDING = "pending",
|
|
329
|
+
REJECTED = "rejected",
|
|
330
|
+
ACCEPTED = "accepted"
|
|
331
|
+
}
|
|
332
|
+
|
|
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
|
@@ -366,6 +366,19 @@ var OrderType = /* @__PURE__ */ ((OrderType2) => {
|
|
|
366
366
|
OrderType2["REPLACEMENT"] = "replacement";
|
|
367
367
|
return OrderType2;
|
|
368
368
|
})(OrderType || {});
|
|
369
|
+
|
|
370
|
+
// src/enums/dispute.enum.ts
|
|
371
|
+
var ItemProofType = /* @__PURE__ */ ((ItemProofType2) => {
|
|
372
|
+
ItemProofType2["DOA"] = "doa";
|
|
373
|
+
ItemProofType2["APPEAL"] = "appeal";
|
|
374
|
+
return ItemProofType2;
|
|
375
|
+
})(ItemProofType || {});
|
|
376
|
+
var ItemProofStatus = /* @__PURE__ */ ((ItemProofStatus2) => {
|
|
377
|
+
ItemProofStatus2["PENDING"] = "pending";
|
|
378
|
+
ItemProofStatus2["REJECTED"] = "rejected";
|
|
379
|
+
ItemProofStatus2["ACCEPTED"] = "accepted";
|
|
380
|
+
return ItemProofStatus2;
|
|
381
|
+
})(ItemProofStatus || {});
|
|
369
382
|
export {
|
|
370
383
|
ActorType,
|
|
371
384
|
AdminRole,
|
|
@@ -389,6 +402,8 @@ export {
|
|
|
389
402
|
HouseListPlatform,
|
|
390
403
|
IncidentResolution,
|
|
391
404
|
ItemPaymentStatus,
|
|
405
|
+
ItemProofStatus,
|
|
406
|
+
ItemProofType,
|
|
392
407
|
MaturityRating,
|
|
393
408
|
MembershipTier,
|
|
394
409
|
OrderChargeStatus,
|