@spiffcommerce/core 0.6.0 → 0.6.2
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 +9 -9
- package/dist/module.js +9 -9
- package/dist/types.d.ts +4 -0
- package/package.json +3 -11
package/dist/types.d.ts
CHANGED
|
@@ -511,6 +511,10 @@ export interface DesignCreationMessage {
|
|
|
511
511
|
*/
|
|
512
512
|
export interface Transaction {
|
|
513
513
|
id: string;
|
|
514
|
+
/**
|
|
515
|
+
* User-supplied name for the associated design.
|
|
516
|
+
*/
|
|
517
|
+
designName?: string;
|
|
514
518
|
bulk?: boolean;
|
|
515
519
|
/**
|
|
516
520
|
* The workflow associated with this transaction.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spiffcommerce/core",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "Core client API for interacting with the Spiff Commerce backend.",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -15,18 +15,10 @@
|
|
|
15
15
|
},
|
|
16
16
|
"targets": {
|
|
17
17
|
"main": {
|
|
18
|
-
"optimize": true
|
|
19
|
-
"includeNodeModules": [
|
|
20
|
-
"spiff-preview",
|
|
21
|
-
"papyrus"
|
|
22
|
-
]
|
|
18
|
+
"optimize": true
|
|
23
19
|
},
|
|
24
20
|
"module": {
|
|
25
|
-
"optimize": true
|
|
26
|
-
"includeNodeModules": [
|
|
27
|
-
"spiff-preview",
|
|
28
|
-
"papyrus"
|
|
29
|
-
]
|
|
21
|
+
"optimize": true
|
|
30
22
|
}
|
|
31
23
|
},
|
|
32
24
|
"keywords": [
|