trade-safety 1.2.0 → 1.4.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.
@@ -5,6 +5,7 @@ declare const tradeSafetyCheckResponseSchema: z.ZodObject<{
5
5
  user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6
6
  input_text: z.ZodString;
7
7
  llm_analysis: z.ZodObject<{
8
+ ai_summary: z.ZodString;
8
9
  translation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
10
  nuance_explanation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
11
  risk_signals: z.ZodArray<z.ZodObject<{
@@ -84,11 +85,12 @@ declare const tradeSafetyCheckResponseSchema: z.ZodObject<{
84
85
  offered_price?: number | null | undefined;
85
86
  }>;
86
87
  safety_checklist: z.ZodArray<z.ZodString, "many">;
87
- risk_score: z.ZodNumber;
88
+ safe_score: z.ZodNumber;
88
89
  recommendation: z.ZodString;
89
90
  emotional_support: z.ZodString;
90
91
  }, "strip", z.ZodTypeAny, {
91
92
  recommendation: string;
93
+ ai_summary: string;
92
94
  risk_signals: {
93
95
  title: string;
94
96
  category: "payment" | "seller" | "platform" | "price" | "content";
@@ -118,12 +120,13 @@ declare const tradeSafetyCheckResponseSchema: z.ZodObject<{
118
120
  offered_price?: number | null | undefined;
119
121
  };
120
122
  safety_checklist: string[];
121
- risk_score: number;
123
+ safe_score: number;
122
124
  emotional_support: string;
123
125
  translation?: string | null | undefined;
124
126
  nuance_explanation?: string | null | undefined;
125
127
  }, {
126
128
  recommendation: string;
129
+ ai_summary: string;
127
130
  risk_signals: {
128
131
  title: string;
129
132
  category: "payment" | "seller" | "platform" | "price" | "content";
@@ -153,12 +156,12 @@ declare const tradeSafetyCheckResponseSchema: z.ZodObject<{
153
156
  offered_price?: number | null | undefined;
154
157
  };
155
158
  safety_checklist: string[];
156
- risk_score: number;
159
+ safe_score: number;
157
160
  emotional_support: string;
158
161
  translation?: string | null | undefined;
159
162
  nuance_explanation?: string | null | undefined;
160
163
  }>;
161
- risk_score: z.ZodNumber;
164
+ safe_score: z.ZodNumber;
162
165
  expert_advice: z.ZodOptional<z.ZodNullable<z.ZodString>>;
163
166
  expert_reviewed: z.ZodBoolean;
164
167
  expert_reviewed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -167,10 +170,11 @@ declare const tradeSafetyCheckResponseSchema: z.ZodObject<{
167
170
  updated_at: z.ZodString;
168
171
  }, "strip", z.ZodTypeAny, {
169
172
  id: string;
170
- risk_score: number;
173
+ safe_score: number;
171
174
  input_text: string;
172
175
  llm_analysis: {
173
176
  recommendation: string;
177
+ ai_summary: string;
174
178
  risk_signals: {
175
179
  title: string;
176
180
  category: "payment" | "seller" | "platform" | "price" | "content";
@@ -200,7 +204,7 @@ declare const tradeSafetyCheckResponseSchema: z.ZodObject<{
200
204
  offered_price?: number | null | undefined;
201
205
  };
202
206
  safety_checklist: string[];
203
- risk_score: number;
207
+ safe_score: number;
204
208
  emotional_support: string;
205
209
  translation?: string | null | undefined;
206
210
  nuance_explanation?: string | null | undefined;
@@ -214,10 +218,11 @@ declare const tradeSafetyCheckResponseSchema: z.ZodObject<{
214
218
  expert_reviewed_by?: string | null | undefined;
215
219
  }, {
216
220
  id: string;
217
- risk_score: number;
221
+ safe_score: number;
218
222
  input_text: string;
219
223
  llm_analysis: {
220
224
  recommendation: string;
225
+ ai_summary: string;
221
226
  risk_signals: {
222
227
  title: string;
223
228
  category: "payment" | "seller" | "platform" | "price" | "content";
@@ -247,7 +252,7 @@ declare const tradeSafetyCheckResponseSchema: z.ZodObject<{
247
252
  offered_price?: number | null | undefined;
248
253
  };
249
254
  safety_checklist: string[];
250
- risk_score: number;
255
+ safe_score: number;
251
256
  emotional_support: string;
252
257
  translation?: string | null | undefined;
253
258
  nuance_explanation?: string | null | undefined;
@@ -260,24 +265,15 @@ declare const tradeSafetyCheckResponseSchema: z.ZodObject<{
260
265
  expert_reviewed_at?: string | null | undefined;
261
266
  expert_reviewed_by?: string | null | undefined;
262
267
  }>;
263
- export type TradeSafetyCheckFullResponse = z.infer<typeof tradeSafetyCheckResponseSchema>;
264
- export interface QuickCheckRepositoryResponse {
265
- id: string;
266
- quick_summary: {
267
- risk_signals_count: number;
268
- cautions_count: number;
269
- safe_indicators_count: number;
270
- };
271
- signup_required: true;
272
- }
273
- export type TradeSafetyCheckRepositoryResponse = TradeSafetyCheckFullResponse | QuickCheckRepositoryResponse;
268
+ export type TradeSafetyCheckRepositoryResponse = z.infer<typeof tradeSafetyCheckResponseSchema>;
274
269
  export declare class TradeSafetyRepository extends BaseCrudRepository<TradeSafetyCheckRepositoryResponse> {
275
270
  readonly resource = "trade-safety";
276
- protected getDataSchema(): z.ZodUnion<[z.ZodObject<{
271
+ protected getDataSchema(): z.ZodObject<{
277
272
  id: z.ZodString;
278
273
  user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
279
274
  input_text: z.ZodString;
280
275
  llm_analysis: z.ZodObject<{
276
+ ai_summary: z.ZodString;
281
277
  translation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
282
278
  nuance_explanation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
283
279
  risk_signals: z.ZodArray<z.ZodObject<{
@@ -357,11 +353,12 @@ export declare class TradeSafetyRepository extends BaseCrudRepository<TradeSafet
357
353
  offered_price?: number | null | undefined;
358
354
  }>;
359
355
  safety_checklist: z.ZodArray<z.ZodString, "many">;
360
- risk_score: z.ZodNumber;
356
+ safe_score: z.ZodNumber;
361
357
  recommendation: z.ZodString;
362
358
  emotional_support: z.ZodString;
363
359
  }, "strip", z.ZodTypeAny, {
364
360
  recommendation: string;
361
+ ai_summary: string;
365
362
  risk_signals: {
366
363
  title: string;
367
364
  category: "payment" | "seller" | "platform" | "price" | "content";
@@ -391,12 +388,13 @@ export declare class TradeSafetyRepository extends BaseCrudRepository<TradeSafet
391
388
  offered_price?: number | null | undefined;
392
389
  };
393
390
  safety_checklist: string[];
394
- risk_score: number;
391
+ safe_score: number;
395
392
  emotional_support: string;
396
393
  translation?: string | null | undefined;
397
394
  nuance_explanation?: string | null | undefined;
398
395
  }, {
399
396
  recommendation: string;
397
+ ai_summary: string;
400
398
  risk_signals: {
401
399
  title: string;
402
400
  category: "payment" | "seller" | "platform" | "price" | "content";
@@ -426,12 +424,12 @@ export declare class TradeSafetyRepository extends BaseCrudRepository<TradeSafet
426
424
  offered_price?: number | null | undefined;
427
425
  };
428
426
  safety_checklist: string[];
429
- risk_score: number;
427
+ safe_score: number;
430
428
  emotional_support: string;
431
429
  translation?: string | null | undefined;
432
430
  nuance_explanation?: string | null | undefined;
433
431
  }>;
434
- risk_score: z.ZodNumber;
432
+ safe_score: z.ZodNumber;
435
433
  expert_advice: z.ZodOptional<z.ZodNullable<z.ZodString>>;
436
434
  expert_reviewed: z.ZodBoolean;
437
435
  expert_reviewed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -440,10 +438,11 @@ export declare class TradeSafetyRepository extends BaseCrudRepository<TradeSafet
440
438
  updated_at: z.ZodString;
441
439
  }, "strip", z.ZodTypeAny, {
442
440
  id: string;
443
- risk_score: number;
441
+ safe_score: number;
444
442
  input_text: string;
445
443
  llm_analysis: {
446
444
  recommendation: string;
445
+ ai_summary: string;
447
446
  risk_signals: {
448
447
  title: string;
449
448
  category: "payment" | "seller" | "platform" | "price" | "content";
@@ -473,7 +472,7 @@ export declare class TradeSafetyRepository extends BaseCrudRepository<TradeSafet
473
472
  offered_price?: number | null | undefined;
474
473
  };
475
474
  safety_checklist: string[];
476
- risk_score: number;
475
+ safe_score: number;
477
476
  emotional_support: string;
478
477
  translation?: string | null | undefined;
479
478
  nuance_explanation?: string | null | undefined;
@@ -487,10 +486,11 @@ export declare class TradeSafetyRepository extends BaseCrudRepository<TradeSafet
487
486
  expert_reviewed_by?: string | null | undefined;
488
487
  }, {
489
488
  id: string;
490
- risk_score: number;
489
+ safe_score: number;
491
490
  input_text: string;
492
491
  llm_analysis: {
493
492
  recommendation: string;
493
+ ai_summary: string;
494
494
  risk_signals: {
495
495
  title: string;
496
496
  category: "payment" | "seller" | "platform" | "price" | "content";
@@ -520,7 +520,7 @@ export declare class TradeSafetyRepository extends BaseCrudRepository<TradeSafet
520
520
  offered_price?: number | null | undefined;
521
521
  };
522
522
  safety_checklist: string[];
523
- risk_score: number;
523
+ safe_score: number;
524
524
  emotional_support: string;
525
525
  translation?: string | null | undefined;
526
526
  nuance_explanation?: string | null | undefined;
@@ -532,39 +532,7 @@ export declare class TradeSafetyRepository extends BaseCrudRepository<TradeSafet
532
532
  expert_advice?: string | null | undefined;
533
533
  expert_reviewed_at?: string | null | undefined;
534
534
  expert_reviewed_by?: string | null | undefined;
535
- }>, z.ZodObject<{
536
- id: z.ZodString;
537
- quick_summary: z.ZodObject<{
538
- risk_signals_count: z.ZodNumber;
539
- cautions_count: z.ZodNumber;
540
- safe_indicators_count: z.ZodNumber;
541
- }, "strip", z.ZodTypeAny, {
542
- risk_signals_count: number;
543
- cautions_count: number;
544
- safe_indicators_count: number;
545
- }, {
546
- risk_signals_count: number;
547
- cautions_count: number;
548
- safe_indicators_count: number;
549
- }>;
550
- signup_required: z.ZodLiteral<true>;
551
- }, "strip", z.ZodTypeAny, {
552
- id: string;
553
- quick_summary: {
554
- risk_signals_count: number;
555
- cautions_count: number;
556
- safe_indicators_count: number;
557
- };
558
- signup_required: true;
559
- }, {
560
- id: string;
561
- quick_summary: {
562
- risk_signals_count: number;
563
- cautions_count: number;
564
- safe_indicators_count: number;
565
- };
566
- signup_required: true;
567
- }>]>;
535
+ }>;
568
536
  }
569
537
  export {};
570
538
  //# sourceMappingURL=TradeSafetyRepository.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TradeSafetyRepository.d.ts","sourceRoot":"","sources":["../../src/repositories/TradeSafetyRepository.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAsCxB,QAAA,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYlC,CAAC;AAGH,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,8BAA8B,CACtC,CAAC;AAGF,MAAM,WAAW,4BAA4B;IAC3C,EAAE,EAAE,MAAM,CAAC;IACX,aAAa,EAAE;QACb,kBAAkB,EAAE,MAAM,CAAC;QAC3B,cAAc,EAAE,MAAM,CAAC;QACvB,qBAAqB,EAAE,MAAM,CAAC;KAC/B,CAAC;IACF,eAAe,EAAE,IAAI,CAAC;CACvB;AAGD,MAAM,MAAM,kCAAkC,GAC1C,4BAA4B,GAC5B,4BAA4B,CAAC;AAYjC,qBAAa,qBAAsB,SAAQ,kBAAkB,CAAC,kCAAkC,CAAC;IAC/F,QAAQ,CAAC,QAAQ,kBAAkB;IAEnC,SAAS,CAAC,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGxB"}
1
+ {"version":3,"file":"TradeSafetyRepository.d.ts","sourceRoot":"","sources":["../../src/repositories/TradeSafetyRepository.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAiCxB,QAAA,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYlC,CAAC;AAGH,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,KAAK,CACtD,OAAO,8BAA8B,CACtC,CAAC;AAEF,qBAAa,qBAAsB,SAAQ,kBAAkB,CAAC,kCAAkC,CAAC;IAC/F,QAAQ,CAAC,QAAQ,kBAAkB;IAEnC,SAAS,CAAC,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGxB"}
package/dist/types.d.ts CHANGED
@@ -1,12 +1,9 @@
1
1
  export type RiskSeverity = "high" | "medium" | "low";
2
2
  export type RiskCategory = "payment" | "seller" | "platform" | "price" | "content";
3
- /**
4
- * Risk score thresholds for Trade Safety checks
5
- * Used consistently across Public and Admin interfaces
6
- */
7
- export declare const RISK_SCORE_THRESHOLDS: {
8
- readonly high: 70;
9
- readonly medium: 40;
3
+ export type SafetyLevel = "safe" | "caution" | "danger";
4
+ export declare const SAFETY_SCORE_THRESHOLDS: {
5
+ readonly safe: 70;
6
+ readonly caution: 40;
10
7
  };
11
8
  export interface TradeSafetyCheckRequest {
12
9
  input_text: string;
@@ -26,6 +23,7 @@ export interface PriceAnalysis {
26
23
  warnings: string[];
27
24
  }
28
25
  export interface TradeSafetyAnalysis {
26
+ ai_summary: string;
29
27
  translation?: string | null;
30
28
  nuance_explanation?: string | null;
31
29
  risk_signals: RiskSignal[];
@@ -33,7 +31,7 @@ export interface TradeSafetyAnalysis {
33
31
  safe_indicators: RiskSignal[];
34
32
  price_analysis: PriceAnalysis;
35
33
  safety_checklist: string[];
36
- risk_score: number;
34
+ safe_score: number;
37
35
  recommendation: string;
38
36
  emotional_support: string;
39
37
  }
@@ -47,7 +45,7 @@ export interface TradeSafetyCheckResponse {
47
45
  user_id?: string | null;
48
46
  input_text: string;
49
47
  llm_analysis: TradeSafetyAnalysis;
50
- risk_score: number;
48
+ safe_score: number;
51
49
  expert_advice?: string | null;
52
50
  expert_reviewed: boolean;
53
51
  expert_reviewed_at?: string | null;
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GAAG,MAAM,GAAG,QAAQ,GAAG,KAAK,CAAC;AACrD,MAAM,MAAM,YAAY,GACpB,SAAS,GACT,QAAQ,GACR,UAAU,GACV,OAAO,GACP,SAAS,CAAC;AAEd;;;GAGG;AACH,eAAO,MAAM,qBAAqB;;;CAIxB,CAAC;AAEX,MAAM,WAAW,uBAAuB;IACtC,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,UAAU;IACzB,QAAQ,EAAE,YAAY,CAAC;IACvB,QAAQ,EAAE,YAAY,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,aAAa;IAC5B,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IACzB,QAAQ,EAAE,MAAM,EAAE,CAAC;CACpB;AAED,MAAM,WAAW,mBAAmB;IAClC,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,YAAY,EAAE,UAAU,EAAE,CAAC;IAC3B,QAAQ,EAAE,UAAU,EAAE,CAAC;IACvB,eAAe,EAAE,UAAU,EAAE,CAAC;IAC9B,cAAc,EAAE,aAAa,CAAC;IAC9B,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAC3B,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IACvB,iBAAiB,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,YAAY;IAC3B,kBAAkB,EAAE,MAAM,CAAC;IAC3B,cAAc,EAAE,MAAM,CAAC;IACvB,qBAAqB,EAAE,MAAM,CAAC;CAC/B;AAED,MAAM,WAAW,wBAAwB;IACvC,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,mBAAmB,CAAC;IAClC,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,eAAe,EAAE,OAAO,CAAC;IACzB,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,kBAAkB;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,aAAa,EAAE,YAAY,CAAC;IAC5B,eAAe,EAAE,IAAI,CAAC;CACvB;AAED,MAAM,WAAW,uBAAuB;IACtC,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,eAAe,EAAE,OAAO,CAAC;CAC1B"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GAAG,MAAM,GAAG,QAAQ,GAAG,KAAK,CAAC;AACrD,MAAM,MAAM,YAAY,GACpB,SAAS,GACT,QAAQ,GACR,UAAU,GACV,OAAO,GACP,SAAS,CAAC;AAEd,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,SAAS,GAAG,QAAQ,CAAC;AAExD,eAAO,MAAM,uBAAuB;;;CAG1B,CAAC;AAEX,MAAM,WAAW,uBAAuB;IACtC,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,UAAU;IACzB,QAAQ,EAAE,YAAY,CAAC;IACvB,QAAQ,EAAE,YAAY,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,aAAa;IAC5B,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IACzB,QAAQ,EAAE,MAAM,EAAE,CAAC;CACpB;AAED,MAAM,WAAW,mBAAmB;IAClC,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,YAAY,EAAE,UAAU,EAAE,CAAC;IAC3B,QAAQ,EAAE,UAAU,EAAE,CAAC;IACvB,eAAe,EAAE,UAAU,EAAE,CAAC;IAC9B,cAAc,EAAE,aAAa,CAAC;IAC9B,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAC3B,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IACvB,iBAAiB,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,YAAY;IAC3B,kBAAkB,EAAE,MAAM,CAAC;IAC3B,cAAc,EAAE,MAAM,CAAC;IACvB,qBAAqB,EAAE,MAAM,CAAC;CAC/B;AAED,MAAM,WAAW,wBAAwB;IACvC,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,mBAAmB,CAAC;IAClC,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,eAAe,EAAE,OAAO,CAAC;IACzB,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,kBAAkB;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,aAAa,EAAE,YAAY,CAAC;IAC5B,eAAe,EAAE,IAAI,CAAC;CACvB;AAED,MAAM,WAAW,uBAAuB;IACtC,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,eAAe,EAAE,OAAO,CAAC;CAC1B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trade-safety",
3
- "version": "1.2.0",
3
+ "version": "1.4.0",
4
4
  "description": "React components for Trade Safety - K-pop merchandise trade safety analysis",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -70,6 +70,7 @@
70
70
  "i18next": "^23.11.4",
71
71
  "i18next-resources-to-backend": "^1.2.1",
72
72
  "react-i18next": "^14.1.1",
73
+ "react-icons": "^5.5.0",
73
74
  "zod": "^3.23.8"
74
75
  },
75
76
  "devDependencies": {