@lokiengineering/loki-common-node 1.5.1 → 1.5.2

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
@@ -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,10 @@ 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
+ }
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 };
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,12 @@ 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 || {});
368
369
  export {
369
370
  ActorType,
370
371
  AdminRole,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lokiengineering/loki-common-node",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "Shared TypeScript enums and types for Loki services",
5
5
  "license": "MIT",
6
6
  "repository": {