@lokiengineering/loki-common-node 1.1.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 +14 -1
- package/dist/index.js +17 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -150,6 +150,19 @@ declare enum DeliveryStatus {
|
|
|
150
150
|
DISPATCHED = "dispatched",
|
|
151
151
|
DELIVERED = "delivered"
|
|
152
152
|
}
|
|
153
|
+
declare enum OrderPenaltyType {
|
|
154
|
+
LIGHT_SCRATCH = "LIGHT_SCRATCH",// Radial scratches, minor scuffs
|
|
155
|
+
DEEP_SCRATCH = "DEEP_SCRATCH",// Circular scratches, deep gouges
|
|
156
|
+
CASING_DAMAGE = "CASING_DAMAGE",// Cracked plastic, broken teeth
|
|
157
|
+
MISSING_COMPONENT = "MISSING_COMPONENT",// Manuals, inlays, or maps
|
|
158
|
+
LIQUID_DAMAGE = "LIQUID_DAMAGE",// Soda, grease, vape residue
|
|
159
|
+
SEVERE_STRUCTURAL = "SEVERE_STRUCTURAL"
|
|
160
|
+
}
|
|
161
|
+
declare enum OrderChargeStatus {
|
|
162
|
+
NOT_ASSESSED = 0,
|
|
163
|
+
PENDING = 1,
|
|
164
|
+
SETTLED = 2
|
|
165
|
+
}
|
|
153
166
|
|
|
154
167
|
declare enum MaturityRating {
|
|
155
168
|
EVERYONE = "Everyone",
|
|
@@ -254,4 +267,4 @@ declare enum PayoutKnownBank {
|
|
|
254
267
|
MANDIRI = "mandiri"
|
|
255
268
|
}
|
|
256
269
|
|
|
257
|
-
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, 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
|
@@ -176,6 +176,21 @@ var DeliveryStatus = /* @__PURE__ */ ((DeliveryStatus2) => {
|
|
|
176
176
|
DeliveryStatus2["DELIVERED"] = "delivered";
|
|
177
177
|
return DeliveryStatus2;
|
|
178
178
|
})(DeliveryStatus || {});
|
|
179
|
+
var OrderPenaltyType = /* @__PURE__ */ ((OrderPenaltyType2) => {
|
|
180
|
+
OrderPenaltyType2["LIGHT_SCRATCH"] = "LIGHT_SCRATCH";
|
|
181
|
+
OrderPenaltyType2["DEEP_SCRATCH"] = "DEEP_SCRATCH";
|
|
182
|
+
OrderPenaltyType2["CASING_DAMAGE"] = "CASING_DAMAGE";
|
|
183
|
+
OrderPenaltyType2["MISSING_COMPONENT"] = "MISSING_COMPONENT";
|
|
184
|
+
OrderPenaltyType2["LIQUID_DAMAGE"] = "LIQUID_DAMAGE";
|
|
185
|
+
OrderPenaltyType2["SEVERE_STRUCTURAL"] = "SEVERE_STRUCTURAL";
|
|
186
|
+
return OrderPenaltyType2;
|
|
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 || {});
|
|
179
194
|
|
|
180
195
|
// src/enums/rating.enum.ts
|
|
181
196
|
var MaturityRating = /* @__PURE__ */ ((MaturityRating2) => {
|
|
@@ -314,8 +329,10 @@ export {
|
|
|
314
329
|
IncidentResolution,
|
|
315
330
|
MaturityRating,
|
|
316
331
|
MembershipTier,
|
|
332
|
+
OrderChargeStatus,
|
|
317
333
|
OrderIncidentType,
|
|
318
334
|
OrderItemStatus,
|
|
335
|
+
OrderPenaltyType,
|
|
319
336
|
OrderStatus,
|
|
320
337
|
OrderType,
|
|
321
338
|
ParseError,
|