@lokiengineering/loki-common-node 1.2.0 → 1.3.0

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
@@ -158,6 +158,11 @@ declare enum OrderPenaltyType {
158
158
  LIQUID_DAMAGE = "LIQUID_DAMAGE",// Soda, grease, vape residue
159
159
  SEVERE_STRUCTURAL = "SEVERE_STRUCTURAL"
160
160
  }
161
+ declare enum OrderChargeStatus {
162
+ NOT_ASSESSED = 0,
163
+ PENDING = 1,
164
+ SETTLED = 2
165
+ }
161
166
 
162
167
  declare enum MaturityRating {
163
168
  EVERYONE = "Everyone",
@@ -262,4 +267,4 @@ declare enum PayoutKnownBank {
262
267
  MANDIRI = "mandiri"
263
268
  }
264
269
 
265
- export { ActorType, AdminRole, ArticleType, AssetType, AssetVisibility, AuthProvider, BusinessLogicErrorEnum, ContentDescriptor, DeliveryDirection, DeliveryStatus, EmailTemplateType, ErrorEntity, type ErrorEnum, GameCopyStatus, GamePlayMode, GameTier, GeneralErrorEnum, Genre, HouseListPlatform, IncidentResolution, MaturityRating, MembershipTier, OrderIncidentType, OrderItemStatus, OrderPenaltyType, OrderStatus, OrderType, ParseError, PayoutKnownBank, PeriodKey, Platform, RefundStatus, ServerErrorEnum, TokenType, VerificationTokenType, VisibilityToTypeMap, WalletTransactionReason, WalletTransactionType };
270
+ export { ActorType, AdminRole, ArticleType, AssetType, AssetVisibility, AuthProvider, BusinessLogicErrorEnum, ContentDescriptor, DeliveryDirection, DeliveryStatus, EmailTemplateType, ErrorEntity, type ErrorEnum, GameCopyStatus, GamePlayMode, GameTier, GeneralErrorEnum, Genre, HouseListPlatform, IncidentResolution, MaturityRating, MembershipTier, OrderChargeStatus, OrderIncidentType, OrderItemStatus, OrderPenaltyType, OrderStatus, OrderType, ParseError, PayoutKnownBank, PeriodKey, Platform, RefundStatus, ServerErrorEnum, TokenType, VerificationTokenType, VisibilityToTypeMap, WalletTransactionReason, WalletTransactionType };
package/dist/index.js CHANGED
@@ -185,6 +185,12 @@ var OrderPenaltyType = /* @__PURE__ */ ((OrderPenaltyType2) => {
185
185
  OrderPenaltyType2["SEVERE_STRUCTURAL"] = "SEVERE_STRUCTURAL";
186
186
  return OrderPenaltyType2;
187
187
  })(OrderPenaltyType || {});
188
+ var OrderChargeStatus = /* @__PURE__ */ ((OrderChargeStatus2) => {
189
+ OrderChargeStatus2[OrderChargeStatus2["NOT_ASSESSED"] = 0] = "NOT_ASSESSED";
190
+ OrderChargeStatus2[OrderChargeStatus2["PENDING"] = 1] = "PENDING";
191
+ OrderChargeStatus2[OrderChargeStatus2["SETTLED"] = 2] = "SETTLED";
192
+ return OrderChargeStatus2;
193
+ })(OrderChargeStatus || {});
188
194
 
189
195
  // src/enums/rating.enum.ts
190
196
  var MaturityRating = /* @__PURE__ */ ((MaturityRating2) => {
@@ -323,6 +329,7 @@ export {
323
329
  IncidentResolution,
324
330
  MaturityRating,
325
331
  MembershipTier,
332
+ OrderChargeStatus,
326
333
  OrderIncidentType,
327
334
  OrderItemStatus,
328
335
  OrderPenaltyType,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lokiengineering/loki-common-node",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "Shared TypeScript enums and types for Loki services",
5
5
  "license": "MIT",
6
6
  "repository": {