@spiffcommerce/core 12.9.3 → 12.9.5
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/dist/main.js +23 -23
- package/dist/module.js +33 -33
- package/dist/types.d.ts +3 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -2172,14 +2172,17 @@ export class SpiffCommerceClient {
|
|
|
2172
2172
|
*/
|
|
2173
2173
|
initFromTransaction(transactionId: string, readOnly?: boolean): Promise<void>;
|
|
2174
2174
|
/**
|
|
2175
|
+
* @deprecated The value this returns will be changed whenever `getWorkflowExperience()` is called. Use `workflowExperience.getWorkflowManager().getPreviewService()` instead.
|
|
2175
2176
|
* @returns The preview service that was provided during construction.
|
|
2176
2177
|
*/
|
|
2177
2178
|
getPreviewService(): any;
|
|
2178
2179
|
/**
|
|
2180
|
+
* @deprecated The value this returns will be changed whenever `getWorkflowExperience()` is called. Use `WorkflowManager.getProduct()` instead.
|
|
2179
2181
|
* @returns The product associated with this client.
|
|
2180
2182
|
*/
|
|
2181
2183
|
getProduct(): import("types").Product;
|
|
2182
2184
|
/**
|
|
2185
|
+
* @deprecated The value this returns will be changed whenever `getWorkflowExperience()` is called. Use `WorkflowManager.getTransaction()` instead.
|
|
2183
2186
|
* @returns The transaction associated with this client.
|
|
2184
2187
|
*/
|
|
2185
2188
|
getTransaction(): Transaction;
|