@spiffcommerce/core 26.18.0 → 26.19.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 +7 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +49 -41
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +189 -165
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,13 @@ 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
|
+
|
|
18
|
+
## [26.19.0] - 26-03-2025
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
|
|
22
|
+
- The `generateQuoteId` method on bundles.
|
|
23
|
+
|
|
17
24
|
## [26.18.0] - 24-03-2025
|
|
18
25
|
|
|
19
26
|
### Added
|
package/dist/index.d.ts
CHANGED
|
@@ -1708,6 +1708,7 @@ interface Bundle$1 {
|
|
|
1708
1708
|
* @returns The name of the bundle.
|
|
1709
1709
|
*/
|
|
1710
1710
|
getName(): string;
|
|
1711
|
+
getQuoteId(): string | undefined;
|
|
1711
1712
|
/**
|
|
1712
1713
|
* Set the name of the bundle.
|
|
1713
1714
|
* @param name The new name for the bundle.
|
|
@@ -1912,6 +1913,7 @@ interface Bundle$1 {
|
|
|
1912
1913
|
reject(note?: string): Promise<void>;
|
|
1913
1914
|
attachAddress(streetAddress?: string, apartment?: string, city?: string, country?: string, state?: string, postCode?: string): Promise<void>;
|
|
1914
1915
|
attachOrganization(name: string): Promise<void>;
|
|
1916
|
+
generateQuoteId(): Promise<string>;
|
|
1915
1917
|
}
|
|
1916
1918
|
type BundleEventType = "conditional-global-properties-changed" | "workflow-experience-hover-enter" | "workflow-experience-hover-exit";
|
|
1917
1919
|
type BundleEventData = ConditionalGlobalPropertiesChangedEventData | WorkflowExperienceHoverEventData;
|
|
@@ -3949,6 +3951,7 @@ interface Bundle {
|
|
|
3949
3951
|
workflowViewerLink: string;
|
|
3950
3952
|
workflowViewerAmendLink: string;
|
|
3951
3953
|
workflowViewerReadOnlyLink: string;
|
|
3954
|
+
quoteId?: string;
|
|
3952
3955
|
}
|
|
3953
3956
|
interface BundleStakeholder {
|
|
3954
3957
|
id: string;
|