@spiffcommerce/core 33.11.0 → 33.13.0-beta.442ca23a-1a46-521c-9410-a29cf07ceee6
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/CHANGELOG.md +12 -0
- package/dist/index.d.ts +6 -1
- package/dist/index.js +155 -233
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2599 -2672
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
14
|
- `Fixed` for any bug fixes.
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
|
+
## [33.13.0] - 10-11-2025
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- Added `prevalidated` argument to `updateRecipient` methods for addresses that have already been validated by external means.
|
|
22
|
+
|
|
23
|
+
## [33.12.0] - 10-11-2025
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
|
|
27
|
+
- Further improved performance of loading large Bundles and creating/loading large amounts of Transactions.
|
|
28
|
+
|
|
17
29
|
## [33.11.0] - 07-11-2025
|
|
18
30
|
|
|
19
31
|
### Added
|
package/dist/index.d.ts
CHANGED
|
@@ -2812,7 +2812,7 @@ interface WorkflowManager {
|
|
|
2812
2812
|
/**
|
|
2813
2813
|
* Create or amend the recipient fo the transaction.
|
|
2814
2814
|
*/
|
|
2815
|
-
updateRecipient(firstName?: string, lastName?: string, address?: string, suburb?: string, state?: string, email?: string, postalCode?: string, country?: string, mobile?: string, company?: string, apartment?: string, customField1?: string, customField2?: string, customField3?: string, customField4?: string, customField5?: string, conversionConfigurationId?: string): Promise<void>;
|
|
2815
|
+
updateRecipient(firstName?: string, lastName?: string, address?: string, suburb?: string, state?: string, email?: string, postalCode?: string, country?: string, mobile?: string, company?: string, apartment?: string, customField1?: string, customField2?: string, customField3?: string, customField4?: string, customField5?: string, conversionConfigurationId?: string, prevalidated?: boolean): Promise<void>;
|
|
2816
2816
|
/**
|
|
2817
2817
|
* Returns the context object used for text templating.
|
|
2818
2818
|
*/
|
|
@@ -3808,6 +3808,10 @@ interface Transaction {
|
|
|
3808
3808
|
* The integration product related to this lineitem.
|
|
3809
3809
|
*/
|
|
3810
3810
|
integrationProduct?: IntegrationProductResource;
|
|
3811
|
+
/**
|
|
3812
|
+
* The ID of the integration product that this transaction belongs to.
|
|
3813
|
+
*/
|
|
3814
|
+
integrationProductId?: string;
|
|
3811
3815
|
/**
|
|
3812
3816
|
* Whether this transaction has previously been ordered.
|
|
3813
3817
|
*/
|
|
@@ -4314,6 +4318,7 @@ interface Bundle {
|
|
|
4314
4318
|
partner?: Partner;
|
|
4315
4319
|
productCollection?: ProductCollectionResource;
|
|
4316
4320
|
transactions?: Transaction[];
|
|
4321
|
+
transactionIds?: string[];
|
|
4317
4322
|
template?: boolean;
|
|
4318
4323
|
templateStatus?: BundleTemplateStatus;
|
|
4319
4324
|
bundleShareActions?: ShareAction[];
|