@contrail/flexplm 1.1.27 → 1.1.28
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.
|
@@ -156,8 +156,8 @@ class BaseEntityProcessor {
|
|
|
156
156
|
const flexPayload = flexResponse?.results?.data?.payload[0];
|
|
157
157
|
if (flexPayload) {
|
|
158
158
|
const inboundData = await this.getTransformedData(flexPayload);
|
|
159
|
-
const
|
|
160
|
-
flexResponse['
|
|
159
|
+
const outboundEntityUpdates = await this.getUpdatesForEntity(event.newData, inboundData);
|
|
160
|
+
flexResponse['outboundEntityUpdates'] = outboundEntityUpdates;
|
|
161
161
|
}
|
|
162
162
|
return flexResponse;
|
|
163
163
|
}
|
package/package.json
CHANGED
|
@@ -202,8 +202,8 @@ export abstract class BaseEntityProcessor {
|
|
|
202
202
|
const flexPayload = flexResponse?.results?.data?.payload[0];
|
|
203
203
|
if(flexPayload) {
|
|
204
204
|
const inboundData = await this.getTransformedData(flexPayload);
|
|
205
|
-
const
|
|
206
|
-
flexResponse['
|
|
205
|
+
const outboundEntityUpdates = await this.getUpdatesForEntity(event.newData, inboundData)
|
|
206
|
+
flexResponse['outboundEntityUpdates'] = outboundEntityUpdates;
|
|
207
207
|
}
|
|
208
208
|
|
|
209
209
|
return flexResponse;
|