@spiffcommerce/core 20.0.1-2 → 20.1.0-alpha.1
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/index.d.ts +2 -0
- package/dist/index.js +273 -260
- package/dist/index.umd.cjs +29 -29
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2141,6 +2141,7 @@ declare class IntegrationProduct {
|
|
|
2141
2141
|
getResource(): IntegrationProductResource;
|
|
2142
2142
|
getBasePrice(): number;
|
|
2143
2143
|
getDefaultWorkflow(): ProductWorkflow;
|
|
2144
|
+
getAllWorkflows(): ProductWorkflow[];
|
|
2144
2145
|
}
|
|
2145
2146
|
|
|
2146
2147
|
declare const getWorkflows: (ids: string[], options?: GetWorkflowGraphqlOptions) => Promise<Workflow[]>;
|
|
@@ -2378,6 +2379,7 @@ declare class SpiffCommerceClient {
|
|
|
2378
2379
|
* @returns The transaction associated with this client.
|
|
2379
2380
|
*/
|
|
2380
2381
|
getTransaction(): Transaction;
|
|
2382
|
+
configureUrls(hubUrl: string, serverUrl: string, servicesApiUrl: string): void;
|
|
2381
2383
|
/**
|
|
2382
2384
|
* A function used to synchronize transaction state with the server.
|
|
2383
2385
|
* @param options New state details. To be spread into the query.
|