@spiffcommerce/core 26.24.0-beta.81d49647-fa95-50b2-8ba8-0f5dc6ba986f → 26.25.0-beta.16761e27-d178-5c1f-9025-cddbfe28b425
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 +33 -2
- package/dist/index.js +100 -100
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +304 -312
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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.25.0] - 21-05-2025
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- The `MetafieldManager` is now exposed for use. Certain functions such as CollectionProduct will now expose utility functions that allow pulling the metafields for the entity being called on.
|
|
22
|
+
|
|
17
23
|
## [26.24.0] - 12-05-2025
|
|
18
24
|
|
|
19
25
|
### Changed
|
package/dist/index.d.ts
CHANGED
|
@@ -1654,7 +1654,7 @@ declare class CollectionProduct {
|
|
|
1654
1654
|
* @param keys The set of metafield keys to request.
|
|
1655
1655
|
* @returns A map of metafield key to value. Any unavailable keys will not be present in the map. use map.has() to check if a key is present.
|
|
1656
1656
|
*/
|
|
1657
|
-
|
|
1657
|
+
requestMetafields(keys: string[]): Promise<Map<string, string>>;
|
|
1658
1658
|
}
|
|
1659
1659
|
/**
|
|
1660
1660
|
* Represents a the relationship between a workflow and a product.
|
|
@@ -5599,4 +5599,35 @@ declare const getOrderedTransactions: (customerId: string, limit: number, offset
|
|
|
5599
5599
|
declare const getTemplateTransactions: (customerId: string, limit: number, offset: number) => Promise<Transaction[]>;
|
|
5600
5600
|
declare const getTemplateBundles: (customerId: string, limit: number, offset: number) => Promise<Bundle[]>;
|
|
5601
5601
|
|
|
5602
|
-
|
|
5602
|
+
declare class MetafieldManager {
|
|
5603
|
+
readonly internalMap: Map<string, {
|
|
5604
|
+
key: string;
|
|
5605
|
+
value: string;
|
|
5606
|
+
}[]>;
|
|
5607
|
+
/**
|
|
5608
|
+
* Given a specific entity, request the given keys for that entity.
|
|
5609
|
+
* This will first check if the keys are already present in the internal map, and if not, it will fetch them from the server.
|
|
5610
|
+
* @param entityId The entity to check.
|
|
5611
|
+
* @param keys The keys to look for.
|
|
5612
|
+
* @returns Returns map of keys and values for the given entity. Missing keys will not be present. Use map.has() to check if a key was present.
|
|
5613
|
+
*/
|
|
5614
|
+
requestKeysForEntity(entityId: string, keys: string[]): Promise<Map<string, string>>;
|
|
5615
|
+
ensureIdsArePresent(entityIds: string[]): Promise<void>;
|
|
5616
|
+
/**
|
|
5617
|
+
* Returns a metafield for this product if available. Fetching from the server if not available locally.
|
|
5618
|
+
* @param entityId The entity to request a field for.
|
|
5619
|
+
* @param key The field name to request
|
|
5620
|
+
* @returns A promise resolving to the field if available or undefined if not.
|
|
5621
|
+
*/
|
|
5622
|
+
requestKeyForEntity(entityId: string, key: string): Promise<string | undefined>;
|
|
5623
|
+
/**
|
|
5624
|
+
* Returns a metafield for this product if available. Checks locally only, use ensureIdsArePresent to fetch first from the server.
|
|
5625
|
+
* @param entityId The entity to request a field for.
|
|
5626
|
+
* @param key The field name to request
|
|
5627
|
+
* @returns A promise resolving to the field if available or undefined if not.
|
|
5628
|
+
*/
|
|
5629
|
+
requestKeyForEntityIfAvailable(entityId: string, key: string): string | undefined;
|
|
5630
|
+
}
|
|
5631
|
+
declare const metafieldManager: MetafieldManager;
|
|
5632
|
+
|
|
5633
|
+
export { AddonHandle, Animatable, AnyStepData, ArrayInput, AspectType, Asset, AssetConfiguration, AssetNotFoundError, AssetObjectVersion, AssetType, BringForwardCommand, BringToBackCommand, BringToFrontCommand, Bundle$1 as Bundle, BundleDesignCreationCartAddMode, BundleDesignCreationMessage, BundleEvent, BundleEventData, BundleEventType, BundleStakeholder, CanvasCommand, CollectionProduct, ColorDefinition, ColorOption, ColorOptionGlobalPropertyHandle, ColorProfileProps, CommandContext, CommandState, Condition, ConditionalGlobalPropertiesChangedEventData, CreateElementCommand, CreateLayoutCommand, Customer, CustomerDetailsInput, DeleteElementCommand, DesignCreationMessage, DesignCreationProgressUpdate, DesignInputStep, DigitalContentStepData, DigitalContentStepHandle, EditedSteps, FileUploadGlobalPropertyHandle, FlowExecutionNodeResult, FlowExecutionResult, FlowService, FontAlignmentCommand, FontColorCommand, FontSizeCommand, FontSourceCommand, FrameElement, FrameService, FrameStep, FrameStepData, FrameStepHandle, FrameThresholdSettings, GetNewWorkflowOptions, GetWorkflowOptions, GlobalPropertyConfiguration, GlobalPropertyHandle, GroupCommand, ILayout, IllustrationElement, IllustrationStepData, IllustrationStepHandle, ImageElement, InformationMessageType, InformationResult, InformationStepData, InformationStepHandle, Integration, IntegrationOptionResource, IntegrationProduct, IntegrationType, LayoutData, LayoutElement, LayoutElementFactory, LayoutElementType, LayoutNotFoundError, LayoutRenderingPurpose, LayoutState, LayoutsState, MandatorySteps, MaterialEffectMode, MaterialStepData, MaterialStepHandle, MisconfigurationError, MockWorkflowManager, ModelStepData, ModelStepHandle, ModuleStepData, ModuleStepHandle, MoveCommand, NodeType, ObjectInput, ObjectInputType, OptionGlobalPropertyHandle, OptionNotFoundError, OptionResource, Order, OrderItem, PapyrusComponent, ParseError, PictureStepData, PictureStepHandle, Placeable, PmsSearchResult, Point, Product, ProductCameraRig, ProductCollection, ProductWorkflow$1 as ProductWorkflow, promiseCache as PromiseCache, PromiseQueue, QuestionStepData, QuestionStepHandle, QueueablePromise, Region, RegionElement, RenderableScene, ResizeCommand, ResourceNotFoundError, RotateCommand, SavedDesign, ScaleAxis, SelectionStorage, SendBackwardsCommand, ShapeStepData, ShapeStepHandle, ShareAction, ShareActionType, SilentIllustrationStepData, SpiffCommerceClient, Stakeholder, StakeholderType, StateMutationFunc, Step, StepAspect, StepAspectType, StepElements, StepGroup, StepHandle, StepStorage, StepType, TextAlgorithm, TextChangeCommand, TextChangeResult, TextGlobalPropertyHandle, TextInput, TextStepData, TextStepHandle, TextStepStorage, TextboxElement, Theme, ToastCallback, Transaction, Transform, TransformCollection$1 as TransformCollection, UnhandledBehaviorError, UnitOfMeasurement, UpdateImageSourceCommand, Variant, VariantResource, Vector3, Workflow, WorkflowExperience, WorkflowExperienceEventType, WorkflowExperienceHoverEventData, WorkflowExperienceImpl, WorkflowManager, WorkflowMetadata, WorkflowPanel, WorkflowScene, WorkflowSelections, WorkflowStorage, assetService, browserColorToHex, cmPerPixel, createDesign, currentDirection, dataUrlFromExternalUrl, designService, determineCorrectFontSizeAndLines, digitalContentStepService, domParser, duplicateBundle, duplicateTransaction, fetchAsString, findAngle, findElement, findPmsColors, frameDataCache, frameStepService, generate, generateCommands, generateSVGWithUnknownColors, generateStateFromDesignInputSteps, getAttributesFromArrayBuffer, getAxisAlignedBoundingBox, getBoundedOffsets, getBundleThemeConfiguration, getCustomer, getCustomerBundles, getElementVertices, getFrameData, getIntegration, getNEPoint, getNWPoint, getOrderedTransactions, getOverrideThemeConfiguration, getPointOfRotation, getSEPoint, getSvgElement, getTemplateBundles, getTemplateTransactions, getTransaction, getTransactionThemeConfiguration, getTransactionsForBundle, getTrueCoordinates, getUnorderedTransactions, getWorkflow, getWorkflows, graphQlManager, illustrationStepService, isCloseToValue, loadFont, matchHexToPms, materialStepService, metafieldManager, mmPerPixel, modelStepService, modifySVGColors, moduleStepService, nameBundle, nameTransaction, optionService, outlineFontsInSvg, patternImageDataCache, persistenceService, pictureStepService, pmsToRgb, questionStepService, registerFetchImplementation, registerWindowImplementation, rehydrateSerializedLayout, rgbToPms, rotateAroundPoint, sanitizeSvgTree, setBearerAuthenticationToken, setCanvasModule, shapeStepService, shortenUrl, spiffCoreConfiguration, stepAspectValuesToDesignInputSteps, svgColorValueToDefinition, svgStringDimensions, svgToDataUrl, textStepService, toast, xmlSerializer };
|