@spiffcommerce/core 26.13.0 → 26.14.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/dist/index.d.ts +4 -1
- package/dist/index.js +35 -35
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1506,6 +1506,7 @@ interface BundleOptions {
|
|
|
1506
1506
|
* When reloading a bundle we may have an existing state to pull with it.
|
|
1507
1507
|
*/
|
|
1508
1508
|
existingGlobalPropertyState?: GlobalPropertyState;
|
|
1509
|
+
readonly?: boolean;
|
|
1509
1510
|
}
|
|
1510
1511
|
|
|
1511
1512
|
interface ProductMetafieldFilter {
|
|
@@ -2129,6 +2130,7 @@ interface GetBundleOptions {
|
|
|
2129
2130
|
* of additional data.
|
|
2130
2131
|
*/
|
|
2131
2132
|
graphql?: GetBundleGraphqlOptions;
|
|
2133
|
+
readonly?: boolean;
|
|
2132
2134
|
}
|
|
2133
2135
|
interface GetWorkflowGraphqlAssetsOptions {
|
|
2134
2136
|
metadata?: boolean;
|
|
@@ -2280,7 +2282,8 @@ declare class SpiffCommerceClient {
|
|
|
2280
2282
|
* Retrieves an existing bundle from the API, by id.
|
|
2281
2283
|
* @param bundleId The id of the bundle to retrieve.
|
|
2282
2284
|
* @param previewService Optional: A reference to an existing preview service to use. This can be assigned manually later.
|
|
2283
|
-
* @param graphqlOptions Optional: Options to configure loading the
|
|
2285
|
+
* @param graphqlOptions Optional: Options to configure loading the bundle.
|
|
2286
|
+
* @param options Optional: Options to configure loading the bundle.
|
|
2284
2287
|
* @returns A bundle to be used for grouping and operating on large amounts of workflow experiences.
|
|
2285
2288
|
*/
|
|
2286
2289
|
getExistingBundle(bundleId: string, previewService?: ThreeDPreviewService,
|