truflow 0.0.178 → 0.0.179

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.
@@ -0,0 +1,11 @@
1
+ export interface IQualityControlNotification {
2
+ _id?: string;
3
+ productId: string;
4
+ attributeName: string;
5
+ operator: string;
6
+ values: (string | number)[];
7
+ notificationType: string;
8
+ message: string;
9
+ createdBy?: string;
10
+ createdAt?: string;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "truflow",
3
- "version": "0.0.178",
3
+ "version": "0.0.179",
4
4
  "main": "./dist/index.js",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -0,0 +1,11 @@
1
+ export interface IQualityControlNotification {
2
+ _id?: string;
3
+ productId: string;
4
+ attributeName: string; // Use attributeName instead of attributeId
5
+ operator: string; // e.g., 'eq', 'ne', 'gt', 'lt', 'in', etc.
6
+ values: (string | number)[];
7
+ notificationType: string; // e.g., 'in-app', 'email', etc.
8
+ message: string;
9
+ createdBy?: string;
10
+ createdAt?: string;
11
+ }