@spiffcommerce/core 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/main.js +13 -9
- package/dist/module.js +8 -4
- package/dist/types.d.ts +2 -1
- package/package.json +1 -1
package/dist/module.js
CHANGED
|
@@ -177,7 +177,8 @@ import{CommandContext as A,AssetType as t,BringForwardCommand as e,BringToFrontC
|
|
|
177
177
|
id
|
|
178
178
|
name
|
|
179
179
|
locations
|
|
180
|
-
requestedData
|
|
180
|
+
requestedData
|
|
181
|
+
requestedDataItems {
|
|
181
182
|
type
|
|
182
183
|
mandatory
|
|
183
184
|
}
|
|
@@ -254,7 +255,8 @@ import{CommandContext as A,AssetType as t,BringForwardCommand as e,BringToFrontC
|
|
|
254
255
|
id
|
|
255
256
|
name
|
|
256
257
|
locations
|
|
257
|
-
requestedData
|
|
258
|
+
requestedData
|
|
259
|
+
requestedDataItems {
|
|
258
260
|
type
|
|
259
261
|
mandatory
|
|
260
262
|
}
|
|
@@ -334,7 +336,8 @@ import{CommandContext as A,AssetType as t,BringForwardCommand as e,BringToFrontC
|
|
|
334
336
|
id
|
|
335
337
|
name
|
|
336
338
|
locations
|
|
337
|
-
requestedData
|
|
339
|
+
requestedData
|
|
340
|
+
requestedDataItems {
|
|
338
341
|
type
|
|
339
342
|
mandatory
|
|
340
343
|
}
|
|
@@ -392,7 +395,8 @@ import{CommandContext as A,AssetType as t,BringForwardCommand as e,BringToFrontC
|
|
|
392
395
|
id
|
|
393
396
|
name
|
|
394
397
|
locations
|
|
395
|
-
requestedData
|
|
398
|
+
requestedData
|
|
399
|
+
requestedDataItems {
|
|
396
400
|
type
|
|
397
401
|
mandatory
|
|
398
402
|
}
|
package/dist/types.d.ts
CHANGED
|
@@ -957,7 +957,8 @@ export interface ConversionConfiguration {
|
|
|
957
957
|
id: string;
|
|
958
958
|
name?: string;
|
|
959
959
|
locations: ConversionLocation[];
|
|
960
|
-
requestedData:
|
|
960
|
+
requestedData: ConversionDataType[];
|
|
961
|
+
requestedDataItems: ConversionData[];
|
|
961
962
|
mandatory?: boolean;
|
|
962
963
|
}
|
|
963
964
|
/**
|