@spiffcommerce/core 26.20.0 → 26.21.0-beta.42b9cd00-4ce1-5564-9951-337d0077061c
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 +6 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +18 -24
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +305 -304
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,12 @@ 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.21.0] - 01-04-2025
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- The `getQuoteCompleteMessage` method on bundles. Pass the return value of this method to Theme Bridge's `SpiffThemeLoader.completeQuote` method.
|
|
22
|
+
|
|
17
23
|
## [26.20.0] - 31-03-2025
|
|
18
24
|
|
|
19
25
|
### Added
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as _apollo_client_core from '@apollo/client/core';
|
|
|
3
3
|
import { MutationOptions, FetchResult, ApolloClient } from '@apollo/client/core';
|
|
4
4
|
import { RenderableContextService, RenderableContext, ThreeDPreviewService, ModelContainer } from '@spiffcommerce/preview';
|
|
5
5
|
import * as lodash from 'lodash';
|
|
6
|
-
import { ThemeInstallConfigurationGraphQl, ConversionConfiguration } from '@spiffcommerce/theme-bridge';
|
|
6
|
+
import { CompleteQuoteMessage, ThemeInstallConfigurationGraphQl, ConversionConfiguration } from '@spiffcommerce/theme-bridge';
|
|
7
7
|
export { ConversionConfiguration, ConversionData, ConversionDataType, ConversionLocation } from '@spiffcommerce/theme-bridge';
|
|
8
8
|
import { FuseResult } from 'fuse.js';
|
|
9
9
|
import { Font } from 'opentype.js';
|
|
@@ -1931,6 +1931,7 @@ interface Bundle$1 {
|
|
|
1931
1931
|
attachAddress(streetAddress?: string, apartment?: string, city?: string, country?: string, state?: string, postCode?: string): Promise<void>;
|
|
1932
1932
|
attachOrganization(name: string): Promise<void>;
|
|
1933
1933
|
generateQuoteId(): Promise<string>;
|
|
1934
|
+
getQuoteCompleteMessage(): CompleteQuoteMessage;
|
|
1934
1935
|
}
|
|
1935
1936
|
type BundleEventType = "conditional-global-properties-changed" | "workflow-experience-hover-enter" | "workflow-experience-hover-exit";
|
|
1936
1937
|
type BundleEventData = ConditionalGlobalPropertiesChangedEventData | WorkflowExperienceHoverEventData;
|