@spiffcommerce/preview 2.1.34 → 2.1.35

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +5 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -167,6 +167,11 @@ export type ThreeDPreviewService = {
167
167
  * Given a list of material names, highlights the associated meshes in the scene.
168
168
  */
169
169
  setHighlights(materials: readonly MaterialHandle[], color?: readonly [number, number, number]): void;
170
+ /**
171
+ * Sets the rendering pipeline configuration for the scene.
172
+ * @param renderingPipelineConfig The configuration to apply. Existing values will not be overwritten if not provided.
173
+ */
174
+ setRenderingPipelineConfig(renderingPipelineConfig: RenderingPipelineConfiguration): void;
170
175
  };
171
176
  /**
172
177
  * Represents a service capable of managing and returning contexts that
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/preview",
3
- "version": "2.1.34",
3
+ "version": "2.1.35",
4
4
  "description": "An internal implementation of the ThreeDPreviewService interface used by Spiff Commerce",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/main.js",