@lokiengineering/loki-common-node 1.5.2 → 1.5.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 CHANGED
@@ -320,4 +320,14 @@ declare enum OrderType {
320
320
  REPLACEMENT = "replacement"
321
321
  }
322
322
 
323
- 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, MaturityRating, MembershipTier, OrderChargeStatus, OrderIncidentType, OrderItemStatus, OrderPenaltyType, OrderStatus, OrderType, ParseError, PayoutKnownBank, PeriodKey, PhoneVerificationType, Platform, RefundStatus, ServerErrorEnum, TokenType, VerificationTokenType, VisibilityToTypeMap, WalletTransactionReason, WalletTransactionType };
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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lokiengineering/loki-common-node",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "Shared TypeScript enums and types for Loki services",
5
5
  "license": "MIT",
6
6
  "repository": {