@spiffcommerce/core 34.1.0-beta.7a56a636-d7cf-54ee-8dfc-5407b655bd46 → 34.1.0-beta.ad8ae86e-9b1c-5fbd-bd4b-f385c5bfbb76
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/index.d.ts +0 -9
- package/dist/index.js +104 -105
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1095,10 +1095,6 @@ interface WorkflowExperience {
|
|
|
1095
1095
|
* Get the bundle this experience is part of. May be undefined.
|
|
1096
1096
|
*/
|
|
1097
1097
|
getBundle(): Bundle$1 | undefined;
|
|
1098
|
-
/**
|
|
1099
|
-
* The index of this transaction against its bundle, if part of one.
|
|
1100
|
-
*/
|
|
1101
|
-
getBundleIndex(): number | undefined;
|
|
1102
1098
|
/**
|
|
1103
1099
|
* Set the bundle this experience is part of. Can be cleared using undefined.
|
|
1104
1100
|
*/
|
|
@@ -1346,7 +1342,6 @@ declare class WorkflowExperienceImpl implements WorkflowExperience {
|
|
|
1346
1342
|
attachAddress(streetAddress?: string, apartment?: string, city?: string, country?: string, state?: string, postCode?: string): Promise<void>;
|
|
1347
1343
|
attachOrganization(name: string): Promise<void>;
|
|
1348
1344
|
getBundle(): Bundle$1 | undefined;
|
|
1349
|
-
getBundleIndex(): number | undefined;
|
|
1350
1345
|
setBundle(bundle: Bundle$1): void;
|
|
1351
1346
|
getClient(): SpiffCommerceClient;
|
|
1352
1347
|
getIsReadOnly(): boolean;
|
|
@@ -3774,10 +3769,6 @@ interface Transaction {
|
|
|
3774
3769
|
* modifying state of the transaction.
|
|
3775
3770
|
*/
|
|
3776
3771
|
id: string;
|
|
3777
|
-
/**
|
|
3778
|
-
* The index of this transaction against its bundle, if part of one.
|
|
3779
|
-
*/
|
|
3780
|
-
bundleIndex?: number;
|
|
3781
3772
|
/**
|
|
3782
3773
|
* User-supplied name for the associated design.
|
|
3783
3774
|
*/
|