@spiffcommerce/core 26.23.4 → 26.24.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/CHANGELOG.md +10 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +72 -51
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +191 -170
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,16 @@ 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
|
+
## [26.24.0] - 12-05-2025
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- The functions `getIntegrationProductById` and `getIntegrationProductFromExternalIds` now accept an additional boolean parameter that allows you to fetch all of the linked integration products on the product you have requested.
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- The `duplicateBundle` call no longer fails due to missing GraphQl fragments.
|
|
26
|
+
|
|
17
27
|
## [26.23.2] - 16-04-2025
|
|
18
28
|
|
|
19
29
|
### Fixed
|
package/dist/index.d.ts
CHANGED
|
@@ -2373,8 +2373,8 @@ declare class SpiffCommerceClient {
|
|
|
2373
2373
|
*/
|
|
2374
2374
|
private updateTransactionState;
|
|
2375
2375
|
storeCustomer(customer: Customer): void;
|
|
2376
|
-
getIntegrationProductById(integrationProductId: string): Promise<IntegrationProduct>;
|
|
2377
|
-
getIntegrationProductFromExternalIds(externalIntegrationId: string, externalProductId: string): Promise<IntegrationProduct>;
|
|
2376
|
+
getIntegrationProductById(integrationProductId: string, fetchIntegrationsOnProduct?: boolean): Promise<IntegrationProduct>;
|
|
2377
|
+
getIntegrationProductFromExternalIds(externalIntegrationId: string, externalProductId: string, fetchIntegrationsOnProduct?: boolean): Promise<IntegrationProduct>;
|
|
2378
2378
|
getIntegrationProduct(options: Extendable<{
|
|
2379
2379
|
type: "integration";
|
|
2380
2380
|
integrationProductId: string;
|