@lokiengineering/loki-common-node 1.5.1 → 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 +16 -5
- package/dist/index.js +21 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -77,10 +77,6 @@ declare enum GamePlayMode {
|
|
|
77
77
|
MULTIPLAYER = "multiplayer",
|
|
78
78
|
CO_OP = "co_op"
|
|
79
79
|
}
|
|
80
|
-
declare enum OrderType {
|
|
81
|
-
NEW = "new",
|
|
82
|
-
EXTEND = "extend"
|
|
83
|
-
}
|
|
84
80
|
declare enum VerificationTokenType {
|
|
85
81
|
EMAIL_VERIFICATION = "email_verification",
|
|
86
82
|
PASSWORD_RESET = "password_reset"
|
|
@@ -318,5 +314,20 @@ declare enum AppealStatus {
|
|
|
318
314
|
REJECTED = "appeal_rejected",
|
|
319
315
|
ACCEPTED = "appeal_accepted"
|
|
320
316
|
}
|
|
317
|
+
declare enum OrderType {
|
|
318
|
+
NEW = "new",
|
|
319
|
+
EXTEND = "extend",
|
|
320
|
+
REPLACEMENT = "replacement"
|
|
321
|
+
}
|
|
322
|
+
|
|
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
|
+
}
|
|
321
332
|
|
|
322
|
-
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 };
|
|
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
|
@@ -91,11 +91,6 @@ var GamePlayMode = /* @__PURE__ */ ((GamePlayMode2) => {
|
|
|
91
91
|
GamePlayMode2["CO_OP"] = "co_op";
|
|
92
92
|
return GamePlayMode2;
|
|
93
93
|
})(GamePlayMode || {});
|
|
94
|
-
var OrderType = /* @__PURE__ */ ((OrderType2) => {
|
|
95
|
-
OrderType2["NEW"] = "new";
|
|
96
|
-
OrderType2["EXTEND"] = "extend";
|
|
97
|
-
return OrderType2;
|
|
98
|
-
})(OrderType || {});
|
|
99
94
|
var VerificationTokenType = /* @__PURE__ */ ((VerificationTokenType2) => {
|
|
100
95
|
VerificationTokenType2["EMAIL_VERIFICATION"] = "email_verification";
|
|
101
96
|
VerificationTokenType2["PASSWORD_RESET"] = "password_reset";
|
|
@@ -365,6 +360,25 @@ var AppealStatus = /* @__PURE__ */ ((AppealStatus2) => {
|
|
|
365
360
|
AppealStatus2["ACCEPTED"] = "appeal_accepted";
|
|
366
361
|
return AppealStatus2;
|
|
367
362
|
})(AppealStatus || {});
|
|
363
|
+
var OrderType = /* @__PURE__ */ ((OrderType2) => {
|
|
364
|
+
OrderType2["NEW"] = "new";
|
|
365
|
+
OrderType2["EXTEND"] = "extend";
|
|
366
|
+
OrderType2["REPLACEMENT"] = "replacement";
|
|
367
|
+
return OrderType2;
|
|
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 || {});
|
|
368
382
|
export {
|
|
369
383
|
ActorType,
|
|
370
384
|
AdminRole,
|
|
@@ -388,6 +402,8 @@ export {
|
|
|
388
402
|
HouseListPlatform,
|
|
389
403
|
IncidentResolution,
|
|
390
404
|
ItemPaymentStatus,
|
|
405
|
+
ItemProofStatus,
|
|
406
|
+
ItemProofType,
|
|
391
407
|
MaturityRating,
|
|
392
408
|
MembershipTier,
|
|
393
409
|
OrderChargeStatus,
|