truflow 0.0.188 → 0.0.189

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.
@@ -71,7 +71,7 @@ export interface IInventoryItem {
71
71
  type: string | IInventoryType;
72
72
  location?: string | ILocation;
73
73
  fields: Map<string, any>;
74
- tags: string[];
74
+ tag: string;
75
75
  history: IHistoryEntry[];
76
76
  createdAt: Date;
77
77
  updatedAt: Date;
@@ -104,7 +104,7 @@ export interface IInventoryItemResponse {
104
104
  fields: {
105
105
  [key: string]: any;
106
106
  };
107
- tags: string[];
107
+ tag: string;
108
108
  history: {
109
109
  date: Date;
110
110
  action: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "truflow",
3
- "version": "0.0.188",
3
+ "version": "0.0.189",
4
4
  "main": "./dist/index.js",
5
5
  "license": "MIT",
6
6
  "scripts": {
package/src/IInventory.ts CHANGED
@@ -56,7 +56,7 @@ export interface IInventoryItem {
56
56
  type: string | IInventoryType;
57
57
  location?: string | ILocation;
58
58
  fields: Map<string, any>;
59
- tags: string[];
59
+ tag: string;
60
60
  history: IHistoryEntry[];
61
61
  createdAt: Date;
62
62
  updatedAt: Date;
@@ -100,7 +100,7 @@ export interface IInventoryItemResponse {
100
100
  fields: {
101
101
  [key: string]: any;
102
102
  }; // Converted from Map to plain object
103
- tags: string[];
103
+ tag: string;
104
104
  history: {
105
105
  date: Date;
106
106
  action: string;